# ncurses 6.5 - patch 20241214 - 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-20241214.patch.gz # patch by Thomas E. Dickey # created Sun Dec 15 02:04:34 UTC 2024 # ------------------------------------------------------------------------------ # NEWS | 9 # VERSION | 2 # aclocal.m4 | 93 # c++/cursesw.h | 5 # c++/etip.h.in | 12 # configure | 4024 +++++++++++++++++++------------------ # configure.in | 8 # dist.mk | 4 # include/curses.h.in | 6 # include/ncurses_defs | 12 # ncurses/base/lib_beep.c | 4 # ncurses/base/lib_color.c | 4 # ncurses/base/lib_driver.c | 10 # ncurses/base/lib_flash.c | 6 # ncurses/base/lib_newwin.c | 4 # ncurses/base/lib_restart.c | 4 # ncurses/base/lib_set_term.c | 4 # ncurses/build.priv.h | 6 # ncurses/curses.priv.h | 6 # ncurses/tinfo/MKcodes.awk | 8 # ncurses/tinfo/MKnames.awk | 8 # ncurses/tinfo/entries.c | 4 # ncurses/tinfo/lib_acs.c | 6 # ncurses/tinfo/lib_cur_term.c | 4 # ncurses/tinfo/lib_data.c | 12 # ncurses/tinfo/lib_napms.c | 4 # ncurses/tinfo/lib_setup.c | 28 # ncurses/tinfo/lib_termcap.c | 6 # ncurses/tinfo/lib_ttyflags.c | 4 # ncurses/tinfo/tinfo_driver.c | 50 # ncurses/tty/lib_mvcur.c | 4 # ncurses/tty/lib_tstp.c | 2 # 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 # 39 files changed, 2320 insertions(+), 2065 deletions(-) # ------------------------------------------------------------------------------ Index: NEWS Prereq: 1.4209 --- ncurses-6.5-20241207+/NEWS 2024-12-07 23:51:39.000000000 +0000 +++ ncurses-6.5-20241214/NEWS 2024-12-14 20:03:39.000000000 +0000 @@ -26,7 +26,7 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------- --- $Id: NEWS,v 1.4209 2024/12/07 23:51:39 tom Exp $ +-- $Id: NEWS,v 1.4212 2024/12/14 20:03:39 tom Exp $ ------------------------------------------------------------------------------- This is a log of changes that ncurses has gone through since Zeyd started @@ -46,6 +46,13 @@ Changes through 1.9.9e did not credit all contributions; it is not possible to add this information. +20241214 + + avoid redefining bool in curses.h if the platform already supports + that type (cf: 20241123). + + move include from etip.h.in to cursesw.hh, to work around + breakage in Apple's port of ncurses. + + strict compiler-warning fixes for upcoming gcc15 + 20241207 + strict compiler-warning fixes for upcoming gcc15 Index: VERSION --- ncurses-6.5-20241207+/VERSION 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/VERSION 2024-12-14 11:34:56.000000000 +0000 @@ -1 +1 @@ -5:0:10 6.5 20241207 +5:0:10 6.5 20241214 Index: aclocal.m4 Prereq: 1.1091 --- ncurses-6.5-20241207+/aclocal.m4 2024-11-30 19:41:19.000000000 +0000 +++ ncurses-6.5-20241214/aclocal.m4 2024-12-14 21:33:29.000000000 +0000 @@ -29,7 +29,7 @@ dnl dnl Author: Thomas E. Dickey 1995-on dnl -dnl $Id: aclocal.m4,v 1.1091 2024/11/30 19:41:19 tom Exp $ +dnl $Id: aclocal.m4,v 1.1096 2024/12/14 21:33:29 tom Exp $ dnl Macros used in NCURSES auto-configuration script. dnl dnl These macros are maintained separately from NCURSES. The copyright on @@ -645,7 +645,7 @@ fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_BOOL_SIZE version: 20 updated: 2023/02/18 17:41:25 +dnl CF_BOOL_SIZE version: 21 updated: 2024/12/14 16:09:34 dnl ------------ dnl Test for the size of 'bool' in the configured C++ compiler (e.g., a type). dnl Don't bother looking for bool.h, since it has been deprecated. @@ -702,7 +702,7 @@ int main(void) { FILE *fp = fopen("cf_test.out", "w"); - if (fp != 0) { + if (fp != NULL) { bool x = true; if ((bool)(-x) >= 0) fputs("unsigned ", fp); @@ -741,7 +741,7 @@ fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_BUILD_CC version: 13 updated: 2024/06/22 13:42:22 +dnl CF_BUILD_CC version: 14 updated: 2024/12/14 11:58:01 dnl ----------- dnl If we're cross-compiling, allow the user to override the tools and their dnl options. The configure script is oriented toward identifying the host @@ -819,7 +819,7 @@ AC_TRY_RUN([#include int main(int argc, char *argv[]) { - ${cf_cv_main_return:-return}(argc < 0 || argv == 0 || argv[0] == 0); + ${cf_cv_main_return:-return}(argc < 0 || argv == (void*)0 || argv[0] == (void*)0); } ], cf_ok_build_cc=yes, @@ -1196,7 +1196,7 @@ ]) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_CHECK_GETENV version: 4 updated: 2023/12/03 10:18:09 +dnl CF_CHECK_GETENV version: 5 updated: 2024/12/14 16:09:34 dnl --------------- dnl Check if repeated getenv calls return the same pointer, e.g., it does not dnl discard the previous pointer when returning a new one. @@ -1248,7 +1248,7 @@ for (j = 0; environ[j]; ++j) { mynames[j] = str_alloc(environ[j]); equals = strchr(mynames[j], '='); - if (equals != 0) { + if (equals != NULL) { *equals++ = '\\0'; myvalues[j] = str_alloc(equals); } else { @@ -1447,6 +1447,19 @@ fi ])dnl dnl --------------------------------------------------------------------------- +dnl CF_CHECK_TYPE2 version: 2 updated: 2024/12/14 16:33:06 +dnl -------------- +dnl CF_CHECK_TYPE version: 5 updated: 2024/12/14 16:09:34 +dnl ------------- +dnl Check if the given type can be declared via the given header. +dnl $1 = the type to check +dnl $2 = the header (i.e., not one of the default includes) +AC_DEFUN([CF_CHECK_TYPE2],[ + AC_CHECK_TYPES($1,,,[ +$ac_includes_default +ifelse($2,,,[#include <$2>])]) +])dnl +dnl --------------------------------------------------------------------------- dnl CF_CHECK_WCHAR_H version: 5 updated: 2023/12/03 09:21:34 dnl ---------------- dnl Check if wchar.h can be used, i.e., without defining _XOPEN_SOURCE_EXTENDED @@ -1477,7 +1490,7 @@ fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_CHECK_WCWIDTH_GRAPHICS version: 4 updated: 2023/12/03 10:17:07 +dnl CF_CHECK_WCWIDTH_GRAPHICS version: 5 updated: 2024/12/14 16:09:34 dnl ------------------------- dnl Most "modern" terminal emulators are based to some degree on VT100, and dnl should support line-drawing. Even with Unicode. There is a problem. @@ -1596,8 +1609,8 @@ setlocale(LC_ALL, "en_US.UTF-8") || setlocale(LC_ALL, "en_US.utf8") || setlocale(LC_ALL, "en_US.utf-8")) { - if ((fp = fopen("conftest.in", "r")) != 0) { - while (fgets(buffer, MY_LEN, fp) != 0) { + if ((fp = fopen("conftest.in", "r")) != NULL) { + while (fgets(buffer, MY_LEN, fp) != NULL) { if (*buffer == '-') { fprintf(stderr, "\\t%s", buffer); } else if (sscanf(buffer, "%x %s", &value, notes) == 2) { @@ -1689,7 +1702,7 @@ fi ]) dnl --------------------------------------------------------------------------- -dnl CF_CONST_X_STRING version: 8 updated: 2023/12/01 17:22:50 +dnl CF_CONST_X_STRING version: 9 updated: 2024/12/04 03:49:57 dnl ----------------- dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most dnl character-strings. @@ -1716,7 +1729,7 @@ AC_TRY_COMPILE( [ -#include +$ac_includes_default #include ], [String foo = malloc(1); free((void*)foo)],[ @@ -1727,7 +1740,7 @@ #undef _CONST_X_STRING #define _CONST_X_STRING /* X11R7.8 (perhaps) */ #undef XTSTRINGDEFINES /* X11R5 and later */ -#include +$ac_includes_default #include ],[String foo = malloc(1); *foo = 0],[ cf_cv_const_x_string=no @@ -2536,7 +2549,7 @@ AC_SUBST(EXTRA_CFLAGS) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_FOPEN_BIN_R version: 3 updated: 2023/01/05 18:05:46 +dnl CF_FOPEN_BIN_R version: 4 updated: 2024/12/14 16:09:34 dnl -------------- dnl Check if fopen works when the "b" (binary) flag is added to the mode dnl parameter. POSIX ignores the "b", which c89 specified. Some very old @@ -2550,14 +2563,14 @@ { FILE *fp = fopen("conftest.tmp", "wb"); int rc = 0; - if (fp != 0) { + if (fp != NULL) { int p, q; for (p = 0; p < 256; ++p) { fputc(p, fp); } fclose(fp); fp = fopen("conftest.tmp", "rb"); - if (fp != 0) { + if (fp != NULL) { for (p = 0; p < 256; ++p) { q = fgetc(fp); if (q != p) { @@ -2590,7 +2603,7 @@ unset $1 ])dnl dnl --------------------------------------------------------------------------- -dnl CF_FUNC_DLSYM version: 4 updated: 2015/09/12 14:46:44 +dnl CF_FUNC_DLSYM version: 5 updated: 2024/12/14 16:09:34 dnl ------------- dnl Test for dlsym() and related functions, as well as libdl. dnl @@ -2610,9 +2623,12 @@ test "$cf_have_libdl" = yes && { CF_ADD_LIB(dl) } AC_MSG_CHECKING(whether able to link to dl*() functions) - AC_TRY_LINK([#include ],[ + AC_TRY_LINK([ + #include + #include + ],[ void *obj; - if ((obj = dlopen("filename", 0)) != 0) { + if ((obj = dlopen("filename", 0)) != NULL) { if (dlsym(obj, "symbolname") == 0) { dlclose(obj); } @@ -2669,7 +2685,7 @@ fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_FUNC_GETTTYNAM version: 2 updated: 2023/01/05 18:06:28 +dnl CF_FUNC_GETTTYNAM version: 3 updated: 2024/12/14 16:09:34 dnl ----------------- dnl Check if the 4.3BSD function getttyname exists, as well as if dnl defines the _PATH_TTYS symbol. If the corresponding file exists, but the @@ -2706,7 +2722,7 @@ int main(void) { FILE *fp = fopen(_PATH_TTYS, "r"); - ${cf_cv_main_return:-return} (fp == 0); + ${cf_cv_main_return:-return} (fp == NULL); }], [cf_cv_have_PATH_TTYS=yes], [cf_cv_have_PATH_TTYS=no], @@ -3099,7 +3115,7 @@ CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_GCC_WARNINGS version: 41 updated: 2021/01/01 16:53:59 +dnl CF_GCC_WARNINGS version: 42 updated: 2024/12/14 09:09:41 dnl --------------- dnl Check if the compiler supports useful warning options. There's a few that dnl we don't use, simply because they're too noisy: @@ -3125,7 +3141,7 @@ if test "x$have_x" = xyes; then CF_CONST_X_STRING fi cat > "conftest.$ac_ext" < conftest.$ac_ext <= 4 - DB *result = 0; + DB *result = NULL; db_create(&result, NULL, 0); result->open(result, NULL, @@ -3908,7 +3924,7 @@ DB_CREATE, 0644); #elif DB_VERSION_MAJOR >= 3 - DB *result = 0; + DB *result = NULL; db_create(&result, NULL, 0); result->open(result, path, @@ -3917,7 +3933,7 @@ DB_CREATE, 0644); #elif DB_VERSION_MAJOR >= 2 - DB *result = 0; + DB *result = NULL; db_open(path, DB_HASH, DB_CREATE, @@ -3933,7 +3949,7 @@ DB_HASH, 0); #endif - ${cf_cv_main_return:-return}(result != 0) + ${cf_cv_main_return:-return}(result != NULL) ],[ if test -n "$cf_db_libs" ; then cf_cv_hashed_db_libs=$cf_db_libs @@ -5530,7 +5546,7 @@ ])dnl dnl --------------------------------------------------------------------------- -dnl CF_LINK_FUNCS version: 13 updated: 2023/12/03 09:24:04 +dnl CF_LINK_FUNCS version: 14 updated: 2024/12/14 16:09:34 dnl ------------- dnl Most Unix systems have both link and symlink, a few don't have symlink. dnl A few non-Unix systems implement symlink, but not link. @@ -5565,7 +5581,7 @@ char dst[] = "conftest.chk"; struct stat src_sb, dst_sb; FILE *fp = fopen(src, "w"); - if (fp == 0) { fail = 3; } else { + if (fp == NULL) { fail = 3; } else { fclose(fp); stat(src, &src_sb); if ($cf_func(src, dst) < 0) { fail = 1; @@ -7208,7 +7224,7 @@ test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f" ])dnl dnl --------------------------------------------------------------------------- -dnl CF_REGEX version: 18 updated: 2021/01/01 16:53:59 +dnl CF_REGEX version: 19 updated: 2024/12/14 16:09:34 dnl -------- dnl Attempt to determine if we've got one of the flavors of regular-expression dnl code that we can support. @@ -7279,8 +7295,9 @@ for cf_regex_hdr in regex.h do AC_TRY_LINK([#include +#include #include <$cf_regex_hdr>],[ - regex_t *p = 0; + regex_t *p = NULL; int x = regcomp(p, "", 0); int y = regexec(p, "", 0, 0, 0); (void)x; @@ -7506,7 +7523,7 @@ done ])dnl dnl --------------------------------------------------------------------------- -dnl CF_SHARED_OPTS version: 111 updated: 2024/03/29 20:08:49 +dnl CF_SHARED_OPTS version: 112 updated: 2024/12/14 16:09:34 dnl -------------- dnl -------------- dnl Attempt to determine the appropriate CC/LD options for creating a shared @@ -8022,7 +8039,7 @@ int main(int argc, char *argv[[]]) { printf("hello\\n"); - return (argv[[argc-1]] == 0) ; + return (argv[[argc-1]] == NULL) ; } EOF cf_save_CFLAGS="$CFLAGS" @@ -8654,7 +8671,7 @@ fi ]) dnl --------------------------------------------------------------------------- -dnl CF_TYPEOF_CHTYPE version: 11 updated: 2023/01/05 17:57:59 +dnl CF_TYPEOF_CHTYPE version: 12 updated: 2024/12/14 16:09:34 dnl ---------------- dnl Determine the type we should use for chtype (and attr_t, which is treated dnl as the same thing). We want around 32 bits, so on most machines want a @@ -8670,7 +8687,7 @@ int main(void) { FILE *fp = fopen("cf_test.out", "w"); - if (fp != 0) { + if (fp != NULL) { char *result = "long"; if (sizeof(unsigned long) > sizeof(unsigned int)) { int n; Index: c++/cursesw.h Prereq: 1.59 --- ncurses-6.5-20241207+/c++/cursesw.h 2022-08-20 20:52:15.000000000 +0000 +++ ncurses-6.5-20241214/c++/cursesw.h 2024-12-14 19:08:22.000000000 +0000 @@ -1,7 +1,7 @@ // * This makes emacs happy -*-Mode: C++;-*- // vile:cppmode /**************************************************************************** - * Copyright 2019-2021,2022 Thomas E. Dickey * + * Copyright 2019-2022,2024 Thomas E. Dickey * * Copyright 1998-2014,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * @@ -32,7 +32,7 @@ #ifndef NCURSES_CURSESW_H_incl #define NCURSES_CURSESW_H_incl 1 -// $Id: cursesw.h,v 1.59 2022/08/20 20:52:15 tom Exp $ +// $Id: cursesw.h,v 1.60 2024/12/14 19:08:22 tom Exp $ extern "C" { # include @@ -50,6 +50,7 @@ #define NCURSES_CXX_EXPORT_VAR(type) NCURSES_CXX_IMPEXP type #include +#include /* SCO 3.2v4 curses.h includes term.h, which defines lines as a macro. Undefine it here, because NCursesWindow uses lines as a method. */ Index: c++/etip.h.in Prereq: 1.50 --- ncurses-6.5-20241207+/c++/etip.h.in 2022-08-20 20:50:00.000000000 +0000 +++ ncurses-6.5-20241214/c++/etip.h.in 2024-12-14 19:08:16.000000000 +0000 @@ -1,6 +1,6 @@ // * This makes emacs happy -*-Mode: C++;-*- /**************************************************************************** - * Copyright 2018-2021,2022 Thomas E. Dickey * + * Copyright 2018-2022,2024 Thomas E. Dickey * * Copyright 1998-2012,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * @@ -32,7 +32,7 @@ * Author: Juergen Pfeifer, 1997 * ****************************************************************************/ -// $Id: etip.h.in,v 1.50 2022/08/20 20:50:00 tom Exp $ +// $Id: etip.h.in,v 1.51 2024/12/14 19:08:16 tom Exp $ #ifndef NCURSES_ETIP_H_incl #define NCURSES_ETIP_H_incl 1 @@ -118,7 +118,9 @@ # include #endif -#include +// This used to include , but Apple's configuration as of 2024 +// provides only a broken version of ncurses's header, which interferes +// with the configure script. extern "C" { #if HAVE_VALUES_H @@ -128,6 +130,10 @@ #include #include #include + +#ifndef HAVE_CONFIG_H +int endwin(void); // needed for the configure check +#endif } // Language features Index: configure --- ncurses-6.5-20241207+/configure 2024-11-30 19:42:38.000000000 +0000 +++ ncurses-6.5-20241214/configure 2024-12-15 02:03:09.000000000 +0000 @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.787 . +# From configure.in Revision: 1.788 . # Guess values for system-dependent variables and create Makefiles. # Generated by Autoconf 2.52.20240618. # @@ -5697,7 +5697,7 @@ #include int main(int argc, char *argv[]) { - ${cf_cv_main_return:-return}(argc < 0 || argv == 0 || argv[0] == 0); + ${cf_cv_main_return:-return}(argc < 0 || argv == (void*)0 || argv[0] == (void*)0); } _ACEOF @@ -7507,7 +7507,7 @@ int main(int argc, char *argv[]) { printf("hello\\n"); - return (argv[argc-1] == 0) ; + return (argv[argc-1] == NULL) ; } EOF cf_save_CFLAGS="$CFLAGS" @@ -8101,13 +8101,16 @@ cat >"conftest.$ac_ext" <<_ACEOF #line 8102 "configure" #include "confdefs.h" -#include + + #include + #include + int main (void) { void *obj; - if ((obj = dlopen("filename", 0)) != 0) { + if ((obj = dlopen("filename", 0)) != NULL) { if (dlsym(obj, "symbolname") == 0) { dlclose(obj); } @@ -8117,16 +8120,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8120: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8123: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8123: \$? = $ac_status" >&5 + echo "$as_me:8126: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8126: \"$ac_try\"") >&5 + { (eval echo "$as_me:8129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8129: \$? = $ac_status" >&5 + echo "$as_me:8132: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cat >>confdefs.h <<\EOF @@ -8137,15 +8140,15 @@ echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 - { { echo "$as_me:8140: error: Cannot link test program for libdl" >&5 + { { echo "$as_me:8143: 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:8145: result: ok" >&5 + echo "$as_me:8148: result: ok" >&5 echo "${ECHO_T}ok" >&6 else - { { echo "$as_me:8148: error: Cannot find dlsym function" >&5 + { { echo "$as_me:8151: error: Cannot find dlsym function" >&5 echo "$as_me: error: Cannot find dlsym function" >&2;} { (exit 1); exit 1; }; } fi @@ -8153,12 +8156,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}:8156: testing assuming soname for gpm is $with_gpm ..." 1>&5 +echo "${as_me:-configure}:8159: testing assuming soname for gpm is $with_gpm ..." 1>&5 cf_cv_gpm_soname="$with_gpm" else -echo "$as_me:8161: checking for soname of gpm library" >&5 +echo "$as_me:8164: 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 @@ -8192,15 +8195,15 @@ done LIBS="$cf_add_libs" - if { (eval echo "$as_me:8195: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:8198: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8198: \$? = $ac_status" >&5 + echo "$as_me:8201: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then - if { (eval echo "$as_me:8200: \"$ac_link\"") >&5 + if { (eval echo "$as_me:8203: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8203: \$? = $ac_status" >&5 + echo "$as_me:8206: \$? = $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 @@ -8211,7 +8214,7 @@ fi fi -echo "$as_me:8214: result: $cf_cv_gpm_soname" >&5 +echo "$as_me:8217: result: $cf_cv_gpm_soname" >&5 echo "${ECHO_T}$cf_cv_gpm_soname" >&6 fi @@ -8279,7 +8282,7 @@ #define HAVE_LIBGPM 1 EOF -echo "$as_me:8282: checking for Gpm_Wgetch in -lgpm" >&5 +echo "$as_me:8285: 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 @@ -8287,7 +8290,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 8290 "configure" +#line 8293 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8306,16 +8309,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8309: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8312: \$? = $ac_status" >&5 + echo "$as_me:8315: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8315: \"$ac_try\"") >&5 + { (eval echo "$as_me:8318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8318: \$? = $ac_status" >&5 + echo "$as_me:8321: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gpm_Gpm_Wgetch=yes else @@ -8326,11 +8329,11 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8329: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5 +echo "$as_me:8332: 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:8333: checking if GPM is weakly bound to curses library" >&5 +echo "$as_me:8336: 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 @@ -8354,15 +8357,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:8357: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:8360: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8360: \$? = $ac_status" >&5 + echo "$as_me:8363: \$? = $ac_status" >&5 (exit "$ac_status"); } ; then - if { (eval echo "$as_me:8362: \"$ac_link\"") >&5 + if { (eval echo "$as_me:8365: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8365: \$? = $ac_status" >&5 + echo "$as_me:8368: \$? = $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 @@ -8374,11 +8377,11 @@ fi fi -echo "$as_me:8377: result: $cf_cv_check_gpm_wgetch" >&5 +echo "$as_me:8380: 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:8381: WARNING: GPM library is already linked with curses - read the FAQ" >&5 + { echo "$as_me:8384: 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 @@ -8386,7 +8389,7 @@ fi -echo "$as_me:8389: checking if you want to use PCRE2 for regular-expressions" >&5 +echo "$as_me:8392: 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. @@ -8395,7 +8398,7 @@ fi; test -z "$with_pcre2" && with_pcre2=no -echo "$as_me:8398: result: $with_pcre2" >&5 +echo "$as_me:8401: result: $with_pcre2" >&5 echo "${ECHO_T}$with_pcre2" >&6 if test "x$with_pcre2" != xno ; then @@ -8406,17 +8409,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}:8409: testing found package $cf_with_pcre2 ..." 1>&5 +echo "${as_me:-configure}:8412: 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}:8415: testing package $cf_with_pcre2 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:8418: 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}:8419: testing package $cf_with_pcre2 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:8422: testing package $cf_with_pcre2 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -8540,7 +8543,7 @@ fi done - cf_with_pcre2_ok=yes || { { echo "$as_me:8543: error: Cannot find PCRE2 library" >&5 + cf_with_pcre2_ok=yes || { { echo "$as_me:8546: error: Cannot find PCRE2 library" >&5 echo "$as_me: error: Cannot find PCRE2 library" >&2;} { (exit 1); exit 1; }; } @@ -8553,7 +8556,7 @@ (*pcre2-posix*|*pcreposix*) ;; (*) - echo "$as_me:8556: checking for regcomp in -lpcre2-posix" >&5 + echo "$as_me:8559: 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 @@ -8561,7 +8564,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre2-posix $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 8564 "configure" +#line 8567 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8580,16 +8583,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8583: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8586: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8586: \$? = $ac_status" >&5 + echo "$as_me:8589: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8589: \"$ac_try\"") >&5 + { (eval echo "$as_me:8592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8592: \$? = $ac_status" >&5 + echo "$as_me:8595: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_pcre2_posix_regcomp=yes else @@ -8600,7 +8603,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8603: result: $ac_cv_lib_pcre2_posix_regcomp" >&5 +echo "$as_me:8606: 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 @@ -8621,7 +8624,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:8624: checking for regcomp in -lpcreposix" >&5 + echo "$as_me:8627: 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 @@ -8629,7 +8632,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lpcreposix $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 8632 "configure" +#line 8635 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8648,16 +8651,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8651: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8654: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8654: \$? = $ac_status" >&5 + echo "$as_me:8657: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8657: \"$ac_try\"") >&5 + { (eval echo "$as_me:8660: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8660: \$? = $ac_status" >&5 + echo "$as_me:8663: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_pcreposix_regcomp=yes else @@ -8668,7 +8671,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8671: result: $ac_cv_lib_pcreposix_regcomp" >&5 +echo "$as_me:8674: 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 @@ -8689,7 +8692,7 @@ LIBS="$cf_add_libs" else - { { echo "$as_me:8692: error: Cannot find PCRE2 POSIX library" >&5 + { { echo "$as_me:8695: error: Cannot find PCRE2 POSIX library" >&5 echo "$as_me: error: Cannot find PCRE2 POSIX library" >&2;} { (exit 1); exit 1; }; } fi @@ -8704,23 +8707,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:8707: checking for $ac_header" >&5 +echo "$as_me:8710: 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 8713 "configure" +#line 8716 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8717: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:8720: \"$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:8723: \$? = $ac_status" >&5 + echo "$as_me:8726: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8739,7 +8742,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:8742: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:8745: 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:8758: 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 8761 "configure" +#line 8764 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -8789,16 +8792,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8792: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8795: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8795: \$? = $ac_status" >&5 + echo "$as_me:8798: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:8798: \"$ac_try\"") >&5 + { (eval echo "$as_me:8801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8801: \$? = $ac_status" >&5 + echo "$as_me:8804: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -8808,7 +8811,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:8811: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:8814: 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:8825: checking if you want to use sysmouse" >&5 +echo "$as_me:8828: 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. @@ -8834,7 +8837,7 @@ fi; if test "$cf_with_sysmouse" != no ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 8837 "configure" +#line 8840 "configure" #include "confdefs.h" #include @@ -8857,16 +8860,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:8860: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8863: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8863: \$? = $ac_status" >&5 + echo "$as_me:8866: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:8866: \"$ac_try\"") >&5 + { (eval echo "$as_me:8869: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8869: \$? = $ac_status" >&5 + echo "$as_me:8872: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_with_sysmouse=yes else @@ -8876,7 +8879,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:8879: result: $cf_with_sysmouse" >&5 +echo "$as_me:8882: result: $cf_with_sysmouse" >&5 echo "${ECHO_T}$cf_with_sysmouse" >&6 test "$cf_with_sysmouse" = yes && cat >>confdefs.h <<\EOF @@ -8886,7 +8889,7 @@ fi # pretend that ncurses==ncursesw==ncursest -echo "$as_me:8889: checking if you want to disable library suffixes" >&5 +echo "$as_me:8892: 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. @@ -8903,13 +8906,13 @@ disable_lib_suffixes=no fi; -echo "$as_me:8906: result: $disable_lib_suffixes" >&5 +echo "$as_me:8909: 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:8912: checking if rpath-hack should be disabled" >&5 +echo "$as_me:8915: 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. @@ -8927,22 +8930,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:8930: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:8933: result: $cf_disable_rpath_hack" >&5 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 if test "$enable_rpath_hack" = yes ; then -echo "$as_me:8935: checking for updated LDFLAGS" >&5 +echo "$as_me:8938: 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:8938: result: maybe" >&5 + echo "$as_me:8941: 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:8945: checking for $ac_word" >&5 +echo "$as_me:8948: 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 @@ -8957,7 +8960,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:8960: found $ac_dir/$ac_word" >&5 +echo "$as_me:8963: found $ac_dir/$ac_word" >&5 break done @@ -8965,10 +8968,10 @@ fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:8968: result: $cf_ldd_prog" >&5 + echo "$as_me:8971: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:8971: result: no" >&5 + echo "$as_me:8974: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8982,7 +8985,7 @@ cf_rpath_oops= cat >"conftest.$ac_ext" <<_ACEOF -#line 8985 "configure" +#line 8988 "configure" #include "confdefs.h" #include int @@ -8994,16 +8997,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:8997: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9000: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9000: \$? = $ac_status" >&5 + echo "$as_me:9003: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:9003: \"$ac_try\"") >&5 + { (eval echo "$as_me:9006: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9006: \$? = $ac_status" >&5 + echo "$as_me:9009: \$? = $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` @@ -9031,7 +9034,7 @@ then test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6 -echo "${as_me:-configure}:9034: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:9037: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -9043,11 +9046,11 @@ test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:9046: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9049: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:9050: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9053: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -9084,7 +9087,7 @@ then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:9087: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:9090: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -9097,11 +9100,11 @@ test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:9100: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9103: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:9104: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:9107: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -9138,7 +9141,7 @@ then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:9141: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:9144: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -9151,14 +9154,14 @@ test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:9154: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:9157: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:9158: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:9161: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:9161: result: no" >&5 + echo "$as_me:9164: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9172,7 +9175,7 @@ EXTRA_PKG_LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS" if test -n "$EXTRA_PKG_LDFLAGS" then - echo "$as_me:9175: checking if you want to disable extra LDFLAGS for package-scripts" >&5 + echo "$as_me:9178: 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. @@ -9189,7 +9192,7 @@ disable_pkg_ldflags=no fi; - echo "$as_me:9192: result: $disable_pkg_ldflags" >&5 + echo "$as_me:9195: result: $disable_pkg_ldflags" >&5 echo "${ECHO_T}$disable_pkg_ldflags" >&6 test "$disable_pkg_ldflags" = yes && EXTRA_PKG_LDFLAGS= fi @@ -9197,7 +9200,7 @@ ############################################################################### ### use option --with-extra-suffix to append suffix to headers and libraries -echo "$as_me:9200: checking for extra suffix to append to header/library paths" >&5 +echo "$as_me:9203: 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= @@ -9216,11 +9219,11 @@ esac fi; -echo "$as_me:9219: result: ${EXTRA_SUFFIX:-(none)}" >&5 +echo "$as_me:9222: 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:9223: checking if you wish to install ncurses overwriting curses" >&5 +echo "$as_me:9226: 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. @@ -9230,10 +9233,10 @@ else if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi fi; -echo "$as_me:9233: result: $with_overwrite" >&5 +echo "$as_me:9236: result: $with_overwrite" >&5 echo "${ECHO_T}$with_overwrite" >&6 -echo "$as_me:9236: checking if external terminfo-database is used" >&5 +echo "$as_me:9239: 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. @@ -9243,7 +9246,7 @@ else use_database=yes fi; -echo "$as_me:9246: result: $use_database" >&5 +echo "$as_me:9249: result: $use_database" >&5 echo "${ECHO_T}$use_database" >&6 case "$host_os" in @@ -9259,7 +9262,7 @@ if test "$use_database" != no ; then NCURSES_USE_DATABASE=1 - echo "$as_me:9262: checking which terminfo source-file will be installed" >&5 + echo "$as_me:9265: 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. @@ -9267,10 +9270,10 @@ withval="$with_database" TERMINFO_SRC=$withval fi; - echo "$as_me:9270: result: $TERMINFO_SRC" >&5 + echo "$as_me:9273: result: $TERMINFO_SRC" >&5 echo "${ECHO_T}$TERMINFO_SRC" >&6 - echo "$as_me:9273: checking whether to use hashed database instead of directory/tree" >&5 + echo "$as_me:9276: 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. @@ -9280,13 +9283,13 @@ else with_hashed_db=no fi; - echo "$as_me:9283: result: $with_hashed_db" >&5 + echo "$as_me:9286: result: $with_hashed_db" >&5 echo "${ECHO_T}$with_hashed_db" >&6 else with_hashed_db=no fi -echo "$as_me:9289: checking for list of fallback terminal descriptions" >&5 +echo "$as_me:9292: 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. @@ -9296,7 +9299,7 @@ else with_fallback= fi; -echo "$as_me:9299: result: ${with_fallback:-(none)}" >&5 +echo "$as_me:9302: result: ${with_fallback:-(none)}" >&5 echo "${ECHO_T}${with_fallback:-(none)}" >&6 case ".$with_fallback" in @@ -9304,7 +9307,7 @@ FALLBACK_LIST= ;; (.yes) - { echo "$as_me:9307: WARNING: expected a list of terminal descriptions" >&5 + { echo "$as_me:9310: WARNING: expected a list of terminal descriptions" >&5 echo "$as_me: WARNING: expected a list of terminal descriptions" >&2;} ;; (*) @@ -9320,7 +9323,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:9323: checking for $ac_word" >&5 +echo "$as_me:9326: 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 @@ -9335,7 +9338,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:9338: found $ac_dir/$ac_word" >&5 +echo "$as_me:9341: found $ac_dir/$ac_word" >&5 break done @@ -9343,10 +9346,10 @@ fi TIC=$ac_cv_prog_TIC if test -n "$TIC"; then - echo "$as_me:9346: result: $TIC" >&5 + echo "$as_me:9349: result: $TIC" >&5 echo "${ECHO_T}$TIC" >&6 else - echo "$as_me:9349: result: no" >&5 + echo "$as_me:9352: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9355,7 +9358,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:9358: checking for $ac_word" >&5 +echo "$as_me:9361: 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 @@ -9370,7 +9373,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:9373: found $ac_dir/$ac_word" >&5 +echo "$as_me:9376: found $ac_dir/$ac_word" >&5 break done @@ -9378,10 +9381,10 @@ fi ac_ct_TIC=$ac_cv_prog_ac_ct_TIC if test -n "$ac_ct_TIC"; then - echo "$as_me:9381: result: $ac_ct_TIC" >&5 + echo "$as_me:9384: result: $ac_ct_TIC" >&5 echo "${ECHO_T}$ac_ct_TIC" >&6 else - echo "$as_me:9384: result: no" >&5 + echo "$as_me:9387: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9393,7 +9396,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:9396: checking for $ac_word" >&5 +echo "$as_me:9399: 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 @@ -9408,7 +9411,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:9411: found $ac_dir/$ac_word" >&5 +echo "$as_me:9414: found $ac_dir/$ac_word" >&5 break done @@ -9416,10 +9419,10 @@ fi INFOCMP=$ac_cv_prog_INFOCMP if test -n "$INFOCMP"; then - echo "$as_me:9419: result: $INFOCMP" >&5 + echo "$as_me:9422: result: $INFOCMP" >&5 echo "${ECHO_T}$INFOCMP" >&6 else - echo "$as_me:9422: result: no" >&5 + echo "$as_me:9425: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9428,7 +9431,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:9431: checking for $ac_word" >&5 +echo "$as_me:9434: 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 @@ -9443,7 +9446,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:9446: found $ac_dir/$ac_word" >&5 +echo "$as_me:9449: found $ac_dir/$ac_word" >&5 break done @@ -9451,10 +9454,10 @@ fi ac_ct_INFOCMP=$ac_cv_prog_ac_ct_INFOCMP if test -n "$ac_ct_INFOCMP"; then - echo "$as_me:9454: result: $ac_ct_INFOCMP" >&5 + echo "$as_me:9457: result: $ac_ct_INFOCMP" >&5 echo "${ECHO_T}$ac_ct_INFOCMP" >&6 else - echo "$as_me:9457: result: no" >&5 + echo "$as_me:9460: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9469,10 +9472,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:9472: checking for tic program for fallbacks" >&5 + echo "$as_me:9475: checking for tic program for fallbacks" >&5 echo $ECHO_N "checking for tic program for fallbacks... $ECHO_C" >&6 TIC=$withval - echo "$as_me:9475: result: $TIC" >&5 + echo "$as_me:9478: result: $TIC" >&5 echo "${ECHO_T}$TIC" >&6 if test "x$prefix" != xNONE; then @@ -9498,7 +9501,7 @@ TIC=`echo "$TIC" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9501: error: expected a pathname, not \"$TIC\"" >&5 + { { echo "$as_me:9504: error: expected a pathname, not \"$TIC\"" >&5 echo "$as_me: error: expected a pathname, not \"$TIC\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9511,7 +9514,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:9514: checking for $ac_word" >&5 +echo "$as_me:9517: 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 @@ -9528,7 +9531,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:9531: found $ac_dir/$ac_word" >&5 + echo "$as_me:9534: found $ac_dir/$ac_word" >&5 break fi done @@ -9539,10 +9542,10 @@ TIC=$ac_cv_path_TIC if test -n "$TIC"; then - echo "$as_me:9542: result: $TIC" >&5 + echo "$as_me:9545: result: $TIC" >&5 echo "${ECHO_T}$TIC" >&6 else - echo "$as_me:9545: result: no" >&5 + echo "$as_me:9548: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9599,7 +9602,7 @@ if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:9602: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:9605: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <&5 + { echo "$as_me:9620: WARNING: no tic program found for fallbacks" >&5 echo "$as_me: WARNING: no tic program found for fallbacks" >&2;} fi @@ -9623,10 +9626,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:9626: checking for infocmp program for fallbacks" >&5 + echo "$as_me:9629: checking for infocmp program for fallbacks" >&5 echo $ECHO_N "checking for infocmp program for fallbacks... $ECHO_C" >&6 INFOCMP=$withval - echo "$as_me:9629: result: $INFOCMP" >&5 + echo "$as_me:9632: result: $INFOCMP" >&5 echo "${ECHO_T}$INFOCMP" >&6 if test "x$prefix" != xNONE; then @@ -9652,7 +9655,7 @@ INFOCMP=`echo "$INFOCMP" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9655: error: expected a pathname, not \"$INFOCMP\"" >&5 + { { echo "$as_me:9658: error: expected a pathname, not \"$INFOCMP\"" >&5 echo "$as_me: error: expected a pathname, not \"$INFOCMP\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9665,7 +9668,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:9668: checking for $ac_word" >&5 +echo "$as_me:9671: 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 @@ -9682,7 +9685,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:9685: found $ac_dir/$ac_word" >&5 + echo "$as_me:9688: found $ac_dir/$ac_word" >&5 break fi done @@ -9693,10 +9696,10 @@ INFOCMP=$ac_cv_path_INFOCMP if test -n "$INFOCMP"; then - echo "$as_me:9696: result: $INFOCMP" >&5 + echo "$as_me:9699: result: $INFOCMP" >&5 echo "${ECHO_T}$INFOCMP" >&6 else - echo "$as_me:9699: result: no" >&5 + echo "$as_me:9702: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9753,7 +9756,7 @@ if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:9756: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:9759: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <&5 + { echo "$as_me:9774: WARNING: no infocmp program found for fallbacks" >&5 echo "$as_me: WARNING: no infocmp program found for fallbacks" >&2;} fi @@ -9778,7 +9781,7 @@ test -z "$INFOCMP" && FALLBACK_LIST= if test -z "$FALLBACK_LIST" then - { echo "$as_me:9781: WARNING: ignoring fallback option because tic/infocmp are not available" >&5 + { echo "$as_me:9784: 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 @@ -9786,7 +9789,7 @@ USE_FALLBACKS= test -z "$FALLBACK_LIST" && USE_FALLBACKS="#" -echo "$as_me:9789: checking if you want modern xterm or antique" >&5 +echo "$as_me:9792: 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. @@ -9800,7 +9803,7 @@ (no) with_xterm_new=xterm-old;; (*) with_xterm_new=xterm-new;; esac -echo "$as_me:9803: result: $with_xterm_new" >&5 +echo "$as_me:9806: result: $with_xterm_new" >&5 echo "${ECHO_T}$with_xterm_new" >&6 WHICH_XTERM=$with_xterm_new @@ -9813,7 +9816,7 @@ ;; esac -echo "$as_me:9816: checking if xterm backspace sends BS or DEL" >&5 +echo "$as_me:9819: 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. @@ -9837,13 +9840,13 @@ with_xterm_kbs=$withval ;; esac -echo "$as_me:9840: result: $with_xterm_kbs" >&5 +echo "$as_me:9843: 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:9846: WARNING: expected --with-xterm-kbs=$want_xterm_kbs for $host_os, have $with_xterm_kbs" >&5 + { echo "$as_me:9849: 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 @@ -9853,7 +9856,7 @@ MAKE_TERMINFO="#" else -echo "$as_me:9856: checking for list of terminfo directories" >&5 +echo "$as_me:9859: 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. @@ -9891,7 +9894,7 @@ cf_src_path=`echo "$cf_src_path" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9894: error: expected a pathname, not \"$cf_src_path\"" >&5 + { { echo "$as_me:9897: 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; }; } ;; @@ -9914,7 +9917,7 @@ ;; esac -echo "$as_me:9917: result: $TERMINFO_DIRS" >&5 +echo "$as_me:9920: result: $TERMINFO_DIRS" >&5 echo "${ECHO_T}$TERMINFO_DIRS" >&6 test -n "$TERMINFO_DIRS" && cat >>confdefs.h <&5 + { echo "$as_me:9929: 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:9932: checking for default terminfo directory" >&5 +echo "$as_me:9935: 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. @@ -9963,7 +9966,7 @@ withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9966: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:9969: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9972,7 +9975,7 @@ fi eval TERMINFO="$withval" -echo "$as_me:9975: result: $TERMINFO" >&5 +echo "$as_me:9978: result: $TERMINFO" >&5 echo "${ECHO_T}$TERMINFO" >&6 cat >>confdefs.h <&5 +echo "$as_me:9989: 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. @@ -9995,7 +9998,7 @@ with_big_core=no else cat >"conftest.$ac_ext" <<_ACEOF -#line 9998 "configure" +#line 10001 "configure" #include "confdefs.h" #include @@ -10009,15 +10012,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:10012: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10015: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10015: \$? = $ac_status" >&5 + echo "$as_me:10018: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:10017: \"$ac_try\"") >&5 + { (eval echo "$as_me:10020: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10020: \$? = $ac_status" >&5 + echo "$as_me:10023: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then with_big_core=yes else @@ -10029,7 +10032,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi; -echo "$as_me:10032: result: $with_big_core" >&5 +echo "$as_me:10035: result: $with_big_core" >&5 echo "${ECHO_T}$with_big_core" >&6 test "x$with_big_core" = "xyes" && cat >>confdefs.h <<\EOF @@ -10039,7 +10042,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:10042: checking if big-strings option selected" >&5 +echo "$as_me:10045: 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. @@ -10063,14 +10066,14 @@ esac fi; -echo "$as_me:10066: result: $with_big_strings" >&5 +echo "$as_me:10069: 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:10073: checking if you want termcap-fallback support" >&5 +echo "$as_me:10076: 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. @@ -10080,14 +10083,14 @@ else with_termcap=no fi; -echo "$as_me:10083: result: $with_termcap" >&5 +echo "$as_me:10086: 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:10090: error: You have disabled the database w/o specifying fallbacks" >&5 + { { echo "$as_me:10093: 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 @@ -10100,13 +10103,13 @@ else if test "$with_ticlib" != no ; then - { { echo "$as_me:10103: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5 + { { echo "$as_me:10106: 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:10109: checking for list of termcap files" >&5 + echo "$as_me:10112: 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. @@ -10144,7 +10147,7 @@ cf_src_path=`echo "$cf_src_path" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:10147: error: expected a pathname, not \"$cf_src_path\"" >&5 + { { echo "$as_me:10150: 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; }; } ;; @@ -10167,7 +10170,7 @@ ;; esac - echo "$as_me:10170: result: $TERMPATH" >&5 + echo "$as_me:10173: result: $TERMPATH" >&5 echo "${ECHO_T}$TERMPATH" >&6 test -n "$TERMPATH" && cat >>confdefs.h <&5 + echo "$as_me:10181: 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. @@ -10185,14 +10188,14 @@ else with_getcap=no fi; - echo "$as_me:10188: result: $with_getcap" >&5 + echo "$as_me:10191: 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:10195: checking if translated termcaps will be cached in ~/.terminfo" >&5 + echo "$as_me:10198: 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. @@ -10202,7 +10205,7 @@ else with_getcap_cache=no fi; - echo "$as_me:10205: result: $with_getcap_cache" >&5 + echo "$as_me:10208: result: $with_getcap_cache" >&5 echo "${ECHO_T}$with_getcap_cache" >&6 test "x$with_getcap_cache" = "xyes" && cat >>confdefs.h <<\EOF @@ -10212,7 +10215,7 @@ fi ### Use option --disable-home-terminfo to completely remove ~/.terminfo -echo "$as_me:10215: checking if ~/.terminfo is wanted" >&5 +echo "$as_me:10218: 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. @@ -10222,14 +10225,14 @@ else with_home_terminfo=yes fi; -echo "$as_me:10225: result: $with_home_terminfo" >&5 +echo "$as_me:10228: 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:10232: checking if you want to permit root to use ncurses environment variables" >&5 +echo "$as_me:10235: 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. @@ -10239,14 +10242,14 @@ else with_root_environ=yes fi; -echo "$as_me:10242: result: $with_root_environ" >&5 +echo "$as_me:10245: 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:10249: checking if you want to permit setuid programs to access all files" >&5 +echo "$as_me:10252: 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. @@ -10256,14 +10259,14 @@ else with_root_access=yes fi; -echo "$as_me:10259: result: $with_root_access" >&5 +echo "$as_me:10262: 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:10266: checking if you want to permit setuid use of ncurses environment variables" >&5 +echo "$as_me:10269: 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. @@ -10273,7 +10276,7 @@ else with_setuid_environ=$with_root_environ fi; -echo "$as_me:10276: result: $with_setuid_environ" >&5 +echo "$as_me:10279: result: $with_setuid_environ" >&5 echo "${ECHO_T}$with_setuid_environ" >&6 test "x$with_setuid_environ" = xyes && cat >>confdefs.h <<\EOF @@ -10288,23 +10291,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:10291: checking for $ac_header" >&5 +echo "$as_me:10294: 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 10297 "configure" +#line 10300 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:10301: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:10304: \"$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:10307: \$? = $ac_status" >&5 + echo "$as_me:10310: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -10323,7 +10326,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:10326: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:10329: 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:10344: 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 10347 "configure" +#line 10350 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -10375,16 +10378,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10378: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10381: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10381: \$? = $ac_status" >&5 + echo "$as_me:10384: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10384: \"$ac_try\"") >&5 + { (eval echo "$as_me:10387: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10387: \$? = $ac_status" >&5 + echo "$as_me:10390: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -10394,7 +10397,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:10397: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:10400: 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:10417: 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 10420 "configure" +#line 10423 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -10448,16 +10451,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:10451: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10454: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10454: \$? = $ac_status" >&5 + echo "$as_me:10457: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:10457: \"$ac_try\"") >&5 + { (eval echo "$as_me:10460: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10460: \$? = $ac_status" >&5 + echo "$as_me:10463: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -10467,7 +10470,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:10470: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:10473: 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:10484: 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 @@ -10491,7 +10494,7 @@ eval 'ac_cv_func_'$cf_func'=error' else cat >"conftest.$ac_ext" <<_ACEOF -#line 10494 "configure" +#line 10497 "configure" #include "confdefs.h" $ac_includes_default @@ -10503,7 +10506,7 @@ char dst[] = "conftest.chk"; struct stat src_sb, dst_sb; FILE *fp = fopen(src, "w"); - if (fp == 0) { fail = 3; } else { + if (fp == NULL) { fail = 3; } else { fclose(fp); stat(src, &src_sb); if ($cf_func(src, dst) < 0) { fail = 1; @@ -10525,15 +10528,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:10528: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10531: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10531: \$? = $ac_status" >&5 + echo "$as_me:10534: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:10533: \"$ac_try\"") >&5 + { (eval echo "$as_me:10536: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10536: \$? = $ac_status" >&5 + echo "$as_me:10539: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_link_funcs="$cf_cv_link_funcs $cf_func" @@ -10551,7 +10554,7 @@ test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no fi -echo "$as_me:10554: result: $cf_cv_link_funcs" >&5 +echo "$as_me:10557: result: $cf_cv_link_funcs" >&5 echo "${ECHO_T}$cf_cv_link_funcs" >&6 test "$ac_cv_func_link" = yes && cat >>confdefs.h <<\EOF @@ -10571,7 +10574,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:10574: checking if tic should use symbolic links" >&5 + echo "$as_me:10577: 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. @@ -10581,21 +10584,21 @@ else with_symlinks=no fi; - echo "$as_me:10584: result: $with_symlinks" >&5 + echo "$as_me:10587: 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:10591: checking if tic should use hard links" >&5 + echo "$as_me:10594: 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:10598: result: $with_links" >&5 + echo "$as_me:10601: result: $with_links" >&5 echo "${ECHO_T}$with_links" >&6 fi @@ -10611,7 +10614,7 @@ ### use option --enable-broken-linker to force on use of broken-linker support -echo "$as_me:10614: checking if you want broken-linker support code" >&5 +echo "$as_me:10617: 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. @@ -10621,7 +10624,7 @@ else with_broken_linker=no fi; -echo "$as_me:10624: result: $with_broken_linker" >&5 +echo "$as_me:10627: result: $with_broken_linker" >&5 echo "${ECHO_T}$with_broken_linker" >&6 : "${BROKEN_LINKER:=0}" @@ -10635,7 +10638,7 @@ fi ### use option --enable-bsdpad to have tputs process BSD-style prefix padding -echo "$as_me:10638: checking if tputs should process BSD-style prefix padding" >&5 +echo "$as_me:10641: 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. @@ -10645,7 +10648,7 @@ else with_bsdpad=no fi; -echo "$as_me:10648: result: $with_bsdpad" >&5 +echo "$as_me:10651: result: $with_bsdpad" >&5 echo "${ECHO_T}$with_bsdpad" >&6 test "x$with_bsdpad" = xyes && cat >>confdefs.h <<\EOF @@ -10664,14 +10667,14 @@ # Check to define _XOPEN_SOURCE "automatically" CPPFLAGS_before_XOPEN="$CPPFLAGS" -echo "$as_me:10667: checking if the POSIX test-macros are already defined" >&5 +echo "$as_me:10670: 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 10674 "configure" +#line 10677 "configure" #include "confdefs.h" #include int @@ -10690,16 +10693,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10693: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10696: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10696: \$? = $ac_status" >&5 + echo "$as_me:10699: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10699: \"$ac_try\"") >&5 + { (eval echo "$as_me:10702: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10702: \$? = $ac_status" >&5 + echo "$as_me:10705: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_visible=no else @@ -10710,7 +10713,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:10713: result: $cf_cv_posix_visible" >&5 +echo "$as_me:10716: result: $cf_cv_posix_visible" >&5 echo "${ECHO_T}$cf_cv_posix_visible" >&6 if test "$cf_cv_posix_visible" = no; then @@ -10752,14 +10755,14 @@ cf_gnu_xopen_source=$cf_XOPEN_SOURCE -echo "$as_me:10755: checking if this is the GNU C library" >&5 +echo "$as_me:10758: 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 10762 "configure" +#line 10765 "configure" #include "confdefs.h" #include int @@ -10778,16 +10781,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10781: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10784: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10784: \$? = $ac_status" >&5 + echo "$as_me:10787: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10787: \"$ac_try\"") >&5 + { (eval echo "$as_me:10790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10790: \$? = $ac_status" >&5 + echo "$as_me:10793: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library=yes else @@ -10798,7 +10801,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:10801: result: $cf_cv_gnu_library" >&5 +echo "$as_me:10804: result: $cf_cv_gnu_library" >&5 echo "${ECHO_T}$cf_cv_gnu_library" >&6 if test x$cf_cv_gnu_library = xyes; then @@ -10806,7 +10809,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:10809: checking if _DEFAULT_SOURCE can be used as a basis" >&5 + echo "$as_me:10812: 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 @@ -10818,7 +10821,7 @@ CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 10821 "configure" +#line 10824 "configure" #include "confdefs.h" #include int @@ -10837,16 +10840,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10840: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10843: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10843: \$? = $ac_status" >&5 + echo "$as_me:10846: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10846: \"$ac_try\"") >&5 + { (eval echo "$as_me:10849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10849: \$? = $ac_status" >&5 + echo "$as_me:10852: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_library_219=yes else @@ -10858,12 +10861,12 @@ CPPFLAGS="$cf_save" fi -echo "$as_me:10861: result: $cf_cv_gnu_library_219" >&5 +echo "$as_me:10864: 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:10866: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5 + echo "$as_me:10869: 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 @@ -10968,7 +10971,7 @@ fi cat >"conftest.$ac_ext" <<_ACEOF -#line 10971 "configure" +#line 10974 "configure" #include "confdefs.h" #include @@ -10988,16 +10991,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:10991: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10994: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10994: \$? = $ac_status" >&5 + echo "$as_me:10997: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:10997: \"$ac_try\"") >&5 + { (eval echo "$as_me:11000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11000: \$? = $ac_status" >&5 + echo "$as_me:11003: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_dftsrc_219=yes else @@ -11008,7 +11011,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11011: result: $cf_cv_gnu_dftsrc_219" >&5 +echo "$as_me:11014: 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 @@ -11017,14 +11020,14 @@ if test "x$cf_cv_gnu_dftsrc_219" != xyes; then - echo "$as_me:11020: checking if we must define _GNU_SOURCE" >&5 + echo "$as_me:11023: 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 11027 "configure" +#line 11030 "configure" #include "confdefs.h" #include int @@ -11039,16 +11042,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11042: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11045: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11045: \$? = $ac_status" >&5 + echo "$as_me:11048: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11048: \"$ac_try\"") >&5 + { (eval echo "$as_me:11051: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11051: \$? = $ac_status" >&5 + echo "$as_me:11054: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11155,7 +11158,7 @@ fi cat >"conftest.$ac_ext" <<_ACEOF -#line 11158 "configure" +#line 11161 "configure" #include "confdefs.h" #include int @@ -11170,16 +11173,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11173: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11176: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11176: \$? = $ac_status" >&5 + echo "$as_me:11179: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11179: \"$ac_try\"") >&5 + { (eval echo "$as_me:11182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11182: \$? = $ac_status" >&5 + echo "$as_me:11185: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gnu_source=no else @@ -11194,12 +11197,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11197: result: $cf_cv_gnu_source" >&5 +echo "$as_me:11200: 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:11202: checking if we should also define _DEFAULT_SOURCE" >&5 + echo "$as_me:11205: 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 @@ -11209,7 +11212,7 @@ CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11212 "configure" +#line 11215 "configure" #include "confdefs.h" #include int @@ -11224,16 +11227,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11227: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11230: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11230: \$? = $ac_status" >&5 + echo "$as_me:11233: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11233: \"$ac_try\"") >&5 + { (eval echo "$as_me:11236: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11236: \$? = $ac_status" >&5 + echo "$as_me:11239: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_default_source=no else @@ -11244,7 +11247,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11247: result: $cf_cv_default_source" >&5 +echo "$as_me:11250: result: $cf_cv_default_source" >&5 echo "${ECHO_T}$cf_cv_default_source" >&6 if test "$cf_cv_default_source" = yes then @@ -11284,16 +11287,16 @@ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:11287: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:11290: 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}:11293: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:11296: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11296 "configure" +#line 11299 "configure" #include "confdefs.h" #include int @@ -11308,16 +11311,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11311: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11314: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11314: \$? = $ac_status" >&5 + echo "$as_me:11317: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11317: \"$ac_try\"") >&5 + { (eval echo "$as_me:11320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11320: \$? = $ac_status" >&5 + echo "$as_me:11323: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -11338,7 +11341,7 @@ esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 11341 "configure" +#line 11344 "configure" #include "confdefs.h" #include int @@ -11353,16 +11356,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11356: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11359: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11359: \$? = $ac_status" >&5 + echo "$as_me:11362: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11362: \"$ac_try\"") >&5 + { (eval echo "$as_me:11365: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11365: \$? = $ac_status" >&5 + echo "$as_me:11368: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11373,7 +11376,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:11376: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:11379: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -11381,10 +11384,10 @@ test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:11384: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:11387: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11387 "configure" +#line 11390 "configure" #include "confdefs.h" #include int @@ -11399,16 +11402,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11402: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11405: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11405: \$? = $ac_status" >&5 + echo "$as_me:11408: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11408: \"$ac_try\"") >&5 + { (eval echo "$as_me:11411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11411: \$? = $ac_status" >&5 + echo "$as_me:11414: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11424,7 +11427,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11427: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:11430: 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 @@ -11541,7 +11544,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:11544: WARNING: this system does not provide usable locale support" >&5 + { echo "$as_me:11547: 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 @@ -11573,14 +11576,14 @@ ;; (*) -echo "$as_me:11576: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:11579: 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 11583 "configure" +#line 11586 "configure" #include "confdefs.h" $ac_includes_default @@ -11598,16 +11601,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11601: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11604: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11604: \$? = $ac_status" >&5 + echo "$as_me:11607: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11607: \"$ac_try\"") >&5 + { (eval echo "$as_me:11610: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11610: \$? = $ac_status" >&5 + echo "$as_me:11613: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -11619,7 +11622,7 @@ CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 11622 "configure" +#line 11625 "configure" #include "confdefs.h" $ac_includes_default @@ -11637,16 +11640,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11640: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11643: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11643: \$? = $ac_status" >&5 + echo "$as_me:11646: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11646: \"$ac_try\"") >&5 + { (eval echo "$as_me:11649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11649: \$? = $ac_status" >&5 + echo "$as_me:11652: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -11661,7 +11664,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11664: result: $cf_cv_xopen_source" >&5 +echo "$as_me:11667: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -11821,16 +11824,16 @@ sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` -echo "$as_me:11824: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:11827: 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}:11830: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:11833: testing if the symbol is already defined go no further ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11833 "configure" +#line 11836 "configure" #include "confdefs.h" #include int @@ -11845,16 +11848,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11848: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11851: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11851: \$? = $ac_status" >&5 + echo "$as_me:11854: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11854: \"$ac_try\"") >&5 + { (eval echo "$as_me:11857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11857: \$? = $ac_status" >&5 + echo "$as_me:11860: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_posix_c_source=no else @@ -11875,7 +11878,7 @@ esac if test "$cf_want_posix_source" = yes ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 11878 "configure" +#line 11881 "configure" #include "confdefs.h" #include int @@ -11890,16 +11893,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11893: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11896: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11896: \$? = $ac_status" >&5 + echo "$as_me:11899: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11899: \"$ac_try\"") >&5 + { (eval echo "$as_me:11902: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11902: \$? = $ac_status" >&5 + echo "$as_me:11905: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11910,7 +11913,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "${as_me:-configure}:11913: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:11916: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS" @@ -11918,10 +11921,10 @@ test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source" -echo "${as_me:-configure}:11921: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:11924: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 11924 "configure" +#line 11927 "configure" #include "confdefs.h" #include int @@ -11936,16 +11939,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:11939: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11942: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11942: \$? = $ac_status" >&5 + echo "$as_me:11945: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:11945: \"$ac_try\"") >&5 + { (eval echo "$as_me:11948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11948: \$? = $ac_status" >&5 + echo "$as_me:11951: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -11961,7 +11964,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:11964: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:11967: 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 @@ -12074,10 +12077,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}:12077: testing checking if _POSIX_C_SOURCE interferes with _XOPEN_SOURCE ..." 1>&5 +echo "${as_me:-configure}:12080: testing checking if _POSIX_C_SOURCE interferes with _XOPEN_SOURCE ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 12080 "configure" +#line 12083 "configure" #include "confdefs.h" $ac_includes_default @@ -12095,23 +12098,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12098: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12101: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12101: \$? = $ac_status" >&5 + echo "$as_me:12104: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12104: \"$ac_try\"") >&5 + { (eval echo "$as_me:12107: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12107: \$? = $ac_status" >&5 + echo "$as_me:12110: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 - { echo "$as_me:12114: WARNING: _POSIX_C_SOURCE definition is not usable" >&5 + { echo "$as_me:12117: 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 @@ -12134,7 +12137,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}:12137: testing removing old option $cf_add_cflags from CFLAGS ..." 1>&5 +echo "${as_me:-configure}:12140: testing removing old option $cf_add_cflags from CFLAGS ..." 1>&5 CFLAGS="$cf_old_cflag" done @@ -12146,7 +12149,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}:12149: testing removing old option $cf_add_cflags from CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:12152: testing removing old option $cf_add_cflags from CPPFLAGS ..." 1>&5 CPPFLAGS="$cf_old_cflag" done @@ -12234,7 +12237,7 @@ if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:12237: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:12240: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -12244,7 +12247,7 @@ if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:12247: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:12250: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -12254,7 +12257,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}:12257: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:12260: 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" @@ -12266,10 +12269,10 @@ fi if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then - echo "$as_me:12269: checking if _XOPEN_SOURCE really is set" >&5 + echo "$as_me:12272: 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 12272 "configure" +#line 12275 "configure" #include "confdefs.h" #include int @@ -12284,16 +12287,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12287: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12290: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12290: \$? = $ac_status" >&5 + echo "$as_me:12293: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12293: \"$ac_try\"") >&5 + { (eval echo "$as_me:12296: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12296: \$? = $ac_status" >&5 + echo "$as_me:12299: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set=yes else @@ -12302,12 +12305,12 @@ cf_XOPEN_SOURCE_set=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:12305: result: $cf_XOPEN_SOURCE_set" >&5 + echo "$as_me:12308: 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 12310 "configure" +#line 12313 "configure" #include "confdefs.h" #include int @@ -12322,16 +12325,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12325: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12328: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12328: \$? = $ac_status" >&5 + echo "$as_me:12331: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12331: \"$ac_try\"") >&5 + { (eval echo "$as_me:12334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12334: \$? = $ac_status" >&5 + echo "$as_me:12337: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_XOPEN_SOURCE_set_ok=yes else @@ -12342,19 +12345,19 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_XOPEN_SOURCE_set_ok" = no then - { echo "$as_me:12345: WARNING: _XOPEN_SOURCE is lower than requested" >&5 + { echo "$as_me:12348: WARNING: _XOPEN_SOURCE is lower than requested" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} fi else -echo "$as_me:12350: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:12353: 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 12357 "configure" +#line 12360 "configure" #include "confdefs.h" $ac_includes_default @@ -12372,16 +12375,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12375: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12378: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12378: \$? = $ac_status" >&5 + echo "$as_me:12381: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12381: \"$ac_try\"") >&5 + { (eval echo "$as_me:12384: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12384: \$? = $ac_status" >&5 + echo "$as_me:12387: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12393,7 +12396,7 @@ CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >"conftest.$ac_ext" <<_ACEOF -#line 12396 "configure" +#line 12399 "configure" #include "confdefs.h" $ac_includes_default @@ -12411,16 +12414,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12414: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12417: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12417: \$? = $ac_status" >&5 + echo "$as_me:12420: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12420: \"$ac_try\"") >&5 + { (eval echo "$as_me:12423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12423: \$? = $ac_status" >&5 + echo "$as_me:12426: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xopen_source=no else @@ -12435,7 +12438,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12438: result: $cf_cv_xopen_source" >&5 +echo "$as_me:12441: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -12586,14 +12589,14 @@ # Work around breakage on OS X -echo "$as_me:12589: checking if SIGWINCH is defined" >&5 +echo "$as_me:12592: 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 12596 "configure" +#line 12599 "configure" #include "confdefs.h" #include @@ -12608,23 +12611,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12611: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12614: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12614: \$? = $ac_status" >&5 + echo "$as_me:12617: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12617: \"$ac_try\"") >&5 + { (eval echo "$as_me:12620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12620: \$? = $ac_status" >&5 + echo "$as_me:12623: \$? = $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 12627 "configure" +#line 12630 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -12642,16 +12645,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12645: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12648: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12648: \$? = $ac_status" >&5 + echo "$as_me:12651: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12651: \"$ac_try\"") >&5 + { (eval echo "$as_me:12654: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12654: \$? = $ac_status" >&5 + echo "$as_me:12657: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_define_sigwinch=maybe else @@ -12665,11 +12668,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12668: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:12671: 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:12672: checking for actual SIGWINCH definition" >&5 +echo "$as_me:12675: 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 @@ -12680,7 +12683,7 @@ while test "$cf_sigwinch" != 1 do cat >"conftest.$ac_ext" <<_ACEOF -#line 12683 "configure" +#line 12686 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -12702,16 +12705,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12705: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12708: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12708: \$? = $ac_status" >&5 + echo "$as_me:12711: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12711: \"$ac_try\"") >&5 + { (eval echo "$as_me:12714: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12714: \$? = $ac_status" >&5 + echo "$as_me:12717: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -12725,7 +12728,7 @@ done fi -echo "$as_me:12728: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:12731: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -12735,13 +12738,13 @@ # Checks for CODESET support. -echo "$as_me:12738: checking for nl_langinfo and CODESET" >&5 +echo "$as_me:12741: 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 12744 "configure" +#line 12747 "configure" #include "confdefs.h" $ac_includes_default @@ -12755,16 +12758,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:12758: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12761: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12761: \$? = $ac_status" >&5 + echo "$as_me:12764: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:12764: \"$ac_try\"") >&5 + { (eval echo "$as_me:12767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12767: \$? = $ac_status" >&5 + echo "$as_me:12770: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then am_cv_langinfo_codeset=yes else @@ -12775,7 +12778,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:12778: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:12781: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test "$am_cv_langinfo_codeset" = yes; then @@ -12789,7 +12792,7 @@ NCURSES_OK_WCHAR_T= NCURSES_OK_WINT_T= -echo "$as_me:12792: checking if you want wide-character code" >&5 +echo "$as_me:12795: 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. @@ -12799,7 +12802,7 @@ else with_widec=$cf_dft_widec fi; -echo "$as_me:12802: result: $with_widec" >&5 +echo "$as_me:12805: result: $with_widec" >&5 echo "${ECHO_T}$with_widec" >&6 NCURSES_WCWIDTH_GRAPHICS=1 @@ -12821,7 +12824,7 @@ (*_XOPEN_SOURCE=*) ;; (*) - { echo "$as_me:12824: WARNING: _XOPEN_SOURCE feature test macro appears to be predefined" >&5 + { echo "$as_me:12827: 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" @@ -12834,23 +12837,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:12837: checking for $ac_header" >&5 +echo "$as_me:12840: 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 12843 "configure" +#line 12846 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:12847: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:12850: \"$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:12853: \$? = $ac_status" >&5 + echo "$as_me:12856: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -12869,7 +12872,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:12872: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:12875: 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:12885: 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 12889 "configure" +#line 12892 "configure" #include "confdefs.h" $ac_includes_default @@ -12908,16 +12911,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12911: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12914: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12914: \$? = $ac_status" >&5 + echo "$as_me:12917: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12917: \"$ac_try\"") >&5 + { (eval echo "$as_me:12920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12920: \$? = $ac_status" >&5 + echo "$as_me:12923: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wchar_h_okay=yes else @@ -12927,16 +12930,16 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:12930: result: $cf_cv_wchar_h_okay" >&5 +echo "$as_me:12933: 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:12936: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:12939: 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 12939 "configure" +#line 12942 "configure" #include "confdefs.h" #include @@ -12952,16 +12955,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12955: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12958: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12958: \$? = $ac_status" >&5 + echo "$as_me:12961: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:12961: \"$ac_try\"") >&5 + { (eval echo "$as_me:12964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12964: \$? = $ac_status" >&5 + echo "$as_me:12967: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=no else @@ -12970,16 +12973,16 @@ cf_result=yes fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:12973: result: $cf_result" >&5 +echo "$as_me:12976: 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:12979: checking checking for compatible value versus " >&5 + echo "$as_me:12982: 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 12982 "configure" +#line 12985 "configure" #include "confdefs.h" #include @@ -12995,16 +12998,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:12998: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13001: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13001: \$? = $ac_status" >&5 + echo "$as_me:13004: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13004: \"$ac_try\"") >&5 + { (eval echo "$as_me:13007: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13007: \$? = $ac_status" >&5 + echo "$as_me:13010: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -13013,7 +13016,7 @@ cf_result=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:13016: result: $cf_result" >&5 + echo "$as_me:13019: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then # perhaps we can override it - try... @@ -13023,7 +13026,7 @@ fi -echo "$as_me:13026: checking if wcwidth agrees graphics are single-width" >&5 +echo "$as_me:13029: 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 @@ -13094,7 +13097,7 @@ cf_cv_wcwidth_graphics=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 13097 "configure" +#line 13100 "configure" #include "confdefs.h" $ac_includes_default @@ -13118,8 +13121,8 @@ setlocale(LC_ALL, "en_US.UTF-8") || setlocale(LC_ALL, "en_US.utf8") || setlocale(LC_ALL, "en_US.utf-8")) { - if ((fp = fopen("conftest.in", "r")) != 0) { - while (fgets(buffer, MY_LEN, fp) != 0) { + if ((fp = fopen("conftest.in", "r")) != NULL) { + while (fgets(buffer, MY_LEN, fp) != NULL) { if (*buffer == '-') { fprintf(stderr, "\\t%s", buffer); } else if (sscanf(buffer, "%x %s", &value, notes) == 2) { @@ -13139,15 +13142,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:13142: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13145: \$? = $ac_status" >&5 + echo "$as_me:13148: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:13147: \"$ac_try\"") >&5 + { (eval echo "$as_me:13150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13150: \$? = $ac_status" >&5 + echo "$as_me:13153: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wcwidth_graphics=yes else @@ -13160,7 +13163,7 @@ fi fi -echo "$as_me:13163: result: $cf_cv_wcwidth_graphics" >&5 +echo "$as_me:13166: result: $cf_cv_wcwidth_graphics" >&5 echo "${ECHO_T}$cf_cv_wcwidth_graphics" >&6 test "$cf_cv_wcwidth_graphics" = no && NCURSES_WCWIDTH_GRAPHICS=0 @@ -13171,13 +13174,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:13174: checking for $ac_func" >&5 +echo "$as_me:13177: 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 13180 "configure" +#line 13183 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -13208,16 +13211,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13211: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13214: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13214: \$? = $ac_status" >&5 + echo "$as_me:13217: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13217: \"$ac_try\"") >&5 + { (eval echo "$as_me:13220: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13220: \$? = $ac_status" >&5 + echo "$as_me:13223: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -13227,7 +13230,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:13230: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:13233: 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:13248: 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 13251 "configure" +#line 13254 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:13255: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:13258: \"$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:13261: \$? = $ac_status" >&5 + echo "$as_me:13264: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -13277,7 +13280,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:13280: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:13283: 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:13293: 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 @@ -13295,7 +13298,7 @@ cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13298 "configure" +#line 13301 "configure" #include "confdefs.h" $ac_includes_default @@ -13312,16 +13315,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13315: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13318: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13318: \$? = $ac_status" >&5 + echo "$as_me:13321: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13321: \"$ac_try\"") >&5 + { (eval echo "$as_me:13324: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13324: \$? = $ac_status" >&5 + echo "$as_me:13327: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_utf8_lib=yes else @@ -13333,12 +13336,12 @@ cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:13336: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:13339: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13341 "configure" +#line 13344 "configure" #include "confdefs.h" #include @@ -13351,16 +13354,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13354: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13357: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13357: \$? = $ac_status" >&5 + echo "$as_me:13360: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13360: \"$ac_try\"") >&5 + { (eval echo "$as_me:13363: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13363: \$? = $ac_status" >&5 + echo "$as_me:13366: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -13374,7 +13377,7 @@ LIBS="-lutf8 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 13377 "configure" +#line 13380 "configure" #include "confdefs.h" #include @@ -13387,16 +13390,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13390: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13393: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13393: \$? = $ac_status" >&5 + echo "$as_me:13396: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13396: \"$ac_try\"") >&5 + { (eval echo "$as_me:13399: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13399: \$? = $ac_status" >&5 + echo "$as_me:13402: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_utf8=yes @@ -13413,9 +13416,9 @@ test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:13416: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:13419: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:13418: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:13421: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13506,7 +13509,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}:13509: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13512: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -13514,7 +13517,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8" cat >"conftest.$ac_ext" <<_ACEOF -#line 13517 "configure" +#line 13520 "configure" #include "confdefs.h" #include @@ -13527,21 +13530,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13530: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13533: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13533: \$? = $ac_status" >&5 + echo "$as_me:13536: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13536: \"$ac_try\"") >&5 + { (eval echo "$as_me:13539: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13539: \$? = $ac_status" >&5 + echo "$as_me:13542: \$? = $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}:13544: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13547: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13559,7 +13562,7 @@ if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:13562: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:13565: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -13634,13 +13637,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}:13637: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13640: 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 13643 "configure" +#line 13646 "configure" #include "confdefs.h" #include @@ -13653,21 +13656,21 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:13656: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13659: \$? = $ac_status" >&5 + echo "$as_me:13662: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:13662: \"$ac_try\"") >&5 + { (eval echo "$as_me:13665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13665: \$? = $ac_status" >&5 + echo "$as_me:13668: \$? = $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}:13670: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:13673: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -13709,7 +13712,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:13712: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:13715: 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 @@ -13747,7 +13750,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 13750 "configure" +#line 13753 "configure" #include "confdefs.h" #include int @@ -13759,16 +13762,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13762: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13765: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13765: \$? = $ac_status" >&5 + echo "$as_me:13768: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13768: \"$ac_try\"") >&5 + { (eval echo "$as_me:13771: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13771: \$? = $ac_status" >&5 + echo "$as_me:13774: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -13785,7 +13788,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}:13788: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13791: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13821,7 +13824,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}:13824: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13827: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13853,14 +13856,14 @@ fi # This is needed on Tru64 5.0 to declare mbstate_t -echo "$as_me:13856: checking if we must include wchar.h to declare mbstate_t" >&5 +echo "$as_me:13859: 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 13863 "configure" +#line 13866 "configure" #include "confdefs.h" #include @@ -13878,23 +13881,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13881: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13884: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13884: \$? = $ac_status" >&5 + echo "$as_me:13887: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13887: \"$ac_try\"") >&5 + { (eval echo "$as_me:13890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13890: \$? = $ac_status" >&5 + echo "$as_me:13893: \$? = $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 13897 "configure" +#line 13900 "configure" #include "confdefs.h" #include @@ -13913,16 +13916,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13916: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13919: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13919: \$? = $ac_status" >&5 + echo "$as_me:13922: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13922: \"$ac_try\"") >&5 + { (eval echo "$as_me:13925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13925: \$? = $ac_status" >&5 + echo "$as_me:13928: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_mbstate_t=yes else @@ -13934,7 +13937,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:13937: result: $cf_cv_mbstate_t" >&5 +echo "$as_me:13940: result: $cf_cv_mbstate_t" >&5 echo "${ECHO_T}$cf_cv_mbstate_t" >&6 if test "$cf_cv_mbstate_t" = yes ; then @@ -13952,14 +13955,14 @@ fi # This is needed on Tru64 5.0 to declare wchar_t -echo "$as_me:13955: checking if we must include wchar.h to declare wchar_t" >&5 +echo "$as_me:13958: 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 13962 "configure" +#line 13965 "configure" #include "confdefs.h" #include @@ -13977,23 +13980,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:13980: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13983: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13983: \$? = $ac_status" >&5 + echo "$as_me:13986: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:13986: \"$ac_try\"") >&5 + { (eval echo "$as_me:13989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13989: \$? = $ac_status" >&5 + echo "$as_me:13992: \$? = $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 13996 "configure" +#line 13999 "configure" #include "confdefs.h" #include @@ -14012,16 +14015,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14015: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14018: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14018: \$? = $ac_status" >&5 + echo "$as_me:14021: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14021: \"$ac_try\"") >&5 + { (eval echo "$as_me:14024: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14024: \$? = $ac_status" >&5 + echo "$as_me:14027: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wchar_t=yes else @@ -14033,7 +14036,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:14036: result: $cf_cv_wchar_t" >&5 +echo "$as_me:14039: result: $cf_cv_wchar_t" >&5 echo "${ECHO_T}$cf_cv_wchar_t" >&6 if test "$cf_cv_wchar_t" = yes ; then @@ -14056,14 +14059,14 @@ fi # This is needed on Tru64 5.0 to declare wint_t -echo "$as_me:14059: checking if we must include wchar.h to declare wint_t" >&5 +echo "$as_me:14062: 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 14066 "configure" +#line 14069 "configure" #include "confdefs.h" #include @@ -14081,23 +14084,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14084: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14087: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14087: \$? = $ac_status" >&5 + echo "$as_me:14090: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14090: \"$ac_try\"") >&5 + { (eval echo "$as_me:14093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14093: \$? = $ac_status" >&5 + echo "$as_me:14096: \$? = $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 14100 "configure" +#line 14103 "configure" #include "confdefs.h" #include @@ -14116,16 +14119,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14119: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14122: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14122: \$? = $ac_status" >&5 + echo "$as_me:14125: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14125: \"$ac_try\"") >&5 + { (eval echo "$as_me:14128: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14128: \$? = $ac_status" >&5 + echo "$as_me:14131: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_wint_t=yes else @@ -14137,7 +14140,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:14140: result: $cf_cv_wint_t" >&5 +echo "$as_me:14143: result: $cf_cv_wint_t" >&5 echo "${ECHO_T}$cf_cv_wint_t" >&6 if test "$cf_cv_wint_t" = yes ; then @@ -14169,7 +14172,7 @@ fi ### use option --disable-lp64 to allow long chtype -echo "$as_me:14172: checking whether to enable _LP64 definition in curses.h" >&5 +echo "$as_me:14175: 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. @@ -14179,7 +14182,7 @@ else with_lp64=$cf_dft_with_lp64 fi; -echo "$as_me:14182: result: $with_lp64" >&5 +echo "$as_me:14185: result: $with_lp64" >&5 echo "${ECHO_T}$with_lp64" >&6 if test "x$with_lp64" = xyes ; then @@ -14195,7 +14198,7 @@ fi; if test "$enable_largefile" != no; then - echo "$as_me:14198: checking for special C compiler options needed for large files" >&5 + echo "$as_me:14201: 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 @@ -14207,7 +14210,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 14210 "configure" +#line 14213 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -14227,16 +14230,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14230: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14233: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14233: \$? = $ac_status" >&5 + echo "$as_me:14236: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14236: \"$ac_try\"") >&5 + { (eval echo "$as_me:14239: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14239: \$? = $ac_status" >&5 + echo "$as_me:14242: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14246,16 +14249,16 @@ rm -f "conftest.$ac_objext" CC="$CC -n32" rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14249: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14252: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14252: \$? = $ac_status" >&5 + echo "$as_me:14255: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14255: \"$ac_try\"") >&5 + { (eval echo "$as_me:14258: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14258: \$? = $ac_status" >&5 + echo "$as_me:14261: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -14269,13 +14272,13 @@ rm -f "conftest.$ac_ext" fi fi -echo "$as_me:14272: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:14275: 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:14278: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:14281: 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 @@ -14283,7 +14286,7 @@ while :; do ac_cv_sys_file_offset_bits=no cat >"conftest.$ac_ext" <<_ACEOF -#line 14286 "configure" +#line 14289 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -14303,16 +14306,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14306: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14309: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14309: \$? = $ac_status" >&5 + echo "$as_me:14312: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14312: \"$ac_try\"") >&5 + { (eval echo "$as_me:14315: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14315: \$? = $ac_status" >&5 + echo "$as_me:14318: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14321,7 +14324,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 14324 "configure" +#line 14327 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include @@ -14342,16 +14345,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14345: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14348: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14348: \$? = $ac_status" >&5 + echo "$as_me:14351: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14351: \"$ac_try\"") >&5 + { (eval echo "$as_me:14354: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14354: \$? = $ac_status" >&5 + echo "$as_me:14357: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -14362,7 +14365,7 @@ break done fi -echo "$as_me:14365: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:14368: 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 @@ -14372,7 +14375,7 @@ fi rm -rf conftest* - echo "$as_me:14375: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:14378: 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 @@ -14380,7 +14383,7 @@ while :; do ac_cv_sys_large_files=no cat >"conftest.$ac_ext" <<_ACEOF -#line 14383 "configure" +#line 14386 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -14400,16 +14403,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14403: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14406: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14406: \$? = $ac_status" >&5 + echo "$as_me:14409: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14409: \"$ac_try\"") >&5 + { (eval echo "$as_me:14412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14412: \$? = $ac_status" >&5 + echo "$as_me:14415: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14418,7 +14421,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 14421 "configure" +#line 14424 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include @@ -14439,16 +14442,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14442: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14445: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14445: \$? = $ac_status" >&5 + echo "$as_me:14448: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14448: \"$ac_try\"") >&5 + { (eval echo "$as_me:14451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14451: \$? = $ac_status" >&5 + echo "$as_me:14454: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_large_files=1; break else @@ -14459,7 +14462,7 @@ break done fi -echo "$as_me:14462: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:14465: 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 @@ -14472,7 +14475,7 @@ fi if test "$enable_largefile" != no ; then - echo "$as_me:14475: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:14478: 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 @@ -14480,7 +14483,7 @@ while :; do ac_cv_sys_largefile_source=no cat >"conftest.$ac_ext" <<_ACEOF -#line 14483 "configure" +#line 14486 "configure" #include "confdefs.h" #include #include @@ -14495,16 +14498,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14498: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14501: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14501: \$? = $ac_status" >&5 + echo "$as_me:14504: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14504: \"$ac_try\"") >&5 + { (eval echo "$as_me:14507: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14507: \$? = $ac_status" >&5 + echo "$as_me:14510: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then break else @@ -14513,7 +14516,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" cat >"conftest.$ac_ext" <<_ACEOF -#line 14516 "configure" +#line 14519 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include @@ -14529,16 +14532,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14532: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14535: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14535: \$? = $ac_status" >&5 + echo "$as_me:14538: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14538: \"$ac_try\"") >&5 + { (eval echo "$as_me:14541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14541: \$? = $ac_status" >&5 + echo "$as_me:14544: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sys_largefile_source=1; break else @@ -14549,7 +14552,7 @@ break done fi -echo "$as_me:14552: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:14555: 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 @@ -14563,13 +14566,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:14566: checking for fseeko" >&5 +echo "$as_me:14569: 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 14572 "configure" +#line 14575 "configure" #include "confdefs.h" #include #include @@ -14583,16 +14586,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:14586: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14589: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14589: \$? = $ac_status" >&5 + echo "$as_me:14592: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:14592: \"$ac_try\"") >&5 + { (eval echo "$as_me:14595: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14595: \$? = $ac_status" >&5 + echo "$as_me:14598: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fseeko=yes else @@ -14602,7 +14605,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:14605: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:14608: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -14641,14 +14644,14 @@ fi - echo "$as_me:14644: checking whether to use struct dirent64" >&5 + echo "$as_me:14647: 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 14651 "configure" +#line 14654 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types" @@ -14675,16 +14678,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14678: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14681: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14681: \$? = $ac_status" >&5 + echo "$as_me:14684: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14684: \"$ac_try\"") >&5 + { (eval echo "$as_me:14687: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14687: \$? = $ac_status" >&5 + echo "$as_me:14690: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_struct_dirent64=yes else @@ -14695,7 +14698,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:14698: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:14701: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF @@ -14705,7 +14708,7 @@ fi ### use option --disable-tparm-varargs to make tparm() conform to X/Open -echo "$as_me:14708: checking if you want tparm not to use X/Open fixed-parameter list" >&5 +echo "$as_me:14711: 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. @@ -14715,14 +14718,14 @@ else with_tparm_varargs=yes fi; -echo "$as_me:14718: result: $with_tparm_varargs" >&5 +echo "$as_me:14721: 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:14725: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5 +echo "$as_me:14728: 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. @@ -14732,14 +14735,14 @@ else with_tic_depends=yes fi; -echo "$as_me:14735: result: $with_tic_depends" >&5 +echo "$as_me:14738: 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:14742: checking if you want to enable wattr* macros" >&5 +echo "$as_me:14745: 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. @@ -14751,15 +14754,15 @@ fi; if [ "x$with_wattr_macros" != xyes ]; then NCURSES_WATTR_MACROS=0 - echo "$as_me:14754: result: no" >&5 + echo "$as_me:14757: result: no" >&5 echo "${ECHO_T}no" >&6 else NCURSES_WATTR_MACROS=1 - echo "$as_me:14758: result: yes" >&5 + echo "$as_me:14761: result: yes" >&5 echo "${ECHO_T}yes" >&6 fi -echo "$as_me:14762: checking for X11 rgb file" >&5 +echo "$as_me:14765: 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. @@ -14821,7 +14824,7 @@ cf_path=`echo "$cf_path" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:14824: error: expected a pathname, not \"$cf_path\"" >&5 + { { echo "$as_me:14827: error: expected a pathname, not \"$cf_path\"" >&5 echo "$as_me: error: expected a pathname, not \"$cf_path\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -14829,7 +14832,7 @@ fi -echo "$as_me:14832: result: $RGB_PATH" >&5 +echo "$as_me:14835: result: $RGB_PATH" >&5 echo "${ECHO_T}$RGB_PATH" >&6 cat >>confdefs.h <&5 +echo "$as_me:14850: 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. @@ -14854,17 +14857,17 @@ else NCURSES_BOOL=auto fi; -echo "$as_me:14857: result: $NCURSES_BOOL" >&5 +echo "$as_me:14860: result: $NCURSES_BOOL" >&5 echo "${ECHO_T}$NCURSES_BOOL" >&6 case x$NCURSES_BOOL in (x|xyes|xno) - { { echo "$as_me:14861: error: expected a type name for bool" >&5 + { { echo "$as_me:14864: 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:14867: checking for alternate terminal capabilities file" >&5 +echo "$as_me:14870: 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. @@ -14876,16 +14879,16 @@ fi; if test ! -f "${srcdir}/include/${TERMINFO_CAPS}" then - { echo "$as_me:14879: WARNING: file not found: \"${srcdir}/include/${TERMINFO_CAPS}\"" >&5 + { echo "$as_me:14882: 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:14883: result: $TERMINFO_CAPS" >&5 +echo "$as_me:14886: result: $TERMINFO_CAPS" >&5 echo "${ECHO_T}$TERMINFO_CAPS" >&6 ### use option --with-chtype to override chtype's type -echo "$as_me:14888: checking for type of chtype" >&5 +echo "$as_me:14891: 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. @@ -14895,11 +14898,11 @@ else NCURSES_CHTYPE=$cf_dft_chtype fi; -echo "$as_me:14898: result: $NCURSES_CHTYPE" >&5 +echo "$as_me:14901: result: $NCURSES_CHTYPE" >&5 echo "${ECHO_T}$NCURSES_CHTYPE" >&6 case x$NCURSES_CHTYPE in (x|xyes|xno) - { { echo "$as_me:14902: error: expected a type name for chtype" >&5 + { { echo "$as_me:14905: error: expected a type name for chtype" >&5 echo "$as_me: error: expected a type name for chtype" >&2;} { (exit 1); exit 1; }; } ;; @@ -14907,7 +14910,7 @@ ### use option --with-ospeed to override ospeed's type -echo "$as_me:14910: checking for type of ospeed" >&5 +echo "$as_me:14913: 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. @@ -14917,11 +14920,11 @@ else NCURSES_OSPEED=short fi; -echo "$as_me:14920: result: $NCURSES_OSPEED" >&5 +echo "$as_me:14923: result: $NCURSES_OSPEED" >&5 echo "${ECHO_T}$NCURSES_OSPEED" >&6 case x$NCURSES_OSPEED in (x|xyes|xno) - { { echo "$as_me:14924: error: expected a type name for ospeed" >&5 + { { echo "$as_me:14927: error: expected a type name for ospeed" >&5 echo "$as_me: error: expected a type name for ospeed" >&2;} { (exit 1); exit 1; }; } ;; @@ -14929,7 +14932,7 @@ ### use option --with-mmask-t to override mmask_t's type -echo "$as_me:14932: checking for type of mmask-t" >&5 +echo "$as_me:14935: 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. @@ -14939,18 +14942,18 @@ else NCURSES_MMASK_T=$cf_dft_mmask_t fi; -echo "$as_me:14942: result: $NCURSES_MMASK_T" >&5 +echo "$as_me:14945: result: $NCURSES_MMASK_T" >&5 echo "${ECHO_T}$NCURSES_MMASK_T" >&6 case x$NCURSES_MMASK_T in (x|xyes|xno) - { { echo "$as_me:14946: error: expected a type name for mmask-t" >&5 + { { echo "$as_me:14949: 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:14953: checking for size CCHARW_MAX" >&5 +echo "$as_me:14956: 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. @@ -14960,16 +14963,16 @@ else NCURSES_CCHARW_MAX=$cf_dft_ccharw_max fi; -echo "$as_me:14963: result: $NCURSES_CCHARW_MAX" >&5 +echo "$as_me:14966: result: $NCURSES_CCHARW_MAX" >&5 echo "${ECHO_T}$NCURSES_CCHARW_MAX" >&6 -echo "$as_me:14966: checking for signed char" >&5 +echo "$as_me:14969: 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 14972 "configure" +#line 14975 "configure" #include "confdefs.h" $ac_includes_default int @@ -14984,16 +14987,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:14987: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14990: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14990: \$? = $ac_status" >&5 + echo "$as_me:14993: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:14993: \"$ac_try\"") >&5 + { (eval echo "$as_me:14996: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14996: \$? = $ac_status" >&5 + echo "$as_me:14999: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_signed_char=yes else @@ -15003,10 +15006,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:15006: result: $ac_cv_type_signed_char" >&5 +echo "$as_me:15009: result: $ac_cv_type_signed_char" >&5 echo "${ECHO_T}$ac_cv_type_signed_char" >&6 -echo "$as_me:15009: checking size of signed char" >&5 +echo "$as_me:15012: 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 @@ -15015,7 +15018,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 15018 "configure" +#line 15021 "configure" #include "confdefs.h" $ac_includes_default int @@ -15027,21 +15030,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15030: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15033: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15033: \$? = $ac_status" >&5 + echo "$as_me:15036: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15036: \"$ac_try\"") >&5 + { (eval echo "$as_me:15039: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15039: \$? = $ac_status" >&5 + echo "$as_me:15042: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 15044 "configure" +#line 15047 "configure" #include "confdefs.h" $ac_includes_default int @@ -15053,16 +15056,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15056: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15059: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15059: \$? = $ac_status" >&5 + echo "$as_me:15062: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15062: \"$ac_try\"") >&5 + { (eval echo "$as_me:15065: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15065: \$? = $ac_status" >&5 + echo "$as_me:15068: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -15078,7 +15081,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 15081 "configure" +#line 15084 "configure" #include "confdefs.h" $ac_includes_default int @@ -15090,16 +15093,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15093: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15096: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15096: \$? = $ac_status" >&5 + echo "$as_me:15099: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15099: \"$ac_try\"") >&5 + { (eval echo "$as_me:15102: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15102: \$? = $ac_status" >&5 + echo "$as_me:15105: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -15115,7 +15118,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 15118 "configure" +#line 15121 "configure" #include "confdefs.h" $ac_includes_default int @@ -15127,16 +15130,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:15130: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15133: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15133: \$? = $ac_status" >&5 + echo "$as_me:15136: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:15136: \"$ac_try\"") >&5 + { (eval echo "$as_me:15139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15139: \$? = $ac_status" >&5 + echo "$as_me:15142: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -15149,12 +15152,12 @@ ac_cv_sizeof_signed_char=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:15152: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:15155: 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 15157 "configure" +#line 15160 "configure" #include "confdefs.h" $ac_includes_default int @@ -15170,15 +15173,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:15173: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15176: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15176: \$? = $ac_status" >&5 + echo "$as_me:15179: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:15178: \"$ac_try\"") >&5 + { (eval echo "$as_me:15181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15181: \$? = $ac_status" >&5 + echo "$as_me:15184: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_signed_char=`cat conftest.val` else @@ -15194,7 +15197,7 @@ ac_cv_sizeof_signed_char=0 fi fi -echo "$as_me:15197: result: $ac_cv_sizeof_signed_char" >&5 +echo "$as_me:15200: result: $ac_cv_sizeof_signed_char" >&5 echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6 cat >>confdefs.h <&5 +echo "$as_me:15211: 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. @@ -15215,13 +15218,13 @@ else with_signed_char=$cf_dft_signed_char fi; -echo "$as_me:15218: result: $with_signed_char" >&5 +echo "$as_me:15221: 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:15224: checking for type of tparm-arg" >&5 +echo "$as_me:15227: 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. @@ -15231,18 +15234,18 @@ else NCURSES_TPARM_ARG=$cf_dft_tparm_arg fi; -echo "$as_me:15234: result: $NCURSES_TPARM_ARG" >&5 +echo "$as_me:15237: result: $NCURSES_TPARM_ARG" >&5 echo "${ECHO_T}$NCURSES_TPARM_ARG" >&6 case x$NCURSES_TPARM_ARG in (x|xyes|xno) - { { echo "$as_me:15238: error: expected a type name for tparm-arg" >&5 + { { echo "$as_me:15241: 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:15245: checking if RCS identifiers should be compiled-in" >&5 +echo "$as_me:15248: 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. @@ -15252,7 +15255,7 @@ else with_rcs_ids=no fi; -echo "$as_me:15255: result: $with_rcs_ids" >&5 +echo "$as_me:15258: result: $with_rcs_ids" >&5 echo "${ECHO_T}$with_rcs_ids" >&6 test "x$with_rcs_ids" = xyes && cat >>confdefs.h <<\EOF @@ -15261,7 +15264,7 @@ ############################################################################### -echo "$as_me:15264: checking format of man-pages" >&5 +echo "$as_me:15267: 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. @@ -15352,10 +15355,10 @@ ;; esac -echo "$as_me:15355: result: $MANPAGE_FORMAT" >&5 +echo "$as_me:15358: result: $MANPAGE_FORMAT" >&5 echo "${ECHO_T}$MANPAGE_FORMAT" >&6 if test -n "$cf_unknown" ; then - { echo "$as_me:15358: WARNING: Unexpected manpage-format $cf_unknown" >&5 + { echo "$as_me:15361: WARNING: Unexpected manpage-format $cf_unknown" >&5 echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;} fi @@ -15396,7 +15399,7 @@ esac done -echo "$as_me:15399: checking for manpage renaming" >&5 +echo "$as_me:15402: 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. @@ -15425,15 +15428,15 @@ elif test "$MANPAGE_RENAMES" = no ; then : elif test ! -f "$MANPAGE_RENAMES" ; then - { { echo "$as_me:15428: error: not a filename: $MANPAGE_RENAMES" >&5 + { { echo "$as_me:15431: 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:15433: result: $MANPAGE_RENAMES" >&5 +echo "$as_me:15436: result: $MANPAGE_RENAMES" >&5 echo "${ECHO_T}$MANPAGE_RENAMES" >&6 -echo "$as_me:15436: checking if manpage aliases will be installed" >&5 +echo "$as_me:15439: 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. @@ -15444,7 +15447,7 @@ MANPAGE_ALIASES=yes fi; -echo "$as_me:15447: result: $MANPAGE_ALIASES" >&5 +echo "$as_me:15450: result: $MANPAGE_ALIASES" >&5 echo "${ECHO_T}$MANPAGE_ALIASES" >&6 case "x$LN_S" in @@ -15458,7 +15461,7 @@ MANPAGE_SYMLINKS=no if test "$MANPAGE_ALIASES" = yes ; then -echo "$as_me:15461: checking if manpage symlinks should be used" >&5 +echo "$as_me:15464: 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. @@ -15471,17 +15474,17 @@ if test "$cf_use_symlinks" = no; then if test "$MANPAGE_SYMLINKS" = yes ; then - { echo "$as_me:15474: WARNING: cannot make symlinks" >&5 + { echo "$as_me:15477: WARNING: cannot make symlinks" >&5 echo "$as_me: WARNING: cannot make symlinks" >&2;} MANPAGE_SYMLINKS=no fi fi -echo "$as_me:15480: result: $MANPAGE_SYMLINKS" >&5 +echo "$as_me:15483: result: $MANPAGE_SYMLINKS" >&5 echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6 fi -echo "$as_me:15484: checking for manpage tbl" >&5 +echo "$as_me:15487: 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. @@ -15492,7 +15495,7 @@ MANPAGE_TBL=no fi; -echo "$as_me:15495: result: $MANPAGE_TBL" >&5 +echo "$as_me:15498: result: $MANPAGE_TBL" >&5 echo "${ECHO_T}$MANPAGE_TBL" >&6 if test "$prefix" = "NONE" ; then @@ -15810,7 +15813,7 @@ ############################################################################### ### Note that some functions (such as const) are normally disabled anyway. -echo "$as_me:15813: checking if you want to build with function extensions" >&5 +echo "$as_me:15816: 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. @@ -15820,7 +15823,7 @@ else with_ext_funcs=yes fi; -echo "$as_me:15823: result: $with_ext_funcs" >&5 +echo "$as_me:15826: result: $with_ext_funcs" >&5 echo "${ECHO_T}$with_ext_funcs" >&6 if test "x$with_ext_funcs" = xyes ; then NCURSES_EXT_FUNCS=1 @@ -15877,7 +15880,7 @@ GENERATED_EXT_FUNCS= fi -echo "$as_me:15880: checking if you want to build with SCREEN extensions" >&5 +echo "$as_me:15883: 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. @@ -15887,7 +15890,7 @@ else with_sp_funcs=$cf_dft_ext_spfuncs fi; -echo "$as_me:15890: result: $with_sp_funcs" >&5 +echo "$as_me:15893: result: $with_sp_funcs" >&5 echo "${ECHO_T}$with_sp_funcs" >&6 if test "x$with_sp_funcs" = xyes ; then NCURSES_SP_FUNCS=1 @@ -15906,7 +15909,7 @@ GENERATED_SP_FUNCS= fi -echo "$as_me:15909: checking if you want to build with terminal-driver" >&5 +echo "$as_me:15912: 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. @@ -15916,7 +15919,7 @@ else with_term_driver=no fi; -echo "$as_me:15919: result: $with_term_driver" >&5 +echo "$as_me:15922: result: $with_term_driver" >&5 echo "${ECHO_T}$with_term_driver" >&6 if test "x$with_term_driver" = xyes ; then @@ -15925,19 +15928,19 @@ EOF if test "x$with_termlib" != xno ; then - { { echo "$as_me:15928: error: The term-driver option conflicts with the termlib option" >&5 + { { echo "$as_me:15931: 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:15933: error: The term-driver option relies upon sp-funcs" >&5 + { { echo "$as_me:15936: 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:15940: checking for extended use of const keyword" >&5 +echo "$as_me:15943: 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. @@ -15947,7 +15950,7 @@ else with_ext_const=$cf_dft_ext_const fi; -echo "$as_me:15950: result: $with_ext_const" >&5 +echo "$as_me:15953: result: $with_ext_const" >&5 echo "${ECHO_T}$with_ext_const" >&6 NCURSES_CONST='/*nothing*/' if test "x$with_ext_const" = xyes ; then @@ -15955,7 +15958,7 @@ fi ### use option --enable-ext-colors to turn on use of colors beyond 16. -echo "$as_me:15958: checking if you want to use extended colors" >&5 +echo "$as_me:15961: 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. @@ -15965,12 +15968,12 @@ else with_ext_colors=$cf_dft_ext_colors fi; -echo "$as_me:15968: result: $with_ext_colors" >&5 +echo "$as_me:15971: 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:15973: WARNING: This option applies only to wide-character library" >&5 + { echo "$as_me:15976: 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) @@ -15981,7 +15984,7 @@ cf_cv_rel_version=6.0 cf_cv_abi_version=6 cf_cv_abi_default=6 - { echo "$as_me:15984: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 + { echo "$as_me:15987: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_default" >&2;} ;; esac @@ -16009,7 +16012,7 @@ fi ### use option --enable-ext-mouse to modify coding to support 5-button mice -echo "$as_me:16012: checking if you want to use extended mouse encoding" >&5 +echo "$as_me:16015: 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. @@ -16019,7 +16022,7 @@ else with_ext_mouse=$cf_dft_ext_mouse fi; -echo "$as_me:16022: result: $with_ext_mouse" >&5 +echo "$as_me:16025: result: $with_ext_mouse" >&5 echo "${ECHO_T}$with_ext_mouse" >&6 if test "x$with_ext_mouse" = xyes ; then @@ -16029,7 +16032,7 @@ cf_cv_rel_version=6.0 cf_cv_abi_version=6 cf_cv_abi_default=6 - { echo "$as_me:16032: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 + { echo "$as_me:16035: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_default" >&2;} ;; esac @@ -16046,7 +16049,7 @@ fi ### use option --enable-ext-putwin to turn on extended screendumps -echo "$as_me:16049: checking if you want to use extended putwin/screendump" >&5 +echo "$as_me:16052: 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. @@ -16056,7 +16059,7 @@ else with_ext_putwin=$cf_dft_ext_putwin fi; -echo "$as_me:16059: result: $with_ext_putwin" >&5 +echo "$as_me:16062: result: $with_ext_putwin" >&5 echo "${ECHO_T}$with_ext_putwin" >&6 if test "x$with_ext_putwin" = xyes ; then @@ -16066,7 +16069,7 @@ fi -echo "$as_me:16069: checking if you want \$NCURSES_NO_PADDING code" >&5 +echo "$as_me:16072: 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. @@ -16076,7 +16079,7 @@ else with_no_padding=$with_ext_funcs fi; -echo "$as_me:16079: result: $with_no_padding" >&5 +echo "$as_me:16082: result: $with_no_padding" >&5 echo "${ECHO_T}$with_no_padding" >&6 test "x$with_no_padding" = xyes && cat >>confdefs.h <<\EOF @@ -16084,7 +16087,7 @@ EOF ### use option --enable-sigwinch to turn on use of SIGWINCH logic -echo "$as_me:16087: checking if you want SIGWINCH handler" >&5 +echo "$as_me:16090: 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. @@ -16094,7 +16097,7 @@ else with_sigwinch=$with_ext_funcs fi; -echo "$as_me:16097: result: $with_sigwinch" >&5 +echo "$as_me:16100: result: $with_sigwinch" >&5 echo "${ECHO_T}$with_sigwinch" >&6 if test "x$with_sigwinch" = xyes then @@ -16109,7 +16112,7 @@ fi ### use option --enable-tcap-names to allow user to define new capabilities -echo "$as_me:16112: checking if you want user-definable terminal capabilities like termcap" >&5 +echo "$as_me:16115: 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. @@ -16119,7 +16122,7 @@ else with_tcap_names=$with_ext_funcs fi; -echo "$as_me:16122: result: $with_tcap_names" >&5 +echo "$as_me:16125: result: $with_tcap_names" >&5 echo "${ECHO_T}$with_tcap_names" >&6 NCURSES_XNAMES=0 if test "x$with_tcap_names" = xyes; then @@ -16133,7 +16136,7 @@ ############################################################################## -echo "$as_me:16136: checking if you want to link with the pthread library" >&5 +echo "$as_me:16139: 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. @@ -16143,27 +16146,27 @@ else with_pthread=no fi; -echo "$as_me:16146: result: $with_pthread" >&5 +echo "$as_me:16149: result: $with_pthread" >&5 echo "${ECHO_T}$with_pthread" >&6 if test "$with_pthread" != no ; then - echo "$as_me:16150: checking for pthread.h" >&5 + echo "$as_me:16153: 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 16156 "configure" +#line 16159 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:16160: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:16163: \"$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:16166: \$? = $ac_status" >&5 + echo "$as_me:16169: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -16182,7 +16185,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:16185: result: $ac_cv_header_pthread_h" >&5 +echo "$as_me:16188: 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 @@ -16192,7 +16195,7 @@ for cf_lib_pthread in pthread c_r do - echo "$as_me:16195: checking if we can link with the $cf_lib_pthread library" >&5 + echo "$as_me:16198: 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" @@ -16213,7 +16216,7 @@ LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 16216 "configure" +#line 16219 "configure" #include "confdefs.h" #include @@ -16230,16 +16233,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16233: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16236: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16236: \$? = $ac_status" >&5 + echo "$as_me:16239: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16239: \"$ac_try\"") >&5 + { (eval echo "$as_me:16242: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16242: \$? = $ac_status" >&5 + echo "$as_me:16245: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then with_pthread=yes else @@ -16249,7 +16252,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save_LIBS" - echo "$as_me:16252: result: $with_pthread" >&5 + echo "$as_me:16255: result: $with_pthread" >&5 echo "${ECHO_T}$with_pthread" >&6 test "$with_pthread" = yes && break done @@ -16277,7 +16280,7 @@ EOF else - { { echo "$as_me:16280: error: Cannot link with pthread library" >&5 + { { echo "$as_me:16283: error: Cannot link with pthread library" >&5 echo "$as_me: error: Cannot link with pthread library" >&2;} { (exit 1); exit 1; }; } fi @@ -16287,13 +16290,13 @@ fi if test "x$with_pthread" != xno; then - echo "$as_me:16290: checking for pthread_kill" >&5 + echo "$as_me:16293: 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 16296 "configure" +#line 16299 "configure" #include "confdefs.h" #define pthread_kill autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -16324,16 +16327,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16327: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16330: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16330: \$? = $ac_status" >&5 + echo "$as_me:16333: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16333: \"$ac_try\"") >&5 + { (eval echo "$as_me:16336: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16336: \$? = $ac_status" >&5 + echo "$as_me:16339: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_pthread_kill=yes else @@ -16343,11 +16346,11 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:16346: result: $ac_cv_func_pthread_kill" >&5 +echo "$as_me:16349: 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:16350: checking if you want to allow EINTR in wgetch with pthreads" >&5 + echo "$as_me:16353: 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. @@ -16357,7 +16360,7 @@ else use_pthreads_eintr=no fi; - echo "$as_me:16360: result: $use_pthreads_eintr" >&5 + echo "$as_me:16363: result: $use_pthreads_eintr" >&5 echo "${ECHO_T}$use_pthreads_eintr" >&6 if test "x$use_pthreads_eintr" = xyes ; then @@ -16368,7 +16371,7 @@ fi fi - echo "$as_me:16371: checking if you want to use weak-symbols for pthreads" >&5 + echo "$as_me:16374: 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. @@ -16378,18 +16381,18 @@ else use_weak_symbols=no fi; - echo "$as_me:16381: result: $use_weak_symbols" >&5 + echo "$as_me:16384: result: $use_weak_symbols" >&5 echo "${ECHO_T}$use_weak_symbols" >&6 if test "x$use_weak_symbols" = xyes ; then -echo "$as_me:16385: checking if $CC supports weak symbols" >&5 +echo "$as_me:16388: 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 16392 "configure" +#line 16395 "configure" #include "confdefs.h" #include @@ -16415,16 +16418,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:16418: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16421: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16421: \$? = $ac_status" >&5 + echo "$as_me:16424: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:16424: \"$ac_try\"") >&5 + { (eval echo "$as_me:16427: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16427: \$? = $ac_status" >&5 + echo "$as_me:16430: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_weak_symbols=yes else @@ -16435,7 +16438,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:16438: result: $cf_cv_weak_symbols" >&5 +echo "$as_me:16441: result: $cf_cv_weak_symbols" >&5 echo "${ECHO_T}$cf_cv_weak_symbols" >&6 else @@ -16485,7 +16488,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:16488: checking if you want reentrant code" >&5 +echo "$as_me:16491: 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. @@ -16495,7 +16498,7 @@ else with_reentrant=no fi; -echo "$as_me:16498: result: $with_reentrant" >&5 +echo "$as_me:16501: result: $with_reentrant" >&5 echo "${ECHO_T}$with_reentrant" >&6 if test "x$with_reentrant" = xyes ; then cf_cv_enable_reentrant=1 @@ -16584,7 +16587,7 @@ cf_cv_rel_version=6.0 cf_cv_abi_version=6 cf_cv_abi_default=6 - { echo "$as_me:16587: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 + { echo "$as_me:16590: WARNING: overriding ABI version to $cf_cv_abi_default" >&5 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_default" >&2;} ;; esac @@ -16596,7 +16599,7 @@ NCURSES_SIZE_T=$cf_dft_ordinate_type fi -echo "$as_me:16599: checking whether curses library structures should be opaque" >&5 +echo "$as_me:16602: 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. @@ -16618,16 +16621,16 @@ test "$cf_cv_enable_reentrant" = 1 || enable_opaque_curses=$cf_dft_opaque_curses fi; -echo "$as_me:16621: result: $enable_opaque_curses" >&5 +echo "$as_me:16624: 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:16626: error: reentrant configuration requires opaque library" >&5 +{ { echo "$as_me:16629: error: reentrant configuration requires opaque library" >&5 echo "$as_me: error: reentrant configuration requires opaque library" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:16630: checking whether form library structures should be opaque" >&5 +echo "$as_me:16633: 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. @@ -16644,10 +16647,10 @@ enable_opaque_form=$cf_dft_opaque_curses fi; -echo "$as_me:16647: result: $enable_opaque_form" >&5 +echo "$as_me:16650: result: $enable_opaque_form" >&5 echo "${ECHO_T}$enable_opaque_form" >&6 -echo "$as_me:16650: checking whether menu library structures should be opaque" >&5 +echo "$as_me:16653: 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. @@ -16664,10 +16667,10 @@ enable_opaque_menu=$cf_dft_opaque_curses fi; -echo "$as_me:16667: result: $enable_opaque_menu" >&5 +echo "$as_me:16670: result: $enable_opaque_menu" >&5 echo "${ECHO_T}$enable_opaque_menu" >&6 -echo "$as_me:16670: checking whether panel library structures should be opaque" >&5 +echo "$as_me:16673: 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. @@ -16684,7 +16687,7 @@ enable_opaque_panel=$cf_dft_opaque_curses fi; -echo "$as_me:16687: result: $enable_opaque_panel" >&5 +echo "$as_me:16690: result: $enable_opaque_panel" >&5 echo "${ECHO_T}$enable_opaque_panel" >&6 NCURSES_OPAQUE=0; test "$enable_opaque_curses" = yes && NCURSES_OPAQUE=1 @@ -16694,7 +16697,7 @@ ### Allow using a different wrap-prefix if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then - echo "$as_me:16697: checking for prefix used to wrap public variables" >&5 + echo "$as_me:16700: 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. @@ -16704,7 +16707,7 @@ else NCURSES_WRAP_PREFIX=_nc_ fi; - echo "$as_me:16707: result: $NCURSES_WRAP_PREFIX" >&5 + echo "$as_me:16710: result: $NCURSES_WRAP_PREFIX" >&5 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6 else NCURSES_WRAP_PREFIX=_nc_ @@ -16717,7 +16720,7 @@ ############################################################################### # These options are relatively safe to experiment with. -echo "$as_me:16720: checking if you want all development code" >&5 +echo "$as_me:16723: 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. @@ -16727,11 +16730,11 @@ else with_develop=no fi; -echo "$as_me:16730: result: $with_develop" >&5 +echo "$as_me:16733: result: $with_develop" >&5 echo "${ECHO_T}$with_develop" >&6 ### use option --enable-check-size to detect screensize with CPR -echo "$as_me:16734: checking if you want to check screensize of serial terminals" >&5 +echo "$as_me:16737: 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. @@ -16741,7 +16744,7 @@ else enable_check_size=$with_develop fi; -echo "$as_me:16744: result: $enable_check_size" >&5 +echo "$as_me:16747: result: $enable_check_size" >&5 echo "${ECHO_T}$enable_check_size" >&6 test "x$enable_check_size" = xyes && cat >>confdefs.h <<\EOF @@ -16749,7 +16752,7 @@ EOF ### use option --enable-hard-tabs to turn on use of hard-tabs optimize -echo "$as_me:16752: checking if you want hard-tabs code" >&5 +echo "$as_me:16755: 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. @@ -16759,7 +16762,7 @@ else enable_hard_tabs=$with_develop fi; -echo "$as_me:16762: result: $enable_hard_tabs" >&5 +echo "$as_me:16765: result: $enable_hard_tabs" >&5 echo "${ECHO_T}$enable_hard_tabs" >&6 test "x$enable_hard_tabs" = xyes && cat >>confdefs.h <<\EOF @@ -16767,7 +16770,7 @@ EOF ### use option --enable-xmc-glitch to turn on use of magic-cookie optimize -echo "$as_me:16770: checking if you want limited support for xmc" >&5 +echo "$as_me:16773: 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. @@ -16777,7 +16780,7 @@ else enable_xmc_glitch=$with_develop fi; -echo "$as_me:16780: result: $enable_xmc_glitch" >&5 +echo "$as_me:16783: result: $enable_xmc_glitch" >&5 echo "${ECHO_T}$enable_xmc_glitch" >&6 test "x$enable_xmc_glitch" = xyes && cat >>confdefs.h <<\EOF @@ -16787,7 +16790,7 @@ ############################################################################### # These are just experimental, probably should not be in a package: -echo "$as_me:16790: checking if you do not want to assume colors are white-on-black" >&5 +echo "$as_me:16793: 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. @@ -16797,7 +16800,7 @@ else with_assumed_color=yes fi; -echo "$as_me:16800: result: $with_assumed_color" >&5 +echo "$as_me:16803: result: $with_assumed_color" >&5 echo "${ECHO_T}$with_assumed_color" >&6 test "x$with_assumed_color" = xyes && cat >>confdefs.h <<\EOF @@ -16805,7 +16808,7 @@ EOF ### use option --enable-hashmap to turn on use of hashmap scrolling logic -echo "$as_me:16808: checking if you want hashmap scrolling-optimization code" >&5 +echo "$as_me:16811: 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. @@ -16815,7 +16818,7 @@ else with_hashmap=yes fi; -echo "$as_me:16818: result: $with_hashmap" >&5 +echo "$as_me:16821: result: $with_hashmap" >&5 echo "${ECHO_T}$with_hashmap" >&6 test "x$with_hashmap" = xyes && cat >>confdefs.h <<\EOF @@ -16823,7 +16826,7 @@ EOF ### use option --enable-colorfgbg to turn on use of $COLORFGBG environment -echo "$as_me:16826: checking if you want colorfgbg code" >&5 +echo "$as_me:16829: 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. @@ -16833,7 +16836,7 @@ else with_colorfgbg=no fi; -echo "$as_me:16836: result: $with_colorfgbg" >&5 +echo "$as_me:16839: result: $with_colorfgbg" >&5 echo "${ECHO_T}$with_colorfgbg" >&6 test "x$with_colorfgbg" = xyes && cat >>confdefs.h <<\EOF @@ -16841,7 +16844,7 @@ EOF ### use option --enable-fvisibility to turn on use of gcc-specific feature -echo "$as_me:16844: checking if you want to use gcc -fvisibility option" >&5 +echo "$as_me:16847: 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. @@ -16851,14 +16854,14 @@ else cf_with_fvisibility=no fi; -echo "$as_me:16854: result: $cf_with_fvisibility" >&5 +echo "$as_me:16857: 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:16861: checking if $CC -fvisibility=hidden option works" >&5 +echo "$as_me:16864: 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 @@ -16867,7 +16870,7 @@ cf_save_cflags="$CFLAGS" CFLAGS="$CFLAGS -fvisibility=hidden" cat >"conftest.$ac_ext" <<_ACEOF -#line 16870 "configure" +#line 16873 "configure" #include "confdefs.h" __attribute__ ((visibility("default"))) int somefunc() {return 42;} @@ -16883,16 +16886,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:16886: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16889: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16889: \$? = $ac_status" >&5 + echo "$as_me:16892: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:16892: \"$ac_try\"") >&5 + { (eval echo "$as_me:16895: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16895: \$? = $ac_status" >&5 + echo "$as_me:16898: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fvisibility_hidden=yes else @@ -16904,7 +16907,7 @@ CFLAGS=$cf_save_cflags fi -echo "$as_me:16907: result: $cf_cv_fvisibility_hidden" >&5 +echo "$as_me:16910: result: $cf_cv_fvisibility_hidden" >&5 echo "${ECHO_T}$cf_cv_fvisibility_hidden" >&6 if test "x$cf_cv_fvisibility_hidden" = xyes @@ -17019,7 +17022,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_main_return="return" -echo "$as_me:17022: checking if $CXX -fvisibility=hidden option works" >&5 +echo "$as_me:17025: 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 @@ -17028,7 +17031,7 @@ cf_save_cflags="$CXXFLAGS" CXXFLAGS="$CXXFLAGS -fvisibility=hidden" cat >"conftest.$ac_ext" <<_ACEOF -#line 17031 "configure" +#line 17034 "configure" #include "confdefs.h" __attribute__ ((visibility("default"))) int somefunc() {return 42;} @@ -17044,16 +17047,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:17047: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17050: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17050: \$? = $ac_status" >&5 + echo "$as_me:17053: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:17053: \"$ac_try\"") >&5 + { (eval echo "$as_me:17056: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17056: \$? = $ac_status" >&5 + echo "$as_me:17059: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fvisibility_hidden2=yes else @@ -17065,7 +17068,7 @@ CXXFLAGS=$cf_save_cflags fi -echo "$as_me:17068: result: $cf_cv_fvisibility_hidden2" >&5 +echo "$as_me:17071: result: $cf_cv_fvisibility_hidden2" >&5 echo "${ECHO_T}$cf_cv_fvisibility_hidden2" >&6 if test "x$cf_cv_fvisibility_hidden2" = xyes @@ -17188,7 +17191,7 @@ fi ### use option --enable-interop to turn on use of bindings used for interop -echo "$as_me:17191: checking if you want interop bindings" >&5 +echo "$as_me:17194: 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. @@ -17198,13 +17201,13 @@ else with_exp_interop=$cf_dft_interop fi; -echo "$as_me:17201: result: $with_exp_interop" >&5 +echo "$as_me:17204: 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:17207: checking if you want experimental safe-sprintf code" >&5 +echo "$as_me:17210: 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. @@ -17214,13 +17217,13 @@ else with_safe_sprintf=no fi; -echo "$as_me:17217: result: $with_safe_sprintf" >&5 +echo "$as_me:17220: 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:17223: checking if you want to experiment without scrolling-hints code" >&5 +echo "$as_me:17226: 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. @@ -17230,7 +17233,7 @@ else with_scroll_hints=yes fi; -echo "$as_me:17233: result: $with_scroll_hints" >&5 +echo "$as_me:17236: result: $with_scroll_hints" >&5 echo "${ECHO_T}$with_scroll_hints" >&6 test "x$with_scroll_hints" = xyes && cat >>confdefs.h <<\EOF @@ -17239,7 +17242,7 @@ fi -echo "$as_me:17242: checking if you want wgetch-events code" >&5 +echo "$as_me:17245: 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. @@ -17249,7 +17252,7 @@ else with_wgetch_events=no fi; -echo "$as_me:17252: result: $with_wgetch_events" >&5 +echo "$as_me:17255: result: $with_wgetch_events" >&5 echo "${ECHO_T}$with_wgetch_events" >&6 if test "x$with_wgetch_events" = xyes ; then @@ -17264,7 +17267,7 @@ case "$cf_cv_system_name" in (*mingw32*|*mingw64*|*-msvc*) - echo "$as_me:17267: checking if you want experimental-Windows driver" >&5 + echo "$as_me:17270: 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. @@ -17274,7 +17277,7 @@ else with_exp_win32=no fi; - echo "$as_me:17277: result: $with_exp_win32" >&5 + echo "$as_me:17280: result: $with_exp_win32" >&5 echo "${ECHO_T}$with_exp_win32" >&6 if test "x$with_exp_win32" = xyes then @@ -17300,7 +17303,7 @@ ### use option --disable-echo to suppress full display compiling commands -echo "$as_me:17303: checking if you want to see long compiling messages" >&5 +echo "$as_me:17306: 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. @@ -17334,7 +17337,7 @@ ECHO_CC='' fi; -echo "$as_me:17337: result: $enableval" >&5 +echo "$as_me:17340: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "x$enable_echo" = xyes; then @@ -17347,7 +17350,7 @@ # --disable-stripping is used for debugging -echo "$as_me:17350: checking if you want to install stripped executables" >&5 +echo "$as_me:17353: 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. @@ -17364,7 +17367,7 @@ enable_stripping=yes fi; -echo "$as_me:17367: result: $enable_stripping" >&5 +echo "$as_me:17370: result: $enable_stripping" >&5 echo "${ECHO_T}$enable_stripping" >&6 if test "$enable_stripping" = yes @@ -17375,7 +17378,7 @@ fi : "${INSTALL:=install}" -echo "$as_me:17378: checking if install accepts -p option" >&5 +echo "$as_me:17381: 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 @@ -17406,10 +17409,10 @@ rm -rf ./conftest* fi -echo "$as_me:17409: result: $cf_cv_install_p" >&5 +echo "$as_me:17412: result: $cf_cv_install_p" >&5 echo "${ECHO_T}$cf_cv_install_p" >&6 -echo "$as_me:17412: checking if install needs to be told about ownership" >&5 +echo "$as_me:17415: 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) @@ -17420,7 +17423,7 @@ ;; esac -echo "$as_me:17423: result: $with_install_o" >&5 +echo "$as_me:17426: result: $with_install_o" >&5 echo "${ECHO_T}$with_install_o" >&6 if test "x$with_install_o" = xyes then @@ -17431,7 +17434,7 @@ if test -n "$INSTALL_OPT_S" then - echo "$as_me:17434: checking if you want to specify strip-program" >&5 + echo "$as_me:17437: 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. @@ -17441,11 +17444,11 @@ else with_strip_program=no fi; - echo "$as_me:17444: result: $with_strip_program" >&5 + echo "$as_me:17447: result: $with_strip_program" >&5 echo "${ECHO_T}$with_strip_program" >&6 if test "$with_strip_program" != no then - echo "$as_me:17448: checking if strip-program is supported with this installer" >&5 + echo "$as_me:17451: 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 @@ -17466,11 +17469,11 @@ done fi fi - echo "$as_me:17469: result: $check_install_strip" >&5 + echo "$as_me:17472: result: $check_install_strip" >&5 echo "${ECHO_T}$check_install_strip" >&6 case "$check_install_strip" in (no) - { echo "$as_me:17473: WARNING: $cf_install_program does not support strip program option" >&5 + { echo "$as_me:17476: 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 ;; @@ -17485,7 +17488,7 @@ chmod +x "$INSTALL" test -n "$verbose" && echo " created $INSTALL" 1>&6 -echo "${as_me:-configure}:17488: testing created $INSTALL ..." 1>&5 +echo "${as_me:-configure}:17491: testing created $INSTALL ..." 1>&5 ;; (option) @@ -17511,7 +17514,7 @@ ### use option --enable-warnings to turn on all gcc warnings -echo "$as_me:17514: checking if you want to use C11 _Noreturn feature" >&5 +echo "$as_me:17517: 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. @@ -17528,17 +17531,17 @@ enable_stdnoreturn=no fi; -echo "$as_me:17531: result: $enable_stdnoreturn" >&5 +echo "$as_me:17534: result: $enable_stdnoreturn" >&5 echo "${ECHO_T}$enable_stdnoreturn" >&6 if test $enable_stdnoreturn = yes; then -echo "$as_me:17535: checking for C11 _Noreturn feature" >&5 +echo "$as_me:17538: 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 17541 "configure" +#line 17544 "configure" #include "confdefs.h" $ac_includes_default @@ -17554,16 +17557,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17557: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17560: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17560: \$? = $ac_status" >&5 + echo "$as_me:17563: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17563: \"$ac_try\"") >&5 + { (eval echo "$as_me:17566: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17566: \$? = $ac_status" >&5 + echo "$as_me:17569: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_c11_noreturn=yes else @@ -17574,7 +17577,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:17577: result: $cf_cv_c11_noreturn" >&5 +echo "$as_me:17580: result: $cf_cv_c11_noreturn" >&5 echo "${ECHO_T}$cf_cv_c11_noreturn" >&6 else cf_cv_c11_noreturn=no, @@ -17630,16 +17633,16 @@ then test -n "$verbose" && echo " repairing CFLAGS: $CFLAGS" 1>&6 -echo "${as_me:-configure}:17633: testing repairing CFLAGS: $CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17636: testing repairing CFLAGS: $CFLAGS ..." 1>&5 CFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $CFLAGS" 1>&6 -echo "${as_me:-configure}:17638: testing ... fixed $CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17641: testing ... fixed $CFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:17642: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17645: testing ... extra $EXTRA_CFLAGS ..." 1>&5 fi ;; @@ -17678,16 +17681,16 @@ then test -n "$verbose" && echo " repairing CPPFLAGS: $CPPFLAGS" 1>&6 -echo "${as_me:-configure}:17681: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:17684: testing repairing CPPFLAGS: $CPPFLAGS ..." 1>&5 CPPFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $CPPFLAGS" 1>&6 -echo "${as_me:-configure}:17686: testing ... fixed $CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:17689: testing ... fixed $CPPFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:17690: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17693: testing ... extra $EXTRA_CFLAGS ..." 1>&5 fi ;; @@ -17726,23 +17729,23 @@ then test -n "$verbose" && echo " repairing LDFLAGS: $LDFLAGS" 1>&6 -echo "${as_me:-configure}:17729: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:17732: testing repairing LDFLAGS: $LDFLAGS ..." 1>&5 LDFLAGS="$cf_temp_flags" test -n "$verbose" && echo " ... fixed $LDFLAGS" 1>&6 -echo "${as_me:-configure}:17734: testing ... fixed $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:17737: testing ... fixed $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ... extra $EXTRA_CFLAGS" 1>&6 -echo "${as_me:-configure}:17738: testing ... extra $EXTRA_CFLAGS ..." 1>&5 +echo "${as_me:-configure}:17741: testing ... extra $EXTRA_CFLAGS ..." 1>&5 fi ;; esac fi -echo "$as_me:17745: checking if you want to turn on gcc warnings" >&5 +echo "$as_me:17748: 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. @@ -17759,7 +17762,7 @@ enable_warnings=no fi; -echo "$as_me:17762: result: $enable_warnings" >&5 +echo "$as_me:17765: result: $enable_warnings" >&5 echo "${ECHO_T}$enable_warnings" >&6 if test "$enable_warnings" = "yes" then @@ -17783,10 +17786,10 @@ done cat >"conftest.$ac_ext" <<_ACEOF -#line 17786 "configure" +#line 17789 "configure" #include "confdefs.h" -#include +$ac_includes_default #include int @@ -17798,32 +17801,32 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17801: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17804: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17804: \$? = $ac_status" >&5 + echo "$as_me:17807: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17807: \"$ac_try\"") >&5 + { (eval echo "$as_me:17810: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17810: \$? = $ac_status" >&5 + echo "$as_me:17813: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then -echo "$as_me:17813: checking for X11/Xt const-feature" >&5 +echo "$as_me:17816: 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 17820 "configure" +#line 17823 "configure" #include "confdefs.h" #undef _CONST_X_STRING #define _CONST_X_STRING /* X11R7.8 (perhaps) */ #undef XTSTRINGDEFINES /* X11R5 and later */ -#include +$ac_includes_default #include int @@ -17835,16 +17838,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:17838: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17841: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17841: \$? = $ac_status" >&5 + echo "$as_me:17844: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:17844: \"$ac_try\"") >&5 + { (eval echo "$as_me:17847: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17847: \$? = $ac_status" >&5 + echo "$as_me:17850: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_const_x_string=no @@ -17859,7 +17862,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:17862: result: $cf_cv_const_x_string" >&5 +echo "$as_me:17865: result: $cf_cv_const_x_string" >&5 echo "${ECHO_T}$cf_cv_const_x_string" >&6 LIBS="$cf_save_LIBS_CF_CONST_X_STRING" @@ -17888,8 +17891,8 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi cat > "conftest.$ac_ext" <&5 + { echo "$as_me:17910: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall" @@ -17920,12 +17923,12 @@ wd981 do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:17923: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:17926: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17926: \$? = $ac_status" >&5 + echo "$as_me:17929: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:17928: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:17931: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -17933,7 +17936,7 @@ CFLAGS="$cf_save_CFLAGS" elif test "$GCC" = yes && test "$GCC_VERSION" != "unknown" then - { echo "$as_me:17936: checking for $CC warning options..." >&5 + { echo "$as_me:17939: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" cf_warn_CONST="" @@ -17956,12 +17959,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:17959: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:17962: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17962: \$? = $ac_status" >&5 + echo "$as_me:17965: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:17964: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:17967: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case "$cf_opt" in (Winline) @@ -17969,7 +17972,7 @@ ([34].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me:-configure}:17972: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:17975: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -17979,7 +17982,7 @@ ([12].*) test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 -echo "${as_me:-configure}:17982: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 +echo "${as_me:-configure}:17985: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 continue;; esac @@ -18012,10 +18015,10 @@ EOF if test "$GCC" = yes then - { echo "$as_me:18015: checking for $CC __attribute__ directives..." >&5 + { echo "$as_me:18018: 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" @@ -18065,12 +18068,12 @@ ;; esac - if { (eval echo "$as_me:18068: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:18071: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18071: \$? = $ac_status" >&5 + echo "$as_me:18074: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:18073: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:18076: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h case "$cf_attribute" in @@ -18142,12 +18145,12 @@ if test "$GCC" = yes ; then case "$host_os" in (linux*|gnu*) - echo "$as_me:18145: checking if this is really Intel C++ compiler" >&5 + echo "$as_me:18148: 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 18150 "configure" +#line 18153 "configure" #include "confdefs.h" int @@ -18164,16 +18167,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18167: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18170: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18170: \$? = $ac_status" >&5 + echo "$as_me:18173: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18173: \"$ac_try\"") >&5 + { (eval echo "$as_me:18176: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18176: \$? = $ac_status" >&5 + echo "$as_me:18179: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then INTEL_CPLUSPLUS=yes cf_save_CFLAGS="$cf_save_CFLAGS -we147" @@ -18184,7 +18187,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" CXXFLAGS="$cf_save_CFLAGS" - echo "$as_me:18187: result: $INTEL_CPLUSPLUS" >&5 + echo "$as_me:18190: result: $INTEL_CPLUSPLUS" >&5 echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6 ;; esac @@ -18193,11 +18196,11 @@ CLANG_CPLUSPLUS=no if test "$GCC" = yes ; then - echo "$as_me:18196: checking if this is really Clang C++ compiler" >&5 + echo "$as_me:18199: 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 18200 "configure" +#line 18203 "configure" #include "confdefs.h" int @@ -18214,16 +18217,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:18217: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18220: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18220: \$? = $ac_status" >&5 + echo "$as_me:18223: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:18223: \"$ac_try\"") >&5 + { (eval echo "$as_me:18226: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18226: \$? = $ac_status" >&5 + echo "$as_me:18229: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then CLANG_CPLUSPLUS=yes @@ -18233,7 +18236,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" CXXFLAGS="$cf_save_CFLAGS" - echo "$as_me:18236: result: $CLANG_CPLUSPLUS" >&5 + echo "$as_me:18239: result: $CLANG_CPLUSPLUS" >&5 echo "${ECHO_T}$CLANG_CPLUSPLUS" >&6 fi @@ -18242,30 +18245,30 @@ if test "x$CLANG_CPLUSPLUS" = "xyes" ; then case "$CC" in (c[1-9][0-9]|*/c[1-9][0-9]) - { echo "$as_me:18245: WARNING: replacing broken compiler alias $CC" >&5 + { echo "$as_me:18248: 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:18252: checking version of $CC" >&5 + echo "$as_me:18255: 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:18256: result: $CLANG_VERSION" >&5 + echo "$as_me:18259: 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:18263: checking if option $cf_clang_opt works" >&5 + echo "$as_me:18266: 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 18268 "configure" +#line 18271 "configure" #include "confdefs.h" #include @@ -18279,16 +18282,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18282: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18285: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18285: \$? = $ac_status" >&5 + echo "$as_me:18288: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18288: \"$ac_try\"") >&5 + { (eval echo "$as_me:18291: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18291: \$? = $ac_status" >&5 + echo "$as_me:18294: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_clang_optok=yes @@ -18299,13 +18302,13 @@ cf_clang_optok=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:18302: result: $cf_clang_optok" >&5 + echo "$as_me:18305: 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}:18308: testing adding option $cf_clang_opt ..." 1>&5 +echo "${as_me:-configure}:18311: testing adding option $cf_clang_opt ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_clang_opt" @@ -18322,7 +18325,7 @@ ac_main_return="return" cat > conftest.$ac_ext <&5 + { echo "$as_me:18346: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CXXFLAGS="$CXXFLAGS" EXTRA_CXXFLAGS="-Wall" @@ -18357,12 +18360,12 @@ wd981 do CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt" - if { (eval echo "$as_me:18360: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:18363: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18363: \$? = $ac_status" >&5 + echo "$as_me:18366: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:18365: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:18368: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt" fi @@ -18371,7 +18374,7 @@ elif test "$GXX" = yes then - { echo "$as_me:18374: checking for $CXX warning options..." >&5 + { echo "$as_me:18377: checking for $CXX warning options..." >&5 echo "$as_me: checking for $CXX warning options..." >&6;} cf_save_CXXFLAGS="$CXXFLAGS" EXTRA_CXXFLAGS="-W -Wall" @@ -18401,16 +18404,16 @@ Wundef $cf_gxx_extra_warnings Wno-unused do CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt" - if { (eval echo "$as_me:18404: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:18407: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18407: \$? = $ac_status" >&5 + echo "$as_me:18410: \$? = $ac_status" >&5 (exit "$ac_status"); }; then - test -n "$verbose" && echo "$as_me:18409: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:18412: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt" else - test -n "$verbose" && echo "$as_me:18413: result: ... no -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:18416: result: ... no -$cf_opt" >&5 echo "${ECHO_T}... no -$cf_opt" >&6 fi done @@ -18428,7 +18431,7 @@ fi fi -echo "$as_me:18431: checking if you want to work around bogus compiler/loader warnings" >&5 +echo "$as_me:18434: 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. @@ -18438,7 +18441,7 @@ else enable_string_hacks=no fi; -echo "$as_me:18441: result: $enable_string_hacks" >&5 +echo "$as_me:18444: result: $enable_string_hacks" >&5 echo "${ECHO_T}$enable_string_hacks" >&6 if test "x$enable_string_hacks" = "xyes"; then @@ -18447,15 +18450,15 @@ #define USE_STRING_HACKS 1 EOF - { echo "$as_me:18450: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5 + { echo "$as_me:18453: 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:18452: checking for strlcat" >&5 + echo "$as_me:18455: 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 18458 "configure" +#line 18461 "configure" #include "confdefs.h" #define strlcat autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18486,16 +18489,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18489: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18492: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18492: \$? = $ac_status" >&5 + echo "$as_me:18495: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18495: \"$ac_try\"") >&5 + { (eval echo "$as_me:18498: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18498: \$? = $ac_status" >&5 + echo "$as_me:18501: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_strlcat=yes else @@ -18505,7 +18508,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18508: result: $ac_cv_func_strlcat" >&5 +echo "$as_me:18511: result: $ac_cv_func_strlcat" >&5 echo "${ECHO_T}$ac_cv_func_strlcat" >&6 if test "$ac_cv_func_strlcat" = yes; then @@ -18515,7 +18518,7 @@ else - echo "$as_me:18518: checking for strlcat in -lbsd" >&5 + echo "$as_me:18521: 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 @@ -18523,7 +18526,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 18526 "configure" +#line 18529 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18542,16 +18545,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18545: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18548: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18548: \$? = $ac_status" >&5 + echo "$as_me:18551: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18551: \"$ac_try\"") >&5 + { (eval echo "$as_me:18554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18554: \$? = $ac_status" >&5 + echo "$as_me:18557: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_bsd_strlcat=yes else @@ -18562,7 +18565,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18565: result: $ac_cv_lib_bsd_strlcat" >&5 +echo "$as_me:18568: 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 @@ -18585,23 +18588,23 @@ for ac_header in bsd/string.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:18588: checking for $ac_header" >&5 +echo "$as_me:18591: 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 18594 "configure" +#line 18597 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:18598: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:18601: \"$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:18604: \$? = $ac_status" >&5 + echo "$as_me:18607: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18620,7 +18623,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:18623: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:18626: 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:18647: 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 18650 "configure" +#line 18653 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -18678,16 +18681,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18681: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18684: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18684: \$? = $ac_status" >&5 + echo "$as_me:18687: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18687: \"$ac_try\"") >&5 + { (eval echo "$as_me:18690: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18690: \$? = $ac_status" >&5 + echo "$as_me:18693: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -18697,7 +18700,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:18700: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:18703: 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:18716: 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. @@ -18720,7 +18723,7 @@ else with_assertions=no fi; -echo "$as_me:18723: result: $with_assertions" >&5 +echo "$as_me:18726: result: $with_assertions" >&5 echo "${ECHO_T}$with_assertions" >&6 if test -n "$GCC" then @@ -18736,7 +18739,7 @@ ### use option --disable-leaks to suppress "permanent" leaks, for testing -echo "$as_me:18739: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:18742: 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. @@ -18758,7 +18761,7 @@ else with_dmalloc= fi; -echo "$as_me:18761: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:18764: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case ".$with_cflags" in @@ -18872,23 +18875,23 @@ esac if test "$with_dmalloc" = yes ; then - echo "$as_me:18875: checking for dmalloc.h" >&5 + echo "$as_me:18878: 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 18881 "configure" +#line 18884 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:18885: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:18888: \"$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:18891: \$? = $ac_status" >&5 + echo "$as_me:18894: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -18907,11 +18910,11 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:18910: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:18913: 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:18914: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:18917: 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 @@ -18919,7 +18922,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 18922 "configure" +#line 18925 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18938,16 +18941,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:18941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18944: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18944: \$? = $ac_status" >&5 + echo "$as_me:18947: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:18947: \"$ac_try\"") >&5 + { (eval echo "$as_me:18950: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18950: \$? = $ac_status" >&5 + echo "$as_me:18953: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -18958,7 +18961,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18961: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:18964: 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:18979: 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. @@ -18995,7 +18998,7 @@ else with_dbmalloc= fi; -echo "$as_me:18998: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:19001: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case ".$with_cflags" in @@ -19109,23 +19112,23 @@ esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:19112: checking for dbmalloc.h" >&5 + echo "$as_me:19115: 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 19118 "configure" +#line 19121 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:19122: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:19125: \"$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:19128: \$? = $ac_status" >&5 + echo "$as_me:19131: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -19144,11 +19147,11 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:19147: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:19150: 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:19151: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:19154: 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 @@ -19156,7 +19159,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19159 "configure" +#line 19162 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19175,16 +19178,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19178: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19181: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19181: \$? = $ac_status" >&5 + echo "$as_me:19184: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19184: \"$ac_try\"") >&5 + { (eval echo "$as_me:19187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19187: \$? = $ac_status" >&5 + echo "$as_me:19190: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -19195,7 +19198,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19198: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:19201: 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:19216: 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. @@ -19232,7 +19235,7 @@ else with_valgrind= fi; -echo "$as_me:19235: result: ${with_valgrind:-no}" >&5 +echo "$as_me:19238: result: ${with_valgrind:-no}" >&5 echo "${ECHO_T}${with_valgrind:-no}" >&6 case ".$with_cflags" in @@ -19345,7 +19348,7 @@ ;; esac -echo "$as_me:19348: checking if you want to perform memory-leak testing" >&5 +echo "$as_me:19351: 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. @@ -19356,7 +19359,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:19359: result: $with_no_leaks" >&5 +echo "$as_me:19362: result: $with_no_leaks" >&5 echo "${ECHO_T}$with_no_leaks" >&6 if test "$enable_leaks" = no ; then @@ -19408,7 +19411,7 @@ ;; esac -echo "$as_me:19411: checking whether to add trace feature to all models" >&5 +echo "$as_me:19414: 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. @@ -19418,7 +19421,7 @@ else cf_with_trace=$cf_all_traces fi; -echo "$as_me:19421: result: $cf_with_trace" >&5 +echo "$as_me:19424: result: $cf_with_trace" >&5 echo "${ECHO_T}$cf_with_trace" >&6 if test "x$cf_with_trace" = xyes ; then @@ -19438,7 +19441,7 @@ ADA_TRACE=FALSE fi -echo "$as_me:19441: checking if we want to use GNAT projects" >&5 +echo "$as_me:19444: 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. @@ -19455,7 +19458,7 @@ enable_gnat_projects=yes fi; -echo "$as_me:19458: result: $enable_gnat_projects" >&5 +echo "$as_me:19461: result: $enable_gnat_projects" >&5 echo "${ECHO_T}$enable_gnat_projects" >&6 ### Checks for libraries. @@ -19468,14 +19471,14 @@ CPPFLAGS="$CPPFLAGS -DWINVER=0x0501 -DWIN32_LEAN_AND_MEAN" fi -echo "$as_me:19471: checking if ssp library is needed" >&5 +echo "$as_me:19474: 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 19478 "configure" +#line 19481 "configure" #include "confdefs.h" #include @@ -19492,16 +19495,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19495: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19498: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19498: \$? = $ac_status" >&5 + echo "$as_me:19501: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19501: \"$ac_try\"") >&5 + { (eval echo "$as_me:19504: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19504: \$? = $ac_status" >&5 + echo "$as_me:19507: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libssp=no else @@ -19511,7 +19514,7 @@ cf_save_LIBS="$LIBS" LIBS="$LIBS -lssp" cat >"conftest.$ac_ext" <<_ACEOF -#line 19514 "configure" +#line 19517 "configure" #include "confdefs.h" #include @@ -19528,16 +19531,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19531: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19534: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19534: \$? = $ac_status" >&5 + echo "$as_me:19537: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19537: \"$ac_try\"") >&5 + { (eval echo "$as_me:19540: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19540: \$? = $ac_status" >&5 + echo "$as_me:19543: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libssp=yes else @@ -19551,7 +19554,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19554: result: $cf_cv_need_libssp" >&5 +echo "$as_me:19557: result: $cf_cv_need_libssp" >&5 echo "${ECHO_T}$cf_cv_need_libssp" >&6 if test "x$cf_cv_need_libssp" = xyes @@ -19580,14 +19583,14 @@ ;; esac -echo "$as_me:19583: checking if -lm needed for math functions" >&5 +echo "$as_me:19586: 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 19590 "configure" +#line 19593 "configure" #include "confdefs.h" #include @@ -19603,16 +19606,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19606: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19609: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19609: \$? = $ac_status" >&5 + echo "$as_me:19612: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19612: \"$ac_try\"") >&5 + { (eval echo "$as_me:19615: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19615: \$? = $ac_status" >&5 + echo "$as_me:19618: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libm=no else @@ -19622,7 +19625,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19625: result: $cf_cv_need_libm" >&5 +echo "$as_me:19628: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes @@ -19630,14 +19633,14 @@ cf_save_LIBS="$LIBS" LIBS="$LIBS -lm" - echo "$as_me:19633: checking if -lm is available for math functions" >&5 + echo "$as_me:19636: 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 19640 "configure" +#line 19643 "configure" #include "confdefs.h" #include @@ -19653,16 +19656,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19656: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19659: \$? = $ac_status" >&5 + echo "$as_me:19662: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19662: \"$ac_try\"") >&5 + { (eval echo "$as_me:19665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19665: \$? = $ac_status" >&5 + echo "$as_me:19668: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_libm=yes else @@ -19672,7 +19675,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:19675: result: $cf_cv_have_libm" >&5 +echo "$as_me:19678: result: $cf_cv_have_libm" >&5 echo "${ECHO_T}$cf_cv_have_libm" >&6 LIBS="$cf_save_LIBS" @@ -19694,13 +19697,13 @@ fi ### Checks for header files. -echo "$as_me:19697: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:19700: 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 19703 "configure" +#line 19706 "configure" #include "confdefs.h" #include #include @@ -19716,16 +19719,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:19719: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19722: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19722: \$? = $ac_status" >&5 + echo "$as_me:19725: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:19725: \"$ac_try\"") >&5 + { (eval echo "$as_me:19728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19728: \$? = $ac_status" >&5 + echo "$as_me:19731: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_header_time=yes else @@ -19735,7 +19738,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:19738: result: $ac_cv_header_time" >&5 +echo "$as_me:19741: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -19750,7 +19753,7 @@ case "$host_os" in (mingw*) # -lsystre -ltre -lintl -liconv - echo "$as_me:19753: checking for regcomp in -lsystre" >&5 + echo "$as_me:19756: 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 @@ -19758,7 +19761,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lsystre $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19761 "configure" +#line 19764 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19777,16 +19780,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19780: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19783: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19783: \$? = $ac_status" >&5 + echo "$as_me:19786: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19786: \"$ac_try\"") >&5 + { (eval echo "$as_me:19789: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19789: \$? = $ac_status" >&5 + echo "$as_me:19792: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_systre_regcomp=yes else @@ -19797,11 +19800,11 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19800: result: $ac_cv_lib_systre_regcomp" >&5 +echo "$as_me:19803: 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:19804: checking for libiconv_open in -liconv" >&5 + echo "$as_me:19807: 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 @@ -19809,7 +19812,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-liconv $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19812 "configure" +#line 19815 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19828,16 +19831,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19831: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19834: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19834: \$? = $ac_status" >&5 + echo "$as_me:19837: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19837: \"$ac_try\"") >&5 + { (eval echo "$as_me:19840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19840: \$? = $ac_status" >&5 + echo "$as_me:19843: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_iconv_libiconv_open=yes else @@ -19848,7 +19851,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19851: result: $ac_cv_lib_iconv_libiconv_open" >&5 +echo "$as_me:19854: 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 @@ -19870,7 +19873,7 @@ fi - echo "$as_me:19873: checking for libintl_gettext in -lintl" >&5 + echo "$as_me:19876: 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 @@ -19878,7 +19881,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19881 "configure" +#line 19884 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19897,16 +19900,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19900: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19903: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19903: \$? = $ac_status" >&5 + echo "$as_me:19906: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19906: \"$ac_try\"") >&5 + { (eval echo "$as_me:19909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19909: \$? = $ac_status" >&5 + echo "$as_me:19912: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_intl_libintl_gettext=yes else @@ -19917,7 +19920,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19920: result: $ac_cv_lib_intl_libintl_gettext" >&5 +echo "$as_me:19923: 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 @@ -19939,7 +19942,7 @@ fi - echo "$as_me:19942: checking for tre_regcomp in -ltre" >&5 + echo "$as_me:19945: 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 @@ -19947,7 +19950,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ltre $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 19950 "configure" +#line 19953 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19966,16 +19969,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:19969: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19972: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19972: \$? = $ac_status" >&5 + echo "$as_me:19975: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:19975: \"$ac_try\"") >&5 + { (eval echo "$as_me:19978: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19978: \$? = $ac_status" >&5 + echo "$as_me:19981: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_tre_tre_regcomp=yes else @@ -19986,7 +19989,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19989: result: $ac_cv_lib_tre_tre_regcomp" >&5 +echo "$as_me:19992: 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 @@ -20028,7 +20031,7 @@ else - echo "$as_me:20031: checking for regcomp in -lgnurx" >&5 + echo "$as_me:20034: 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 @@ -20036,7 +20039,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgnurx $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20039 "configure" +#line 20042 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20055,16 +20058,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20058: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20061: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20061: \$? = $ac_status" >&5 + echo "$as_me:20064: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20064: \"$ac_try\"") >&5 + { (eval echo "$as_me:20067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20067: \$? = $ac_status" >&5 + echo "$as_me:20070: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gnurx_regcomp=yes else @@ -20075,7 +20078,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20078: result: $ac_cv_lib_gnurx_regcomp" >&5 +echo "$as_me:20081: 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 @@ -20103,13 +20106,13 @@ ;; (*) cf_regex_libs="regex re" - echo "$as_me:20106: checking for regcomp" >&5 + echo "$as_me:20109: 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 20112 "configure" +#line 20115 "configure" #include "confdefs.h" #define regcomp autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20140,16 +20143,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20143: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20146: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20146: \$? = $ac_status" >&5 + echo "$as_me:20149: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20149: \"$ac_try\"") >&5 + { (eval echo "$as_me:20152: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20152: \$? = $ac_status" >&5 + echo "$as_me:20155: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_regcomp=yes else @@ -20159,7 +20162,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20162: result: $ac_cv_func_regcomp" >&5 +echo "$as_me:20165: 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 @@ -20168,7 +20171,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:20171: checking for regcomp in -l$cf_regex_lib" >&5 +echo "$as_me:20174: 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 @@ -20176,7 +20179,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_regex_lib $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20179 "configure" +#line 20182 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20195,16 +20198,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20198: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20201: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20201: \$? = $ac_status" >&5 + echo "$as_me:20204: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20204: \"$ac_try\"") >&5 + { (eval echo "$as_me:20207: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20207: \$? = $ac_status" >&5 + echo "$as_me:20210: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_Lib=yes" else @@ -20215,7 +20218,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20218: result: `eval echo '${'"$as_ac_Lib"'}'`" >&5 +echo "$as_me:20221: 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 @@ -20247,13 +20250,13 @@ esac if test "$cf_regex_func" = no ; then - echo "$as_me:20250: checking for compile" >&5 + echo "$as_me:20253: 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 20256 "configure" +#line 20259 "configure" #include "confdefs.h" #define compile autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20284,16 +20287,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20287: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20290: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20290: \$? = $ac_status" >&5 + echo "$as_me:20293: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20293: \"$ac_try\"") >&5 + { (eval echo "$as_me:20296: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20296: \$? = $ac_status" >&5 + echo "$as_me:20299: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_compile=yes else @@ -20303,13 +20306,13 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20306: result: $ac_cv_func_compile" >&5 +echo "$as_me:20309: 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:20312: checking for compile in -lgen" >&5 + echo "$as_me:20315: 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 @@ -20317,7 +20320,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 20320 "configure" +#line 20323 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20336,16 +20339,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20339: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20342: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20342: \$? = $ac_status" >&5 + echo "$as_me:20345: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20345: \"$ac_try\"") >&5 + { (eval echo "$as_me:20348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20348: \$? = $ac_status" >&5 + echo "$as_me:20351: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_gen_compile=yes else @@ -20356,7 +20359,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20359: result: $ac_cv_lib_gen_compile" >&5 +echo "$as_me:20362: 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 @@ -20384,11 +20387,11 @@ fi if test "$cf_regex_func" = no ; then - { echo "$as_me:20387: WARNING: cannot find regular expression library" >&5 + { echo "$as_me:20390: WARNING: cannot find regular expression library" >&5 echo "$as_me: WARNING: cannot find regular expression library" >&2;} fi -echo "$as_me:20391: checking for regular-expression headers" >&5 +echo "$as_me:20394: 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 @@ -20400,7 +20403,7 @@ for cf_regex_hdr in regexp.h regexpr.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 20403 "configure" +#line 20406 "configure" #include "confdefs.h" #include <$cf_regex_hdr> int @@ -20417,16 +20420,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20420: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20423: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20423: \$? = $ac_status" >&5 + echo "$as_me:20426: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20426: \"$ac_try\"") >&5 + { (eval echo "$as_me:20429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20429: \$? = $ac_status" >&5 + echo "$as_me:20432: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_regex_hdrs=$cf_regex_hdr @@ -20443,15 +20446,16 @@ for cf_regex_hdr in regex.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 20446 "configure" +#line 20449 "configure" #include "confdefs.h" #include +#include #include <$cf_regex_hdr> int main (void) { - regex_t *p = 0; + regex_t *p = NULL; int x = regcomp(p, "", 0); int y = regexec(p, "", 0, 0, 0); (void)x; @@ -20463,16 +20467,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20466: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20470: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20469: \$? = $ac_status" >&5 + echo "$as_me:20473: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20472: \"$ac_try\"") >&5 + { (eval echo "$as_me:20476: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20475: \$? = $ac_status" >&5 + echo "$as_me:20479: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_regex_hdrs=$cf_regex_hdr @@ -20488,11 +20492,11 @@ esac fi -echo "$as_me:20491: result: $cf_cv_regex_hdrs" >&5 +echo "$as_me:20495: result: $cf_cv_regex_hdrs" >&5 echo "${ECHO_T}$cf_cv_regex_hdrs" >&6 case "$cf_cv_regex_hdrs" in - (no) { echo "$as_me:20495: WARNING: no regular expression header found" >&5 + (no) { echo "$as_me:20499: WARNING: no regular expression header found" >&5 echo "$as_me: WARNING: no regular expression header found" >&2;} ;; (regex.h) cat >>confdefs.h <<\EOF @@ -20530,23 +20534,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:20533: checking for $ac_header" >&5 +echo "$as_me:20537: 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 20539 "configure" +#line 20543 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:20543: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:20547: \"$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:20549: \$? = $ac_status" >&5 + echo "$as_me:20553: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -20565,7 +20569,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:20568: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:20572: 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:20585: 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 20587 "configure" +#line 20591 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:20591: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:20595: \"$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:20597: \$? = $ac_status" >&5 + echo "$as_me:20601: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -20613,7 +20617,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:20616: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:20620: 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:20630: 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 @@ -20633,7 +20637,7 @@ for cf_header in stdio.h stdlib.h unistd.h getopt.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 20636 "configure" +#line 20640 "configure" #include "confdefs.h" #include <$cf_header> @@ -20646,16 +20650,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:20649: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20653: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20652: \$? = $ac_status" >&5 + echo "$as_me:20656: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:20655: \"$ac_try\"") >&5 + { (eval echo "$as_me:20659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20658: \$? = $ac_status" >&5 + echo "$as_me:20662: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_getopt_header=$cf_header break @@ -20667,7 +20671,7 @@ done fi -echo "$as_me:20670: result: $cf_cv_getopt_header" >&5 +echo "$as_me:20674: result: $cf_cv_getopt_header" >&5 echo "${ECHO_T}$cf_cv_getopt_header" >&6 if test "$cf_cv_getopt_header" != none ; then @@ -20684,14 +20688,14 @@ fi -echo "$as_me:20687: checking if external environ is declared" >&5 +echo "$as_me:20691: 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 20694 "configure" +#line 20698 "configure" #include "confdefs.h" $ac_includes_default @@ -20704,16 +20708,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:20707: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20711: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20710: \$? = $ac_status" >&5 + echo "$as_me:20714: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:20713: \"$ac_try\"") >&5 + { (eval echo "$as_me:20717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20716: \$? = $ac_status" >&5 + echo "$as_me:20720: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_environ=yes else @@ -20724,7 +20728,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:20727: result: $cf_cv_dcl_environ" >&5 +echo "$as_me:20731: result: $cf_cv_dcl_environ" >&5 echo "${ECHO_T}$cf_cv_dcl_environ" >&6 if test "$cf_cv_dcl_environ" = no ; then @@ -20739,14 +20743,14 @@ # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:20742: checking if external environ exists" >&5 +echo "$as_me:20746: 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 20749 "configure" +#line 20753 "configure" #include "confdefs.h" #undef environ @@ -20761,16 +20765,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20764: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20768: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20767: \$? = $ac_status" >&5 + echo "$as_me:20771: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20770: \"$ac_try\"") >&5 + { (eval echo "$as_me:20774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20773: \$? = $ac_status" >&5 + echo "$as_me:20777: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_environ=yes else @@ -20781,7 +20785,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20784: result: $cf_cv_have_environ" >&5 +echo "$as_me:20788: result: $cf_cv_have_environ" >&5 echo "${ECHO_T}$cf_cv_have_environ" >&6 if test "$cf_cv_have_environ" = yes ; then @@ -20794,13 +20798,13 @@ fi -echo "$as_me:20797: checking for getenv" >&5 +echo "$as_me:20801: 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 20803 "configure" +#line 20807 "configure" #include "confdefs.h" #define getenv autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20831,16 +20835,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20834: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20838: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20837: \$? = $ac_status" >&5 + echo "$as_me:20841: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20840: \"$ac_try\"") >&5 + { (eval echo "$as_me:20844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20843: \$? = $ac_status" >&5 + echo "$as_me:20847: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_getenv=yes else @@ -20850,19 +20854,19 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20853: result: $ac_cv_func_getenv" >&5 +echo "$as_me:20857: 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:20859: checking for $ac_func" >&5 +echo "$as_me:20863: 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 20865 "configure" +#line 20869 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -20893,16 +20897,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:20896: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20900: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20899: \$? = $ac_status" >&5 + echo "$as_me:20903: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:20902: \"$ac_try\"") >&5 + { (eval echo "$as_me:20906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20905: \$? = $ac_status" >&5 + echo "$as_me:20909: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -20912,7 +20916,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:20915: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:20919: 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:20929: 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 @@ -20932,7 +20936,7 @@ cf_cv_consistent_getenv=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 20935 "configure" +#line 20939 "configure" #include "confdefs.h" $ac_includes_default @@ -20976,7 +20980,7 @@ for (j = 0; environ[j]; ++j) { mynames[j] = str_alloc(environ[j]); equals = strchr(mynames[j], '='); - if (equals != 0) { + if (equals != NULL) { *equals++ = '\\0'; myvalues[j] = str_alloc(equals); } else { @@ -21037,15 +21041,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21040: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21044: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21043: \$? = $ac_status" >&5 + echo "$as_me:21047: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21045: \"$ac_try\"") >&5 + { (eval echo "$as_me:21049: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21048: \$? = $ac_status" >&5 + echo "$as_me:21052: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_consistent_getenv=yes else @@ -21058,7 +21062,7 @@ fi fi -echo "$as_me:21061: result: $cf_cv_consistent_getenv" >&5 +echo "$as_me:21065: result: $cf_cv_consistent_getenv" >&5 echo "${ECHO_T}$cf_cv_consistent_getenv" >&6 if test "x$cf_cv_consistent_getenv" = xno @@ -21073,18 +21077,18 @@ if test "x$cf_cv_consistent_getenv" = xno && \ test "x$cf_with_trace" = xyes then - { echo "$as_me:21076: WARNING: The NCURSES_TRACE environment variable is not supported with this configuration" >&5 + { echo "$as_me:21080: 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:21080: checking if sys/time.h works with sys/select.h" >&5 +echo "$as_me:21084: 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 21087 "configure" +#line 21091 "configure" #include "confdefs.h" #include @@ -21104,16 +21108,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21107: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21111: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21110: \$? = $ac_status" >&5 + echo "$as_me:21114: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21113: \"$ac_try\"") >&5 + { (eval echo "$as_me:21117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21116: \$? = $ac_status" >&5 + echo "$as_me:21120: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sys_time_select=yes else @@ -21125,7 +21129,7 @@ fi -echo "$as_me:21128: result: $cf_cv_sys_time_select" >&5 +echo "$as_me:21132: 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 @@ -21140,13 +21144,13 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_main_return="return" -echo "$as_me:21143: checking for an ANSI C-conforming const" >&5 +echo "$as_me:21147: 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 21149 "configure" +#line 21153 "configure" #include "confdefs.h" int @@ -21208,16 +21212,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21211: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21215: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21214: \$? = $ac_status" >&5 + echo "$as_me:21218: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21217: \"$ac_try\"") >&5 + { (eval echo "$as_me:21221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21220: \$? = $ac_status" >&5 + echo "$as_me:21224: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_const=yes else @@ -21227,7 +21231,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:21230: result: $ac_cv_c_const" >&5 +echo "$as_me:21234: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then @@ -21237,7 +21241,7 @@ fi -echo "$as_me:21240: checking for inline" >&5 +echo "$as_me:21244: 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 @@ -21245,7 +21249,7 @@ ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >"conftest.$ac_ext" <<_ACEOF -#line 21248 "configure" +#line 21252 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo (void) {return 0; } @@ -21254,16 +21258,16 @@ _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21257: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21261: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21260: \$? = $ac_status" >&5 + echo "$as_me:21264: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21263: \"$ac_try\"") >&5 + { (eval echo "$as_me:21267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21266: \$? = $ac_status" >&5 + echo "$as_me:21270: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -21274,7 +21278,7 @@ done fi -echo "$as_me:21277: result: $ac_cv_c_inline" >&5 +echo "$as_me:21281: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -21300,7 +21304,7 @@ : elif test "$GCC" = yes then - echo "$as_me:21303: checking if $CC supports options to tune inlining" >&5 + echo "$as_me:21307: 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 @@ -21309,7 +21313,7 @@ cf_save_CFLAGS=$CFLAGS CFLAGS="$CFLAGS --param max-inline-insns-single=1200" cat >"conftest.$ac_ext" <<_ACEOF -#line 21312 "configure" +#line 21316 "configure" #include "confdefs.h" inline int foo(void) { return 1; } int @@ -21321,16 +21325,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21324: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21328: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21327: \$? = $ac_status" >&5 + echo "$as_me:21331: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21330: \"$ac_try\"") >&5 + { (eval echo "$as_me:21334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21333: \$? = $ac_status" >&5 + echo "$as_me:21337: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_gcc_inline=yes else @@ -21342,7 +21346,7 @@ CFLAGS=$cf_save_CFLAGS fi -echo "$as_me:21345: result: $cf_cv_gcc_inline" >&5 +echo "$as_me:21349: result: $cf_cv_gcc_inline" >&5 echo "${ECHO_T}$cf_cv_gcc_inline" >&6 if test "$cf_cv_gcc_inline" = yes ; then @@ -21448,7 +21452,7 @@ fi fi -echo "$as_me:21451: checking for signal global datatype" >&5 +echo "$as_me:21455: 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 @@ -21460,7 +21464,7 @@ "int" do cat >"conftest.$ac_ext" <<_ACEOF -#line 21463 "configure" +#line 21467 "configure" #include "confdefs.h" #include @@ -21484,16 +21488,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21487: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21491: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21490: \$? = $ac_status" >&5 + echo "$as_me:21494: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21493: \"$ac_try\"") >&5 + { (eval echo "$as_me:21497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21496: \$? = $ac_status" >&5 + echo "$as_me:21500: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sig_atomic_t=$cf_type else @@ -21507,7 +21511,7 @@ fi -echo "$as_me:21510: result: $cf_cv_sig_atomic_t" >&5 +echo "$as_me:21514: 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:21523: 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 @@ -21526,7 +21530,7 @@ cf_cv_typeof_chtype=long else cat >"conftest.$ac_ext" <<_ACEOF -#line 21529 "configure" +#line 21533 "configure" #include "confdefs.h" $ac_includes_default @@ -21534,7 +21538,7 @@ int main(void) { FILE *fp = fopen("cf_test.out", "w"); - if (fp != 0) { + if (fp != NULL) { char *result = "long"; if (sizeof(unsigned long) > sizeof(unsigned int)) { int n; @@ -21561,15 +21565,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21564: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21568: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21567: \$? = $ac_status" >&5 + echo "$as_me:21571: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21569: \"$ac_try\"") >&5 + { (eval echo "$as_me:21573: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21572: \$? = $ac_status" >&5 + echo "$as_me:21576: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_typeof_chtype=`cat cf_test.out` else @@ -21584,7 +21588,7 @@ fi -echo "$as_me:21587: result: $cf_cv_typeof_chtype" >&5 +echo "$as_me:21591: result: $cf_cv_typeof_chtype" >&5 echo "${ECHO_T}$cf_cv_typeof_chtype" >&6 cat >>confdefs.h <&5 +echo "$as_me:21603: 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 21606 "configure" +#line 21610 "configure" #include "confdefs.h" int @@ -21615,16 +21619,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21618: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21622: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21621: \$? = $ac_status" >&5 + echo "$as_me:21625: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21624: \"$ac_try\"") >&5 + { (eval echo "$as_me:21628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21627: \$? = $ac_status" >&5 + echo "$as_me:21631: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_unsigned_literals=yes else @@ -21636,7 +21640,7 @@ fi -echo "$as_me:21639: result: $cf_cv_unsigned_literals" >&5 +echo "$as_me:21643: result: $cf_cv_unsigned_literals" >&5 echo "${ECHO_T}$cf_cv_unsigned_literals" >&6 cf_cv_1UL="1" @@ -21652,14 +21656,14 @@ ### Checks for external-data -echo "$as_me:21655: checking if external errno is declared" >&5 +echo "$as_me:21659: 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 21662 "configure" +#line 21666 "configure" #include "confdefs.h" $ac_includes_default @@ -21673,16 +21677,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:21676: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21680: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21679: \$? = $ac_status" >&5 + echo "$as_me:21683: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:21682: \"$ac_try\"") >&5 + { (eval echo "$as_me:21686: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21685: \$? = $ac_status" >&5 + echo "$as_me:21689: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_dcl_errno=yes else @@ -21693,7 +21697,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:21696: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:21700: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -21708,14 +21712,14 @@ # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:21711: checking if external errno exists" >&5 +echo "$as_me:21715: 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 21718 "configure" +#line 21722 "configure" #include "confdefs.h" #undef errno @@ -21730,16 +21734,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21733: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21737: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21736: \$? = $ac_status" >&5 + echo "$as_me:21740: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21739: \"$ac_try\"") >&5 + { (eval echo "$as_me:21743: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21742: \$? = $ac_status" >&5 + echo "$as_me:21746: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_errno=yes else @@ -21750,7 +21754,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:21753: result: $cf_cv_have_errno" >&5 +echo "$as_me:21757: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -21763,7 +21767,7 @@ fi -echo "$as_me:21766: checking if data-only library module links" >&5 +echo "$as_me:21770: 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 @@ -21771,20 +21775,20 @@ rm -f conftest.a cat >conftest.$ac_ext <&5 + if { (eval echo "$as_me:21781: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21780: \$? = $ac_status" >&5 + echo "$as_me:21784: \$? = $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:21808: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21807: \$? = $ac_status" >&5 + echo "$as_me:21811: \$? = $ac_status" >&5 (exit "$ac_status"); }; then mv conftest.o func.o && \ ( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null @@ -21817,7 +21821,7 @@ cf_cv_link_dataonly=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 21820 "configure" +#line 21824 "configure" #include "confdefs.h" extern int testfunc(void); @@ -21828,15 +21832,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:21831: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21835: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21834: \$? = $ac_status" >&5 + echo "$as_me:21838: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:21836: \"$ac_try\"") >&5 + { (eval echo "$as_me:21840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21839: \$? = $ac_status" >&5 + echo "$as_me:21843: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_link_dataonly=yes else @@ -21851,7 +21855,7 @@ fi -echo "$as_me:21854: result: $cf_cv_link_dataonly" >&5 +echo "$as_me:21858: result: $cf_cv_link_dataonly" >&5 echo "${ECHO_T}$cf_cv_link_dataonly" >&6 if test "$cf_cv_link_dataonly" = no ; then @@ -21866,13 +21870,13 @@ ### Checks for library functions. cf_save_libs="$LIBS" -echo "$as_me:21869: checking for clock_gettime" >&5 +echo "$as_me:21873: 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 21875 "configure" +#line 21879 "configure" #include "confdefs.h" #define clock_gettime autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -21903,16 +21907,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21906: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21910: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21909: \$? = $ac_status" >&5 + echo "$as_me:21913: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21912: \"$ac_try\"") >&5 + { (eval echo "$as_me:21916: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21915: \$? = $ac_status" >&5 + echo "$as_me:21919: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_clock_gettime=yes else @@ -21922,12 +21926,12 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:21925: result: $ac_cv_func_clock_gettime" >&5 +echo "$as_me:21929: 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:21930: checking for clock_gettime in -lrt" >&5 + echo "$as_me:21934: 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 @@ -21935,7 +21939,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lrt $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 21938 "configure" +#line 21942 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21954,16 +21958,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:21957: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21960: \$? = $ac_status" >&5 + echo "$as_me:21964: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:21963: \"$ac_try\"") >&5 + { (eval echo "$as_me:21967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21966: \$? = $ac_status" >&5 + echo "$as_me:21970: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_rt_clock_gettime=yes else @@ -21974,7 +21978,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21977: result: $ac_cv_lib_rt_clock_gettime" >&5 +echo "$as_me:21981: 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" @@ -21986,14 +21990,14 @@ fi if test "$cf_cv_test_clock_gettime" = yes ; then -echo "$as_me:21989: checking if clock_gettime links" >&5 +echo "$as_me:21993: 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 21996 "configure" +#line 22000 "configure" #include "confdefs.h" $ac_includes_default @@ -22011,16 +22015,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22014: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22018: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22017: \$? = $ac_status" >&5 + echo "$as_me:22021: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22020: \"$ac_try\"") >&5 + { (eval echo "$as_me:22024: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22023: \$? = $ac_status" >&5 + echo "$as_me:22027: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_clock_gettime=yes else @@ -22031,7 +22035,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22034: result: $cf_cv_func_clock_gettime" >&5 +echo "$as_me:22038: result: $cf_cv_func_clock_gettime" >&5 echo "${ECHO_T}$cf_cv_func_clock_gettime" >&6 else cf_cv_func_clock_gettime=no @@ -22045,13 +22049,13 @@ EOF else -echo "$as_me:22048: checking for gettimeofday" >&5 +echo "$as_me:22052: 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 22054 "configure" +#line 22058 "configure" #include "confdefs.h" #define gettimeofday autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -22082,16 +22086,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22085: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22089: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22088: \$? = $ac_status" >&5 + echo "$as_me:22092: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22091: \"$ac_try\"") >&5 + { (eval echo "$as_me:22095: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22094: \$? = $ac_status" >&5 + echo "$as_me:22098: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_gettimeofday=yes else @@ -22101,7 +22105,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22104: result: $ac_cv_func_gettimeofday" >&5 +echo "$as_me:22108: result: $ac_cv_func_gettimeofday" >&5 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6 if test "$ac_cv_func_gettimeofday" = yes; then @@ -22111,7 +22115,7 @@ else -echo "$as_me:22114: checking for gettimeofday in -lbsd" >&5 +echo "$as_me:22118: 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 @@ -22119,7 +22123,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 22122 "configure" +#line 22126 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22138,16 +22142,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22141: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22144: \$? = $ac_status" >&5 + echo "$as_me:22148: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22147: \"$ac_try\"") >&5 + { (eval echo "$as_me:22151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22150: \$? = $ac_status" >&5 + echo "$as_me:22154: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_bsd_gettimeofday=yes else @@ -22158,7 +22162,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22161: result: $ac_cv_lib_bsd_gettimeofday" >&5 +echo "$as_me:22165: 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 @@ -22217,13 +22221,13 @@ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:22220: checking for $ac_func" >&5 +echo "$as_me:22224: 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 22226 "configure" +#line 22230 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -22254,16 +22258,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22257: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22260: \$? = $ac_status" >&5 + echo "$as_me:22264: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22263: \"$ac_try\"") >&5 + { (eval echo "$as_me:22267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22266: \$? = $ac_status" >&5 + echo "$as_me:22270: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -22273,7 +22277,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22276: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:22280: 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:22290: 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 22293 "configure" +#line 22297 "configure" #include "confdefs.h" #include @@ -22305,16 +22309,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22308: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22312: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22311: \$? = $ac_status" >&5 + echo "$as_me:22315: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22314: \"$ac_try\"") >&5 + { (eval echo "$as_me:22318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22317: \$? = $ac_status" >&5 + echo "$as_me:22321: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_PATH_TTYS=yes else @@ -22324,7 +22328,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:22327: result: $cf_cv_PATH_TTYS" >&5 +echo "$as_me:22331: result: $cf_cv_PATH_TTYS" >&5 echo "${ECHO_T}$cf_cv_PATH_TTYS" >&6 if test $cf_cv_PATH_TTYS = no @@ -22346,7 +22350,7 @@ if test $cf_cv_PATH_TTYS != no then - echo "$as_me:22349: checking if _PATH_TTYS file exists" >&5 + echo "$as_me:22353: 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 @@ -22356,7 +22360,7 @@ cf_cv_have_PATH_TTYS=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 22359 "configure" +#line 22363 "configure" #include "confdefs.h" $ac_includes_default @@ -22365,19 +22369,19 @@ int main(void) { FILE *fp = fopen(_PATH_TTYS, "r"); - ${cf_cv_main_return:-return} (fp == 0); + ${cf_cv_main_return:-return} (fp == NULL); } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22376: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22375: \$? = $ac_status" >&5 + echo "$as_me:22379: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22377: \"$ac_try\"") >&5 + { (eval echo "$as_me:22381: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22380: \$? = $ac_status" >&5 + echo "$as_me:22384: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_PATH_TTYS=yes else @@ -22389,7 +22393,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:22392: result: $cf_cv_have_PATH_TTYS" >&5 +echo "$as_me:22396: 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 @@ -22401,14 +22405,14 @@ #define HAVE_PATH_TTYS 1 EOF - echo "$as_me:22404: checking for getttynam" >&5 + echo "$as_me:22408: 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 22411 "configure" +#line 22415 "configure" #include "confdefs.h" #include int @@ -22420,16 +22424,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22423: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22427: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22426: \$? = $ac_status" >&5 + echo "$as_me:22430: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22429: \"$ac_try\"") >&5 + { (eval echo "$as_me:22433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22432: \$? = $ac_status" >&5 + echo "$as_me:22436: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_getttynam=yes else @@ -22439,7 +22443,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22442: result: $cf_cv_func_getttynam" >&5 +echo "$as_me:22446: 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 @@ -22449,7 +22453,7 @@ if test "x$ac_cv_func_getopt" = xno && \ test "x$cf_with_progs$cf_with_tests" != xnono; then - { { echo "$as_me:22452: error: getopt is required for building programs" >&5 + { { echo "$as_me:22456: error: getopt is required for building programs" >&5 echo "$as_me: error: getopt is required for building programs" >&2;} { (exit 1); exit 1; }; } fi @@ -22458,7 +22462,7 @@ then if test "x$ac_cv_func_vsnprintf" = xyes then - { echo "$as_me:22461: WARNING: will use vsnprintf instead of safe-sprintf option" >&5 + { echo "$as_me:22465: WARNING: will use vsnprintf instead of safe-sprintf option" >&5 echo "$as_me: WARNING: will use vsnprintf instead of safe-sprintf option" >&2;} else @@ -22471,14 +22475,14 @@ if test "x$with_getcap" = "xyes" ; then -echo "$as_me:22474: checking for terminal-capability database functions" >&5 +echo "$as_me:22478: 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 22481 "configure" +#line 22485 "configure" #include "confdefs.h" $ac_includes_default @@ -22498,16 +22502,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22501: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22505: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22504: \$? = $ac_status" >&5 + echo "$as_me:22508: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22507: \"$ac_try\"") >&5 + { (eval echo "$as_me:22511: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22510: \$? = $ac_status" >&5 + echo "$as_me:22514: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cgetent=yes else @@ -22518,7 +22522,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22521: result: $cf_cv_cgetent" >&5 +echo "$as_me:22525: result: $cf_cv_cgetent" >&5 echo "${ECHO_T}$cf_cv_cgetent" >&6 if test "$cf_cv_cgetent" = yes @@ -22528,14 +22532,14 @@ #define HAVE_BSD_CGETENT 1 EOF -echo "$as_me:22531: checking if cgetent uses const parameter" >&5 +echo "$as_me:22535: 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 22538 "configure" +#line 22542 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types-discards-qualifiers" @@ -22558,16 +22562,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22561: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22565: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22564: \$? = $ac_status" >&5 + echo "$as_me:22568: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22567: \"$ac_try\"") >&5 + { (eval echo "$as_me:22571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22570: \$? = $ac_status" >&5 + echo "$as_me:22574: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cgetent_const=yes else @@ -22578,7 +22582,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22581: result: $cf_cv_cgetent_const" >&5 +echo "$as_me:22585: result: $cf_cv_cgetent_const" >&5 echo "${ECHO_T}$cf_cv_cgetent_const" >&6 if test "$cf_cv_cgetent_const" = yes then @@ -22592,14 +22596,14 @@ fi -echo "$as_me:22595: checking for isascii" >&5 +echo "$as_me:22599: 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 22602 "configure" +#line 22606 "configure" #include "confdefs.h" #include int @@ -22611,16 +22615,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22614: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22617: \$? = $ac_status" >&5 + echo "$as_me:22621: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22620: \"$ac_try\"") >&5 + { (eval echo "$as_me:22624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22623: \$? = $ac_status" >&5 + echo "$as_me:22627: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_isascii=yes else @@ -22631,7 +22635,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22634: result: $cf_cv_have_isascii" >&5 +echo "$as_me:22638: result: $cf_cv_have_isascii" >&5 echo "${ECHO_T}$cf_cv_have_isascii" >&6 test "$cf_cv_have_isascii" = yes && cat >>confdefs.h <<\EOF @@ -22639,10 +22643,10 @@ EOF if test "$ac_cv_func_sigaction" = yes; then -echo "$as_me:22642: checking whether sigaction needs _POSIX_SOURCE" >&5 +echo "$as_me:22646: 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 22645 "configure" +#line 22649 "configure" #include "confdefs.h" #include @@ -22656,16 +22660,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22659: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22663: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22662: \$? = $ac_status" >&5 + echo "$as_me:22666: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22665: \"$ac_try\"") >&5 + { (eval echo "$as_me:22669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22668: \$? = $ac_status" >&5 + echo "$as_me:22672: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then sigact_bad=no else @@ -22673,7 +22677,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22676 "configure" +#line 22680 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -22688,16 +22692,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22691: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22695: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22694: \$? = $ac_status" >&5 + echo "$as_me:22698: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22697: \"$ac_try\"") >&5 + { (eval echo "$as_me:22701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22700: \$? = $ac_status" >&5 + echo "$as_me:22704: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then sigact_bad=yes @@ -22713,11 +22717,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" -echo "$as_me:22716: result: $sigact_bad" >&5 +echo "$as_me:22720: result: $sigact_bad" >&5 echo "${ECHO_T}$sigact_bad" >&6 fi -echo "$as_me:22720: checking if nanosleep really works" >&5 +echo "$as_me:22724: 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 @@ -22727,7 +22731,7 @@ cf_cv_func_nanosleep=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 22730 "configure" +#line 22734 "configure" #include "confdefs.h" $ac_includes_default @@ -22753,15 +22757,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:22756: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22760: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22759: \$? = $ac_status" >&5 + echo "$as_me:22763: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:22761: \"$ac_try\"") >&5 + { (eval echo "$as_me:22765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22764: \$? = $ac_status" >&5 + echo "$as_me:22768: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_nanosleep=yes else @@ -22773,7 +22777,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:22776: result: $cf_cv_func_nanosleep" >&5 +echo "$as_me:22780: result: $cf_cv_func_nanosleep" >&5 echo "${ECHO_T}$cf_cv_func_nanosleep" >&6 test "$cf_cv_func_nanosleep" = "yes" && @@ -22790,23 +22794,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22793: checking for $ac_header" >&5 +echo "$as_me:22797: 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 22799 "configure" +#line 22803 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22803: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:22807: \"$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:22809: \$? = $ac_status" >&5 + echo "$as_me:22813: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22825,7 +22829,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:22828: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:22832: 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:22849: 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 22848 "configure" +#line 22852 "configure" #include "confdefs.h" #include int @@ -22857,16 +22861,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22860: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22864: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22863: \$? = $ac_status" >&5 + echo "$as_me:22867: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22866: \"$ac_try\"") >&5 + { (eval echo "$as_me:22870: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22869: \$? = $ac_status" >&5 + echo "$as_me:22873: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=no else @@ -22874,7 +22878,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 22877 "configure" +#line 22881 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -22888,16 +22892,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:22891: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22895: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22894: \$? = $ac_status" >&5 + echo "$as_me:22898: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:22897: \"$ac_try\"") >&5 + { (eval echo "$as_me:22901: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22900: \$? = $ac_status" >&5 + echo "$as_me:22904: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=unknown else @@ -22913,19 +22917,19 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:22916: result: $termios_bad" >&5 + echo "$as_me:22920: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:22921: checking for tcgetattr" >&5 +echo "$as_me:22925: 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 22928 "configure" +#line 22932 "configure" #include "confdefs.h" #include @@ -22953,16 +22957,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:22956: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22960: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22959: \$? = $ac_status" >&5 + echo "$as_me:22963: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:22962: \"$ac_try\"") >&5 + { (eval echo "$as_me:22966: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22965: \$? = $ac_status" >&5 + echo "$as_me:22969: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_tcgetattr=yes else @@ -22972,21 +22976,21 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:22975: result: $cf_cv_have_tcgetattr" >&5 +echo "$as_me:22979: 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:22982: checking for vsscanf function or workaround" >&5 +echo "$as_me:22986: 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 22989 "configure" +#line 22993 "configure" #include "confdefs.h" #include @@ -23012,16 +23016,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23015: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23019: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23018: \$? = $ac_status" >&5 + echo "$as_me:23022: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23021: \"$ac_try\"") >&5 + { (eval echo "$as_me:23025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23024: \$? = $ac_status" >&5 + echo "$as_me:23028: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=vsscanf else @@ -23029,7 +23033,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 23032 "configure" +#line 23036 "configure" #include "confdefs.h" #include @@ -23051,16 +23055,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23054: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23057: \$? = $ac_status" >&5 + echo "$as_me:23061: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23060: \"$ac_try\"") >&5 + { (eval echo "$as_me:23064: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23063: \$? = $ac_status" >&5 + echo "$as_me:23067: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=vfscanf else @@ -23068,7 +23072,7 @@ cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 23071 "configure" +#line 23075 "configure" #include "confdefs.h" #include @@ -23090,16 +23094,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23093: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23097: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23096: \$? = $ac_status" >&5 + echo "$as_me:23100: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23099: \"$ac_try\"") >&5 + { (eval echo "$as_me:23103: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23102: \$? = $ac_status" >&5 + echo "$as_me:23106: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_vsscanf=_doscan else @@ -23114,7 +23118,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23117: result: $cf_cv_func_vsscanf" >&5 +echo "$as_me:23121: result: $cf_cv_func_vsscanf" >&5 echo "${ECHO_T}$cf_cv_func_vsscanf" >&6 case "$cf_cv_func_vsscanf" in @@ -23140,23 +23144,23 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:23143: checking for $ac_header" >&5 +echo "$as_me:23147: 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 23149 "configure" +#line 23153 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:23153: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:23157: \"$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:23159: \$? = $ac_status" >&5 + echo "$as_me:23163: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23175,7 +23179,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:23178: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:23182: 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:23192: 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 @@ -23196,7 +23200,7 @@ cf_cv_func_mkstemp=maybe else cat >"conftest.$ac_ext" <<_ACEOF -#line 23199 "configure" +#line 23203 "configure" #include "confdefs.h" $ac_includes_default @@ -23231,15 +23235,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23234: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23238: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23237: \$? = $ac_status" >&5 + echo "$as_me:23241: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23239: \"$ac_try\"") >&5 + { (eval echo "$as_me:23243: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23242: \$? = $ac_status" >&5 + echo "$as_me:23246: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_mkstemp=yes @@ -23254,16 +23258,16 @@ fi fi -echo "$as_me:23257: result: $cf_cv_func_mkstemp" >&5 +echo "$as_me:23261: 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:23260: checking for mkstemp" >&5 + echo "$as_me:23264: 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 23266 "configure" +#line 23270 "configure" #include "confdefs.h" #define mkstemp autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23294,16 +23298,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23297: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23301: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23300: \$? = $ac_status" >&5 + echo "$as_me:23304: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23303: \"$ac_try\"") >&5 + { (eval echo "$as_me:23307: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23306: \$? = $ac_status" >&5 + echo "$as_me:23310: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_mkstemp=yes else @@ -23313,7 +23317,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23316: result: $ac_cv_func_mkstemp" >&5 +echo "$as_me:23320: result: $ac_cv_func_mkstemp" >&5 echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 fi @@ -23334,21 +23338,21 @@ fi if test "x$cross_compiling" = xyes ; then - { echo "$as_me:23337: WARNING: cross compiling: assume setvbuf params not reversed" >&5 + { echo "$as_me:23341: 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:23340: checking whether setvbuf arguments are reversed" >&5 + echo "$as_me:23344: 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:23346: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23350: 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 23351 "configure" +#line 23355 "configure" #include "confdefs.h" #include /* If setvbuf has the reversed format, exit 0. */ @@ -23365,15 +23369,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23368: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23372: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23371: \$? = $ac_status" >&5 + echo "$as_me:23375: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23373: \"$ac_try\"") >&5 + { (eval echo "$as_me:23377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23376: \$? = $ac_status" >&5 + echo "$as_me:23380: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_setvbuf_reversed=yes else @@ -23386,7 +23390,7 @@ fi rm -f core ./core.* ./*.core fi -echo "$as_me:23389: result: $ac_cv_func_setvbuf_reversed" >&5 +echo "$as_me:23393: 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 @@ -23397,13 +23401,13 @@ fi fi -echo "$as_me:23400: checking for intptr_t" >&5 +echo "$as_me:23404: 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 23406 "configure" +#line 23410 "configure" #include "confdefs.h" $ac_includes_default int @@ -23418,16 +23422,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23421: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23425: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23424: \$? = $ac_status" >&5 + echo "$as_me:23428: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23427: \"$ac_try\"") >&5 + { (eval echo "$as_me:23431: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23430: \$? = $ac_status" >&5 + echo "$as_me:23434: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_intptr_t=yes else @@ -23437,7 +23441,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23440: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:23444: 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 : @@ -23449,13 +23453,13 @@ fi -echo "$as_me:23452: checking for ssize_t" >&5 +echo "$as_me:23456: 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 23458 "configure" +#line 23462 "configure" #include "confdefs.h" $ac_includes_default int @@ -23470,16 +23474,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23473: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23477: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23476: \$? = $ac_status" >&5 + echo "$as_me:23480: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23479: \"$ac_try\"") >&5 + { (eval echo "$as_me:23483: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23482: \$? = $ac_status" >&5 + echo "$as_me:23486: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_ssize_t=yes else @@ -23489,7 +23493,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23492: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:23496: 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 : @@ -23501,14 +23505,14 @@ fi -echo "$as_me:23504: checking for type sigaction_t" >&5 +echo "$as_me:23508: 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 23511 "configure" +#line 23515 "configure" #include "confdefs.h" #include @@ -23521,16 +23525,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23524: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23528: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23527: \$? = $ac_status" >&5 + echo "$as_me:23531: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23530: \"$ac_try\"") >&5 + { (eval echo "$as_me:23534: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23533: \$? = $ac_status" >&5 + echo "$as_me:23537: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_type_sigaction=yes else @@ -23541,14 +23545,14 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:23544: result: $cf_cv_type_sigaction" >&5 +echo "$as_me:23548: 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:23551: checking declaration of size-change" >&5 +echo "$as_me:23555: 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 @@ -23569,7 +23573,7 @@ fi cat >"conftest.$ac_ext" <<_ACEOF -#line 23572 "configure" +#line 23576 "configure" #include "confdefs.h" #include #ifdef HAVE_TERMIOS_H @@ -23619,16 +23623,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:23622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23626: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23625: \$? = $ac_status" >&5 + echo "$as_me:23629: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:23628: \"$ac_try\"") >&5 + { (eval echo "$as_me:23632: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23631: \$? = $ac_status" >&5 + echo "$as_me:23635: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sizechange=yes else @@ -23647,7 +23651,7 @@ done fi -echo "$as_me:23650: result: $cf_cv_sizechange" >&5 +echo "$as_me:23654: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -23665,13 +23669,13 @@ esac fi -echo "$as_me:23668: checking for memmove" >&5 +echo "$as_me:23672: 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 23674 "configure" +#line 23678 "configure" #include "confdefs.h" #define memmove autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23702,16 +23706,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23709: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23708: \$? = $ac_status" >&5 + echo "$as_me:23712: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23711: \"$ac_try\"") >&5 + { (eval echo "$as_me:23715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23714: \$? = $ac_status" >&5 + echo "$as_me:23718: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_memmove=yes else @@ -23721,19 +23725,19 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23724: result: $ac_cv_func_memmove" >&5 +echo "$as_me:23728: 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:23730: checking for bcopy" >&5 +echo "$as_me:23734: 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 23736 "configure" +#line 23740 "configure" #include "confdefs.h" #define bcopy autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23764,16 +23768,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23767: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23771: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23770: \$? = $ac_status" >&5 + echo "$as_me:23774: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23773: \"$ac_try\"") >&5 + { (eval echo "$as_me:23777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23776: \$? = $ac_status" >&5 + echo "$as_me:23780: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_bcopy=yes else @@ -23783,11 +23787,11 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23786: result: $ac_cv_func_bcopy" >&5 +echo "$as_me:23790: 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:23790: checking if bcopy does overlapping moves" >&5 + echo "$as_me:23794: 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 @@ -23797,7 +23801,7 @@ cf_cv_good_bcopy=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 23800 "configure" +#line 23804 "configure" #include "confdefs.h" $ac_includes_default @@ -23813,15 +23817,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23816: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23820: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23819: \$? = $ac_status" >&5 + echo "$as_me:23823: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23821: \"$ac_try\"") >&5 + { (eval echo "$as_me:23825: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23824: \$? = $ac_status" >&5 + echo "$as_me:23828: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_good_bcopy=yes else @@ -23834,7 +23838,7 @@ fi fi -echo "$as_me:23837: result: $cf_cv_good_bcopy" >&5 +echo "$as_me:23841: result: $cf_cv_good_bcopy" >&5 echo "${ECHO_T}$cf_cv_good_bcopy" >&6 else @@ -23861,13 +23865,13 @@ for ac_func in posix_openpt do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:23864: checking for $ac_func" >&5 +echo "$as_me:23868: 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 23870 "configure" +#line 23874 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -23898,16 +23902,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:23901: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23905: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23904: \$? = $ac_status" >&5 + echo "$as_me:23908: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:23907: \"$ac_try\"") >&5 + { (eval echo "$as_me:23911: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23910: \$? = $ac_status" >&5 + echo "$as_me:23914: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -23917,7 +23921,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:23920: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:23924: 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:23934: 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 @@ -23937,7 +23941,7 @@ cf_cv_working_poll=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 23940 "configure" +#line 23944 "configure" #include "confdefs.h" $ac_includes_default @@ -23990,15 +23994,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:23993: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23997: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23996: \$? = $ac_status" >&5 + echo "$as_me:24000: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:23998: \"$ac_try\"") >&5 + { (eval echo "$as_me:24002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24001: \$? = $ac_status" >&5 + echo "$as_me:24005: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_working_poll=yes else @@ -24010,21 +24014,21 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24013: result: $cf_cv_working_poll" >&5 +echo "$as_me:24017: 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:24020: checking if MB_LEN_MAX is usable" >&5 +echo "$as_me:24024: 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 24027 "configure" +#line 24031 "configure" #include "confdefs.h" $ac_includes_default @@ -24044,16 +24048,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24047: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24051: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24050: \$? = $ac_status" >&5 + echo "$as_me:24054: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24053: \"$ac_try\"") >&5 + { (eval echo "$as_me:24057: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24056: \$? = $ac_status" >&5 + echo "$as_me:24060: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_mb_len_max=yes else @@ -24063,7 +24067,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:24066: result: $cf_cv_mb_len_max" >&5 +echo "$as_me:24070: 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 @@ -24073,18 +24077,18 @@ EOF else - { echo "$as_me:24076: WARNING: MB_LEN_MAX is missing/inconsistent in system headers" >&5 + { echo "$as_me:24080: 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:24080: checking for va_copy" >&5 +echo "$as_me:24084: 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 24087 "configure" +#line 24091 "configure" #include "confdefs.h" #include @@ -24101,16 +24105,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24104: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24108: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24107: \$? = $ac_status" >&5 + echo "$as_me:24111: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24110: \"$ac_try\"") >&5 + { (eval echo "$as_me:24114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24113: \$? = $ac_status" >&5 + echo "$as_me:24117: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_va_copy=yes else @@ -24120,7 +24124,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24123: result: $cf_cv_have_va_copy" >&5 +echo "$as_me:24127: result: $cf_cv_have_va_copy" >&5 echo "${ECHO_T}$cf_cv_have_va_copy" >&6 if test "$cf_cv_have_va_copy" = yes; @@ -24132,14 +24136,14 @@ else # !cf_cv_have_va_copy -echo "$as_me:24135: checking for __va_copy" >&5 +echo "$as_me:24139: 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 24142 "configure" +#line 24146 "configure" #include "confdefs.h" #include @@ -24156,16 +24160,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24159: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24163: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24162: \$? = $ac_status" >&5 + echo "$as_me:24166: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24165: \"$ac_try\"") >&5 + { (eval echo "$as_me:24169: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24168: \$? = $ac_status" >&5 + echo "$as_me:24172: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have___va_copy=yes else @@ -24175,7 +24179,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24178: result: $cf_cv_have___va_copy" >&5 +echo "$as_me:24182: result: $cf_cv_have___va_copy" >&5 echo "${ECHO_T}$cf_cv_have___va_copy" >&6 if test "$cf_cv_have___va_copy" = yes @@ -24187,14 +24191,14 @@ else # !cf_cv_have___va_copy -echo "$as_me:24190: checking for __builtin_va_copy" >&5 +echo "$as_me:24194: 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 24197 "configure" +#line 24201 "configure" #include "confdefs.h" #include @@ -24211,16 +24215,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24214: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24218: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24217: \$? = $ac_status" >&5 + echo "$as_me:24221: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24220: \"$ac_try\"") >&5 + { (eval echo "$as_me:24224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24223: \$? = $ac_status" >&5 + echo "$as_me:24227: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have___builtin_va_copy=yes else @@ -24230,7 +24234,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24233: result: $cf_cv_have___builtin_va_copy" >&5 +echo "$as_me:24237: 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 && @@ -24248,14 +24252,14 @@ ;; (*) - echo "$as_me:24251: checking if we can simply copy va_list" >&5 + echo "$as_me:24255: 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 24258 "configure" +#line 24262 "configure" #include "confdefs.h" #include @@ -24272,16 +24276,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24275: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24279: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24278: \$? = $ac_status" >&5 + echo "$as_me:24282: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24281: \"$ac_try\"") >&5 + { (eval echo "$as_me:24285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24284: \$? = $ac_status" >&5 + echo "$as_me:24288: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_pointer_va_list=yes else @@ -24291,19 +24295,19 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24294: result: $cf_cv_pointer_va_list" >&5 +echo "$as_me:24298: 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:24299: checking if we can copy va_list indirectly" >&5 + echo "$as_me:24303: 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 24306 "configure" +#line 24310 "configure" #include "confdefs.h" #include @@ -24320,16 +24324,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24323: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24327: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24326: \$? = $ac_status" >&5 + echo "$as_me:24330: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24329: \"$ac_try\"") >&5 + { (eval echo "$as_me:24333: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24332: \$? = $ac_status" >&5 + echo "$as_me:24336: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_array_va_list=yes else @@ -24339,7 +24343,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24342: result: $cf_cv_array_va_list" >&5 +echo "$as_me:24346: 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 @@ -24350,13 +24354,13 @@ ;; esac -echo "$as_me:24353: checking for pid_t" >&5 +echo "$as_me:24357: 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 24359 "configure" +#line 24363 "configure" #include "confdefs.h" $ac_includes_default int @@ -24371,16 +24375,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:24374: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24378: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24377: \$? = $ac_status" >&5 + echo "$as_me:24381: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:24380: \"$ac_try\"") >&5 + { (eval echo "$as_me:24384: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24383: \$? = $ac_status" >&5 + echo "$as_me:24387: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_pid_t=yes else @@ -24390,7 +24394,7 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:24393: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:24397: 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 : @@ -24405,23 +24409,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:24408: checking for $ac_header" >&5 +echo "$as_me:24412: 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 24414 "configure" +#line 24418 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24418: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:24422: \"$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:24424: \$? = $ac_status" >&5 + echo "$as_me:24428: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24440,7 +24444,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:24443: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:24447: 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:24460: 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 24462 "configure" +#line 24466 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -24490,16 +24494,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24493: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24497: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24496: \$? = $ac_status" >&5 + echo "$as_me:24500: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24499: \"$ac_try\"") >&5 + { (eval echo "$as_me:24503: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24502: \$? = $ac_status" >&5 + echo "$as_me:24506: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -24509,7 +24513,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:24512: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:24516: 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:24528: 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 @@ -24544,15 +24548,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24547: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24551: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24550: \$? = $ac_status" >&5 + echo "$as_me:24554: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24552: \"$ac_try\"") >&5 + { (eval echo "$as_me:24556: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24555: \$? = $ac_status" >&5 + echo "$as_me:24559: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_fork_works=yes else @@ -24564,7 +24568,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24567: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:24571: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -24578,12 +24582,12 @@ ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:24581: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24585: 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:24586: checking for working vfork" >&5 + echo "$as_me:24590: 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 @@ -24592,7 +24596,7 @@ ac_cv_func_vfork_works=cross else cat >"conftest.$ac_ext" <<_ACEOF -#line 24595 "configure" +#line 24599 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include @@ -24685,15 +24689,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24688: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24692: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24691: \$? = $ac_status" >&5 + echo "$as_me:24695: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24693: \"$ac_try\"") >&5 + { (eval echo "$as_me:24697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24696: \$? = $ac_status" >&5 + echo "$as_me:24700: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_vfork_works=yes else @@ -24705,13 +24709,13 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext" fi fi -echo "$as_me:24708: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:24712: 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:24714: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24718: 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 @@ -24736,7 +24740,7 @@ fi -echo "$as_me:24739: checking if fopen accepts explicit binary mode" >&5 +echo "$as_me:24743: 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 @@ -24746,7 +24750,7 @@ cf_cv_fopen_bin_r=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 24749 "configure" +#line 24753 "configure" #include "confdefs.h" $ac_includes_default @@ -24755,14 +24759,14 @@ { FILE *fp = fopen("conftest.tmp", "wb"); int rc = 0; - if (fp != 0) { + if (fp != NULL) { int p, q; for (p = 0; p < 256; ++p) { fputc(p, fp); } fclose(fp); fp = fopen("conftest.tmp", "rb"); - if (fp != 0) { + if (fp != NULL) { for (p = 0; p < 256; ++p) { q = fgetc(fp); if (q != p) { @@ -24781,15 +24785,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:24784: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24788: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24787: \$? = $ac_status" >&5 + echo "$as_me:24791: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:24789: \"$ac_try\"") >&5 + { (eval echo "$as_me:24793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24792: \$? = $ac_status" >&5 + echo "$as_me:24796: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fopen_bin_r=yes else @@ -24802,16 +24806,228 @@ fi fi -echo "$as_me:24805: result: $cf_cv_fopen_bin_r" >&5 +echo "$as_me:24809: 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:24816: 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 24822 "configure" +#include "confdefs.h" + +$ac_includes_default +#include + +int +main (void) +{ +if ((cc_t *) 0) + return 0; +if (sizeof (cc_t)) + return 0; + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:24840: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:24843: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:24846: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:24849: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + ac_cv_type_cc_t=yes +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 +ac_cv_type_cc_t=no +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" +fi +echo "$as_me:24859: 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 + +cat >>confdefs.h <&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 24875 "configure" +#include "confdefs.h" + +$ac_includes_default +#include + +int +main (void) +{ +if ((speed_t *) 0) + return 0; +if (sizeof (speed_t)) + return 0; + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:24893: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:24896: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:24899: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:24902: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + ac_cv_type_speed_t=yes +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 +ac_cv_type_speed_t=no +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" +fi +echo "$as_me:24912: 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 + +cat >>confdefs.h <&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 24928 "configure" +#include "confdefs.h" + +$ac_includes_default +#include + +int +main (void) +{ +if ((tcflag_t *) 0) + return 0; +if (sizeof (tcflag_t)) + return 0; + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:24946: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:24949: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:24952: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:24955: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + ac_cv_type_tcflag_t=yes +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 +ac_cv_type_tcflag_t=no +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" +fi +echo "$as_me:24965: 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 + +cat >>confdefs.h <&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 24981 "configure" +#include "confdefs.h" + +$ac_includes_default +#include + +int +main (void) +{ +if ((sigset_t *) 0) + return 0; +if (sizeof (sigset_t)) + return 0; + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:24999: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:25002: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:25005: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:25008: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + ac_cv_type_sigset_t=yes +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 +ac_cv_type_sigset_t=no +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" +fi +echo "$as_me:25018: 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 + +cat >>confdefs.h <&5 +echo "$as_me:25030: 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 @@ -24819,7 +25035,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lutil $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 24822 "configure" +#line 25038 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24838,16 +25054,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24841: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25057: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24844: \$? = $ac_status" >&5 + echo "$as_me:25060: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24847: \"$ac_try\"") >&5 + { (eval echo "$as_me:25063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24850: \$? = $ac_status" >&5 + echo "$as_me:25066: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_util_openpty=yes else @@ -24858,7 +25074,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24861: result: $ac_cv_lib_util_openpty" >&5 +echo "$as_me:25077: 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 @@ -24866,7 +25082,7 @@ cf_cv_lib_util=no fi -echo "$as_me:24869: checking for openpty header" >&5 +echo "$as_me:25085: 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 @@ -24893,7 +25109,7 @@ for cf_header in pty.h libutil.h util.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 24896 "configure" +#line 25112 "configure" #include "confdefs.h" #include <$cf_header> @@ -24911,16 +25127,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:24914: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25130: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24917: \$? = $ac_status" >&5 + echo "$as_me:25133: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:24920: \"$ac_try\"") >&5 + { (eval echo "$as_me:25136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24923: \$? = $ac_status" >&5 + echo "$as_me:25139: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_openpty=$cf_header @@ -24938,7 +25154,7 @@ LIBS="$cf_save_LIBS" fi -echo "$as_me:24941: result: $cf_cv_func_openpty" >&5 +echo "$as_me:25157: result: $cf_cv_func_openpty" >&5 echo "${ECHO_T}$cf_cv_func_openpty" >&6 if test "$cf_cv_func_openpty" != no ; then @@ -25011,7 +25227,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 25014 "configure" +#line 25230 "configure" #include "confdefs.h" #include int @@ -25023,16 +25239,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25026: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25242: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25029: \$? = $ac_status" >&5 + echo "$as_me:25245: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25032: \"$ac_try\"") >&5 + { (eval echo "$as_me:25248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25035: \$? = $ac_status" >&5 + echo "$as_me:25251: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -25049,7 +25265,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}:25052: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25268: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25085,7 +25301,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}:25088: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:25304: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -25096,7 +25312,7 @@ else case "$with_hashed_db" in (./*|../*|/*) - { echo "$as_me:25099: WARNING: no such directory $with_hashed_db" >&5 + { echo "$as_me:25315: WARNING: no such directory $with_hashed_db" >&5 echo "$as_me: WARNING: no such directory $with_hashed_db" >&2;} ;; (*) @@ -25168,7 +25384,7 @@ CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 25171 "configure" +#line 25387 "configure" #include "confdefs.h" #include int @@ -25180,16 +25396,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25183: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25399: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25186: \$? = $ac_status" >&5 + echo "$as_me:25402: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25189: \"$ac_try\"") >&5 + { (eval echo "$as_me:25405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25192: \$? = $ac_status" >&5 + echo "$as_me:25408: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -25206,7 +25422,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}:25209: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25425: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25286,7 +25502,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}:25289: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:25505: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -25303,23 +25519,23 @@ fi esac -echo "$as_me:25306: checking for db.h" >&5 +echo "$as_me:25522: 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 25312 "configure" +#line 25528 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:25316: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:25532: \"$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:25322: \$? = $ac_status" >&5 + echo "$as_me:25538: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25338,11 +25554,11 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:25341: result: $ac_cv_header_db_h" >&5 +echo "$as_me:25557: 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:25345: checking for version of db" >&5 +echo "$as_me:25561: 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 @@ -25353,10 +25569,10 @@ for cf_db_version in 1 2 3 4 5 6 do -echo "${as_me:-configure}:25356: testing checking for db version $cf_db_version ..." 1>&5 +echo "${as_me:-configure}:25572: testing checking for db version $cf_db_version ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25359 "configure" +#line 25575 "configure" #include "confdefs.h" $ac_includes_default @@ -25386,16 +25602,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25389: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25605: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25392: \$? = $ac_status" >&5 + echo "$as_me:25608: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25395: \"$ac_try\"") >&5 + { (eval echo "$as_me:25611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25398: \$? = $ac_status" >&5 + echo "$as_me:25614: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_hashed_db_version=$cf_db_version @@ -25409,16 +25625,16 @@ done fi -echo "$as_me:25412: result: $cf_cv_hashed_db_version" >&5 +echo "$as_me:25628: 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:25416: error: Cannot determine version of db" >&5 + { { echo "$as_me:25632: 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:25421: checking for db libraries" >&5 +echo "$as_me:25637: 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 @@ -25448,10 +25664,10 @@ fi -echo "${as_me:-configure}:25451: testing checking for library $cf_db_libs ..." 1>&5 +echo "${as_me:-configure}:25667: testing checking for library $cf_db_libs ..." 1>&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25454 "configure" +#line 25670 "configure" #include "confdefs.h" $ac_includes_default @@ -25464,7 +25680,7 @@ char *path = "/tmp/foo"; #ifdef DB_VERSION_MAJOR #if DB_VERSION_MAJOR >= 4 - DB *result = 0; + DB *result = NULL; db_create(&result, NULL, 0); result->open(result, NULL, @@ -25474,7 +25690,7 @@ DB_CREATE, 0644); #elif DB_VERSION_MAJOR >= 3 - DB *result = 0; + DB *result = NULL; db_create(&result, NULL, 0); result->open(result, path, @@ -25483,7 +25699,7 @@ DB_CREATE, 0644); #elif DB_VERSION_MAJOR >= 2 - DB *result = 0; + DB *result = NULL; db_open(path, DB_HASH, DB_CREATE, @@ -25499,23 +25715,23 @@ DB_HASH, 0); #endif - ${cf_cv_main_return:-return}(result != 0) + ${cf_cv_main_return:-return}(result != NULL) ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25509: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25725: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25512: \$? = $ac_status" >&5 + echo "$as_me:25728: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25515: \"$ac_try\"") >&5 + { (eval echo "$as_me:25731: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25518: \$? = $ac_status" >&5 + echo "$as_me:25734: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then if test -n "$cf_db_libs" ; then @@ -25535,11 +25751,11 @@ done fi -echo "$as_me:25538: result: $cf_cv_hashed_db_libs" >&5 +echo "$as_me:25754: 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:25542: error: Cannot determine library for db" >&5 + { { echo "$as_me:25758: 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 @@ -25565,7 +25781,7 @@ else - { { echo "$as_me:25568: error: Cannot find db.h" >&5 + { { echo "$as_me:25784: error: Cannot find db.h" >&5 echo "$as_me: error: Cannot find db.h" >&2;} { (exit 1); exit 1; }; } @@ -25580,7 +25796,7 @@ # Just in case, check if the C compiler has a bool type. -echo "$as_me:25583: checking if we should include stdbool.h" >&5 +echo "$as_me:25799: 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 @@ -25588,7 +25804,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 25591 "configure" +#line 25807 "configure" #include "confdefs.h" int @@ -25600,23 +25816,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25603: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25819: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25606: \$? = $ac_status" >&5 + echo "$as_me:25822: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25609: \"$ac_try\"") >&5 + { (eval echo "$as_me:25825: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25612: \$? = $ac_status" >&5 + echo "$as_me:25828: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=0 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 25619 "configure" +#line 25835 "configure" #include "confdefs.h" #ifndef __BEOS__ @@ -25632,16 +25848,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25635: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25851: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25638: \$? = $ac_status" >&5 + echo "$as_me:25854: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25641: \"$ac_try\"") >&5 + { (eval echo "$as_me:25857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25644: \$? = $ac_status" >&5 + echo "$as_me:25860: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=1 else @@ -25655,13 +25871,13 @@ fi if test "$cf_cv_header_stdbool_h" = 1 -then echo "$as_me:25658: result: yes" >&5 +then echo "$as_me:25874: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:25660: result: no" >&5 +else echo "$as_me:25876: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:25664: checking for builtin bool type" >&5 +echo "$as_me:25880: 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 @@ -25669,7 +25885,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 25672 "configure" +#line 25888 "configure" #include "confdefs.h" #include @@ -25684,16 +25900,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:25687: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25903: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25690: \$? = $ac_status" >&5 + echo "$as_me:25906: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:25693: \"$ac_try\"") >&5 + { (eval echo "$as_me:25909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25696: \$? = $ac_status" >&5 + echo "$as_me:25912: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cc_bool_type=1 else @@ -25706,9 +25922,9 @@ fi if test "$cf_cv_cc_bool_type" = 1 -then echo "$as_me:25709: result: yes" >&5 +then echo "$as_me:25925: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:25711: result: no" >&5 +else echo "$as_me:25927: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25725,10 +25941,10 @@ cf_save="$LIBS" LIBS="$LIBS $CXXLIBS" - echo "$as_me:25728: checking if we already have C++ library" >&5 + echo "$as_me:25944: 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 25731 "configure" +#line 25947 "configure" #include "confdefs.h" #include @@ -25742,16 +25958,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25745: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25748: \$? = $ac_status" >&5 + echo "$as_me:25964: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25751: \"$ac_try\"") >&5 + { (eval echo "$as_me:25967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25754: \$? = $ac_status" >&5 + echo "$as_me:25970: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_have_libstdcpp=yes else @@ -25760,7 +25976,7 @@ cf_have_libstdcpp=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:25763: result: $cf_have_libstdcpp" >&5 + echo "$as_me:25979: result: $cf_have_libstdcpp" >&5 echo "${ECHO_T}$cf_have_libstdcpp" >&6 LIBS="$cf_save" @@ -25779,7 +25995,7 @@ ;; esac - echo "$as_me:25782: checking for library $cf_stdcpp_libname" >&5 + echo "$as_me:25998: 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 @@ -25805,7 +26021,7 @@ LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 25808 "configure" +#line 26024 "configure" #include "confdefs.h" #include @@ -25819,16 +26035,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25822: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26038: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25825: \$? = $ac_status" >&5 + echo "$as_me:26041: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25828: \"$ac_try\"") >&5 + { (eval echo "$as_me:26044: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25831: \$? = $ac_status" >&5 + echo "$as_me:26047: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_libstdcpp=yes else @@ -25840,7 +26056,7 @@ LIBS="$cf_save" fi -echo "$as_me:25843: result: $cf_cv_libstdcpp" >&5 +echo "$as_me:26059: result: $cf_cv_libstdcpp" >&5 echo "${ECHO_T}$cf_cv_libstdcpp" >&6 test "$cf_cv_libstdcpp" = yes && { cf_add_libs="$CXXLIBS" @@ -25862,7 +26078,7 @@ fi fi - echo "$as_me:25865: checking whether $CXX understands -c and -o together" >&5 + echo "$as_me:26081: 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 @@ -25877,15 +26093,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:25880: \"$ac_try\"") >&5 +if { (eval echo "$as_me:26096: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25883: \$? = $ac_status" >&5 + echo "$as_me:26099: \$? = $ac_status" >&5 (exit "$ac_status"); } && - test -f conftest2.$ac_objext && { (eval echo "$as_me:25885: \"$ac_try\"") >&5 + test -f conftest2.$ac_objext && { (eval echo "$as_me:26101: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25888: \$? = $ac_status" >&5 + echo "$as_me:26104: \$? = $ac_status" >&5 (exit "$ac_status"); }; then eval cf_cv_prog_CXX_c_o=yes @@ -25896,10 +26112,10 @@ fi if test "$cf_cv_prog_CXX_c_o" = yes; then - echo "$as_me:25899: result: yes" >&5 + echo "$as_me:26115: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:25902: result: no" >&5 + echo "$as_me:26118: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -25919,7 +26135,7 @@ ;; esac if test "$GXX" = yes; then - echo "$as_me:25922: checking for lib$cf_gpp_libname" >&5 + echo "$as_me:26138: checking for lib$cf_gpp_libname" >&5 echo $ECHO_N "checking for lib$cf_gpp_libname... $ECHO_C" >&6 cf_save="$LIBS" @@ -25940,7 +26156,7 @@ LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 25943 "configure" +#line 26159 "configure" #include "confdefs.h" #include <$cf_gpp_libname/builtin.h> @@ -25954,16 +26170,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:25957: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26173: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25960: \$? = $ac_status" >&5 + echo "$as_me:26176: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:25963: \"$ac_try\"") >&5 + { (eval echo "$as_me:26179: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25966: \$? = $ac_status" >&5 + echo "$as_me:26182: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cxx_library=yes @@ -26000,7 +26216,7 @@ echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 26003 "configure" +#line 26219 "configure" #include "confdefs.h" #include @@ -26014,16 +26230,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:26017: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26233: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26020: \$? = $ac_status" >&5 + echo "$as_me:26236: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:26023: \"$ac_try\"") >&5 + { (eval echo "$as_me:26239: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26026: \$? = $ac_status" >&5 + echo "$as_me:26242: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cxx_library=yes @@ -26056,7 +26272,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS="$cf_save" - echo "$as_me:26059: result: $cf_cxx_library" >&5 + echo "$as_me:26275: result: $cf_cxx_library" >&5 echo "${ECHO_T}$cf_cxx_library" >&6 fi @@ -26072,7 +26288,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:26075: checking how to run the C++ preprocessor" >&5 +echo "$as_me:26291: 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 @@ -26089,18 +26305,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 26092 "configure" +#line 26308 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:26097: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26313: \"$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:26103: \$? = $ac_status" >&5 + echo "$as_me:26319: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26123,17 +26339,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >"conftest.$ac_ext" <<_ACEOF -#line 26126 "configure" +#line 26342 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:26130: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26346: \"$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:26136: \$? = $ac_status" >&5 + echo "$as_me:26352: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26170,7 +26386,7 @@ else ac_cv_prog_CXXCPP=$CXXCPP fi -echo "$as_me:26173: result: $CXXCPP" >&5 +echo "$as_me:26389: result: $CXXCPP" >&5 echo "${ECHO_T}$CXXCPP" >&6 ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes @@ -26180,18 +26396,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 26183 "configure" +#line 26399 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:26188: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26404: \"$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:26194: \$? = $ac_status" >&5 + echo "$as_me:26410: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26214,17 +26430,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >"conftest.$ac_ext" <<_ACEOF -#line 26217 "configure" +#line 26433 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:26221: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26437: \"$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:26227: \$? = $ac_status" >&5 + echo "$as_me:26443: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26252,7 +26468,7 @@ if $ac_preproc_ok; then : else - { { echo "$as_me:26255: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 + { { echo "$as_me:26471: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -26267,23 +26483,23 @@ for ac_header in typeinfo do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:26270: checking for $ac_header" >&5 +echo "$as_me:26486: 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 26276 "configure" +#line 26492 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26280: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26496: \"$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:26286: \$? = $ac_status" >&5 + echo "$as_me:26502: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26302,7 +26518,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:26305: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:26521: 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:26534: 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 26324 "configure" +#line 26540 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:26328: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:26544: \"$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:26334: \$? = $ac_status" >&5 + echo "$as_me:26550: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_cxx_preproc_warn_flag @@ -26350,7 +26566,7 @@ fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:26353: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:26569: 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:26580: 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 26367 "configure" +#line 26583 "configure" #include "confdefs.h" #include @@ -26381,16 +26597,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26384: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26600: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26387: \$? = $ac_status" >&5 + echo "$as_me:26603: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26390: \"$ac_try\"") >&5 + { (eval echo "$as_me:26606: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26393: \$? = $ac_status" >&5 + echo "$as_me:26609: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_iostream_namespace=yes else @@ -26399,7 +26615,7 @@ cf_iostream_namespace=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:26402: result: $cf_iostream_namespace" >&5 + echo "$as_me:26618: result: $cf_iostream_namespace" >&5 echo "${ECHO_T}$cf_iostream_namespace" >&6 if test "$cf_iostream_namespace" = yes ; then @@ -26410,7 +26626,7 @@ fi fi -echo "$as_me:26413: checking if we should include stdbool.h" >&5 +echo "$as_me:26629: 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 @@ -26418,7 +26634,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 26421 "configure" +#line 26637 "configure" #include "confdefs.h" int @@ -26430,23 +26646,23 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26433: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26649: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26436: \$? = $ac_status" >&5 + echo "$as_me:26652: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26439: \"$ac_try\"") >&5 + { (eval echo "$as_me:26655: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26442: \$? = $ac_status" >&5 + echo "$as_me:26658: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=0 else echo "$as_me: failed program was:" >&5 cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 26449 "configure" +#line 26665 "configure" #include "confdefs.h" #ifndef __BEOS__ @@ -26462,16 +26678,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26465: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26681: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26468: \$? = $ac_status" >&5 + echo "$as_me:26684: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26471: \"$ac_try\"") >&5 + { (eval echo "$as_me:26687: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26474: \$? = $ac_status" >&5 + echo "$as_me:26690: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_header_stdbool_h=1 else @@ -26485,13 +26701,13 @@ fi if test "$cf_cv_header_stdbool_h" = 1 -then echo "$as_me:26488: result: yes" >&5 +then echo "$as_me:26704: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:26490: result: no" >&5 +else echo "$as_me:26706: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26494: checking for builtin bool type" >&5 +echo "$as_me:26710: 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 @@ -26499,7 +26715,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 26502 "configure" +#line 26718 "configure" #include "confdefs.h" #include @@ -26514,16 +26730,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26517: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26733: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26520: \$? = $ac_status" >&5 + echo "$as_me:26736: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26523: \"$ac_try\"") >&5 + { (eval echo "$as_me:26739: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26526: \$? = $ac_status" >&5 + echo "$as_me:26742: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_builtin_bool=1 else @@ -26536,19 +26752,19 @@ fi if test "$cf_cv_builtin_bool" = 1 -then echo "$as_me:26539: result: yes" >&5 +then echo "$as_me:26755: result: yes" >&5 echo "${ECHO_T}yes" >&6 -else echo "$as_me:26541: result: no" >&5 +else echo "$as_me:26757: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26545: checking for bool" >&5 +echo "$as_me:26761: 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 26551 "configure" +#line 26767 "configure" #include "confdefs.h" $ac_includes_default @@ -26583,16 +26799,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26586: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26802: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26589: \$? = $ac_status" >&5 + echo "$as_me:26805: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26592: \"$ac_try\"") >&5 + { (eval echo "$as_me:26808: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26595: \$? = $ac_status" >&5 + echo "$as_me:26811: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_bool=yes else @@ -26602,10 +26818,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:26605: result: $ac_cv_type_bool" >&5 +echo "$as_me:26821: result: $ac_cv_type_bool" >&5 echo "${ECHO_T}$ac_cv_type_bool" >&6 -echo "$as_me:26608: checking size of bool" >&5 +echo "$as_me:26824: 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 @@ -26614,7 +26830,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 26617 "configure" +#line 26833 "configure" #include "confdefs.h" $ac_includes_default @@ -26646,21 +26862,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26649: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26865: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26652: \$? = $ac_status" >&5 + echo "$as_me:26868: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26655: \"$ac_try\"") >&5 + { (eval echo "$as_me:26871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26658: \$? = $ac_status" >&5 + echo "$as_me:26874: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 26663 "configure" +#line 26879 "configure" #include "confdefs.h" $ac_includes_default @@ -26692,16 +26908,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26695: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26911: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26698: \$? = $ac_status" >&5 + echo "$as_me:26914: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26701: \"$ac_try\"") >&5 + { (eval echo "$as_me:26917: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26704: \$? = $ac_status" >&5 + echo "$as_me:26920: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -26717,7 +26933,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 26720 "configure" +#line 26936 "configure" #include "confdefs.h" $ac_includes_default @@ -26749,16 +26965,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26752: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26968: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26755: \$? = $ac_status" >&5 + echo "$as_me:26971: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26758: \"$ac_try\"") >&5 + { (eval echo "$as_me:26974: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26761: \$? = $ac_status" >&5 + echo "$as_me:26977: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -26774,7 +26990,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 26777 "configure" +#line 26993 "configure" #include "confdefs.h" $ac_includes_default @@ -26806,16 +27022,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:26809: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27025: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26812: \$? = $ac_status" >&5 + echo "$as_me:27028: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:26815: \"$ac_try\"") >&5 + { (eval echo "$as_me:27031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26818: \$? = $ac_status" >&5 + echo "$as_me:27034: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -26828,12 +27044,12 @@ ac_cv_sizeof_bool=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:26831: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27047: 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 26836 "configure" +#line 27052 "configure" #include "confdefs.h" $ac_includes_default @@ -26869,15 +27085,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26872: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27088: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26875: \$? = $ac_status" >&5 + echo "$as_me:27091: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26877: \"$ac_try\"") >&5 + { (eval echo "$as_me:27093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26880: \$? = $ac_status" >&5 + echo "$as_me:27096: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_bool=`cat conftest.val` else @@ -26893,13 +27109,13 @@ ac_cv_sizeof_bool=0 fi fi -echo "$as_me:26896: result: $ac_cv_sizeof_bool" >&5 +echo "$as_me:27112: result: $ac_cv_sizeof_bool" >&5 echo "${ECHO_T}$ac_cv_sizeof_bool" >&6 cat >>confdefs.h <&5 +echo "$as_me:27118: 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 @@ -26918,7 +27134,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 26921 "configure" +#line 27137 "configure" #include "confdefs.h" $ac_includes_default @@ -26944,7 +27160,7 @@ int main(void) { FILE *fp = fopen("cf_test.out", "w"); - if (fp != 0) { + if (fp != NULL) { bool x = true; if ((bool)(-x) >= 0) fputs("unsigned ", fp); @@ -26959,15 +27175,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:26962: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27178: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26965: \$? = $ac_status" >&5 + echo "$as_me:27181: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:26967: \"$ac_try\"") >&5 + { (eval echo "$as_me:27183: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26970: \$? = $ac_status" >&5 + echo "$as_me:27186: \$? = $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 @@ -26984,19 +27200,19 @@ rm -f cf_test.out fi -echo "$as_me:26987: result: $cf_cv_type_of_bool" >&5 +echo "$as_me:27203: 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:26994: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 + { echo "$as_me:27210: 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:26999: checking for special defines needed for etip.h" >&5 +echo "$as_me:27215: 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" @@ -27014,7 +27230,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 27017 "configure" +#line 27233 "configure" #include "confdefs.h" #include @@ -27028,16 +27244,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27031: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27247: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27034: \$? = $ac_status" >&5 + echo "$as_me:27250: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27037: \"$ac_try\"") >&5 + { (eval echo "$as_me:27253: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27040: \$? = $ac_status" >&5 + echo "$as_me:27256: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$cf_math" && cat >>confdefs.h <&5 +echo "$as_me:27277: result: ${cf_result:-(none)}" >&5 echo "${ECHO_T}${cf_result:-(none)}" >&6 CXXFLAGS="$cf_save_CXXFLAGS" if test -n "$CXX"; then -echo "$as_me:27066: checking if $CXX accepts override keyword" >&5 +echo "$as_me:27282: 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 @@ -27080,7 +27296,7 @@ cf_cv_cpp_override=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 27083 "configure" +#line 27299 "configure" #include "confdefs.h" class base @@ -27099,15 +27315,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27102: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27318: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27105: \$? = $ac_status" >&5 + echo "$as_me:27321: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27107: \"$ac_try\"") >&5 + { (eval echo "$as_me:27323: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27110: \$? = $ac_status" >&5 + echo "$as_me:27326: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_override=yes else @@ -27126,7 +27342,7 @@ ac_main_return="return" fi -echo "$as_me:27129: result: $cf_cv_cpp_override" >&5 +echo "$as_me:27345: result: $cf_cv_cpp_override" >&5 echo "${ECHO_T}$cf_cv_cpp_override" >&6 fi test "$cf_cv_cpp_override" = yes && @@ -27135,7 +27351,7 @@ EOF if test -n "$CXX"; then -echo "$as_me:27138: checking if $CXX accepts parameter initialization" >&5 +echo "$as_me:27354: 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 @@ -27152,7 +27368,7 @@ cf_cv_cpp_param_init=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 27155 "configure" +#line 27371 "configure" #include "confdefs.h" class TEST { @@ -27171,15 +27387,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27174: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27390: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27177: \$? = $ac_status" >&5 + echo "$as_me:27393: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27179: \"$ac_try\"") >&5 + { (eval echo "$as_me:27395: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27182: \$? = $ac_status" >&5 + echo "$as_me:27398: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_param_init=yes else @@ -27198,7 +27414,7 @@ ac_main_return="return" fi -echo "$as_me:27201: result: $cf_cv_cpp_param_init" >&5 +echo "$as_me:27417: result: $cf_cv_cpp_param_init" >&5 echo "${ECHO_T}$cf_cv_cpp_param_init" >&6 fi test "$cf_cv_cpp_param_init" = yes && @@ -27208,7 +27424,7 @@ if test -n "$CXX"; then -echo "$as_me:27211: checking if $CXX accepts static_cast" >&5 +echo "$as_me:27427: 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 @@ -27222,7 +27438,7 @@ ac_main_return="return" cat >"conftest.$ac_ext" <<_ACEOF -#line 27225 "configure" +#line 27441 "configure" #include "confdefs.h" class NCursesPanel @@ -27266,16 +27482,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27269: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27485: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27272: \$? = $ac_status" >&5 + echo "$as_me:27488: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27275: \"$ac_try\"") >&5 + { (eval echo "$as_me:27491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27278: \$? = $ac_status" >&5 + echo "$as_me:27494: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_cpp_static_cast=yes else @@ -27293,7 +27509,7 @@ ac_main_return="return" fi -echo "$as_me:27296: result: $cf_cv_cpp_static_cast" >&5 +echo "$as_me:27512: result: $cf_cv_cpp_static_cast" >&5 echo "${ECHO_T}$cf_cv_cpp_static_cast" >&6 fi @@ -27341,13 +27557,13 @@ cf_cv_header_stdbool_h=0 else -echo "$as_me:27344: checking for bool" >&5 +echo "$as_me:27560: 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 27350 "configure" +#line 27566 "configure" #include "confdefs.h" $ac_includes_default @@ -27382,16 +27598,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27385: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27601: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27388: \$? = $ac_status" >&5 + echo "$as_me:27604: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27391: \"$ac_try\"") >&5 + { (eval echo "$as_me:27607: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27394: \$? = $ac_status" >&5 + echo "$as_me:27610: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_bool=yes else @@ -27401,10 +27617,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:27404: result: $ac_cv_type_bool" >&5 +echo "$as_me:27620: result: $ac_cv_type_bool" >&5 echo "${ECHO_T}$ac_cv_type_bool" >&6 -echo "$as_me:27407: checking size of bool" >&5 +echo "$as_me:27623: 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 @@ -27413,7 +27629,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 27416 "configure" +#line 27632 "configure" #include "confdefs.h" $ac_includes_default @@ -27445,21 +27661,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27448: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27664: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27451: \$? = $ac_status" >&5 + echo "$as_me:27667: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27454: \"$ac_try\"") >&5 + { (eval echo "$as_me:27670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27457: \$? = $ac_status" >&5 + echo "$as_me:27673: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 27462 "configure" +#line 27678 "configure" #include "confdefs.h" $ac_includes_default @@ -27491,16 +27707,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27494: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27710: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27497: \$? = $ac_status" >&5 + echo "$as_me:27713: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27500: \"$ac_try\"") >&5 + { (eval echo "$as_me:27716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27503: \$? = $ac_status" >&5 + echo "$as_me:27719: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -27516,7 +27732,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 27519 "configure" +#line 27735 "configure" #include "confdefs.h" $ac_includes_default @@ -27548,16 +27764,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27767: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27554: \$? = $ac_status" >&5 + echo "$as_me:27770: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27557: \"$ac_try\"") >&5 + { (eval echo "$as_me:27773: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27560: \$? = $ac_status" >&5 + echo "$as_me:27776: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -27573,7 +27789,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 27576 "configure" +#line 27792 "configure" #include "confdefs.h" $ac_includes_default @@ -27605,16 +27821,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:27608: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27824: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27611: \$? = $ac_status" >&5 + echo "$as_me:27827: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:27614: \"$ac_try\"") >&5 + { (eval echo "$as_me:27830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27617: \$? = $ac_status" >&5 + echo "$as_me:27833: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -27627,12 +27843,12 @@ ac_cv_sizeof_bool=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:27630: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:27846: 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 27635 "configure" +#line 27851 "configure" #include "confdefs.h" $ac_includes_default @@ -27668,15 +27884,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27671: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27887: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27674: \$? = $ac_status" >&5 + echo "$as_me:27890: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27676: \"$ac_try\"") >&5 + { (eval echo "$as_me:27892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27679: \$? = $ac_status" >&5 + echo "$as_me:27895: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_bool=`cat conftest.val` else @@ -27692,13 +27908,13 @@ ac_cv_sizeof_bool=0 fi fi -echo "$as_me:27695: result: $ac_cv_sizeof_bool" >&5 +echo "$as_me:27911: result: $ac_cv_sizeof_bool" >&5 echo "${ECHO_T}$ac_cv_sizeof_bool" >&6 cat >>confdefs.h <&5 +echo "$as_me:27917: 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 @@ -27717,7 +27933,7 @@ else cat >"conftest.$ac_ext" <<_ACEOF -#line 27720 "configure" +#line 27936 "configure" #include "confdefs.h" $ac_includes_default @@ -27743,7 +27959,7 @@ int main(void) { FILE *fp = fopen("cf_test.out", "w"); - if (fp != 0) { + if (fp != NULL) { bool x = true; if ((bool)(-x) >= 0) fputs("unsigned ", fp); @@ -27758,15 +27974,15 @@ _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:27761: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27764: \$? = $ac_status" >&5 + echo "$as_me:27980: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:27766: \"$ac_try\"") >&5 + { (eval echo "$as_me:27982: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27769: \$? = $ac_status" >&5 + echo "$as_me:27985: \$? = $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 @@ -27783,14 +27999,14 @@ rm -f cf_test.out fi -echo "$as_me:27786: result: $cf_cv_type_of_bool" >&5 +echo "$as_me:28002: 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:27793: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 + { echo "$as_me:28009: 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 @@ -27821,7 +28037,7 @@ if test "$cf_with_ada" != "no" ; then if test "$with_libtool" != "no"; then - { echo "$as_me:27824: WARNING: libtool does not support Ada - disabling feature" >&5 + { echo "$as_me:28040: 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 @@ -27832,7 +28048,7 @@ ADAFLAGS="$ADAFLAGS -gnatpn" - echo "$as_me:27835: checking optimization options for ADAFLAGS" >&5 + echo "$as_me:28051: checking optimization options for ADAFLAGS" >&5 echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6 case "$CFLAGS" in (*-g*) @@ -27849,10 +28065,10 @@ ;; esac - echo "$as_me:27852: result: $ADAFLAGS" >&5 + echo "$as_me:28068: result: $ADAFLAGS" >&5 echo "${ECHO_T}$ADAFLAGS" >&6 -echo "$as_me:27855: checking if GNATPREP supports -T option" >&5 +echo "$as_me:28071: 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 @@ -27862,11 +28078,11 @@ gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes fi -echo "$as_me:27865: result: $cf_cv_gnatprep_opt_t" >&5 +echo "$as_me:28081: 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:27869: checking if GNAT supports generics" >&5 +echo "$as_me:28085: 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]) @@ -27876,7 +28092,7 @@ cf_gnat_generics=no ;; esac -echo "$as_me:27879: result: $cf_gnat_generics" >&5 +echo "$as_me:28095: result: $cf_gnat_generics" >&5 echo "${ECHO_T}$cf_gnat_generics" >&6 if test "$cf_gnat_generics" = yes @@ -27888,7 +28104,7 @@ cf_generic_objects= fi -echo "$as_me:27891: checking if GNAT supports SIGINT" >&5 +echo "$as_me:28107: 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 @@ -27936,7 +28152,7 @@ rm -rf ./conftest* ./*~conftest* fi -echo "$as_me:27939: result: $cf_cv_gnat_sigint" >&5 +echo "$as_me:28155: result: $cf_cv_gnat_sigint" >&5 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6 if test "$cf_cv_gnat_sigint" = yes ; then @@ -27949,7 +28165,7 @@ cf_gnat_projects=no if test "$enable_gnat_projects" != no ; then -echo "$as_me:27952: checking if GNAT supports project files" >&5 +echo "$as_me:28168: 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]*) @@ -28012,15 +28228,15 @@ esac ;; esac -echo "$as_me:28015: result: $cf_gnat_projects" >&5 +echo "$as_me:28231: 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:28021: checking if GNAT supports libraries" >&5 + echo "$as_me:28237: checking if GNAT supports libraries" >&5 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6 - echo "$as_me:28023: result: $cf_gnat_libraries" >&5 + echo "$as_me:28239: result: $cf_gnat_libraries" >&5 echo "${ECHO_T}$cf_gnat_libraries" >&6 fi @@ -28040,7 +28256,7 @@ then USE_GNAT_MAKE_GPR="" else - { echo "$as_me:28043: WARNING: use old makefile rules since tools are missing" >&5 + { echo "$as_me:28259: 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 @@ -28052,7 +28268,7 @@ USE_GNAT_LIBRARIES="#" fi -echo "$as_me:28055: checking for Ada95 compiler" >&5 +echo "$as_me:28271: 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. @@ -28063,12 +28279,12 @@ cf_ada_compiler=gnatmake fi; -echo "$as_me:28066: result: $cf_ada_compiler" >&5 +echo "$as_me:28282: result: $cf_ada_compiler" >&5 echo "${ECHO_T}$cf_ada_compiler" >&6 cf_ada_package=terminal_interface -echo "$as_me:28071: checking for Ada95 include directory" >&5 +echo "$as_me:28287: 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. @@ -28102,7 +28318,7 @@ withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:28105: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:28321: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -28111,10 +28327,10 @@ fi eval ADA_INCLUDE="$withval" -echo "$as_me:28114: result: $ADA_INCLUDE" >&5 +echo "$as_me:28330: result: $ADA_INCLUDE" >&5 echo "${ECHO_T}$ADA_INCLUDE" >&6 -echo "$as_me:28117: checking for Ada95 object directory" >&5 +echo "$as_me:28333: 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. @@ -28148,7 +28364,7 @@ withval=`echo "$withval" | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:28151: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:28367: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -28157,10 +28373,10 @@ fi eval ADA_OBJECTS="$withval" -echo "$as_me:28160: result: $ADA_OBJECTS" >&5 +echo "$as_me:28376: result: $ADA_OBJECTS" >&5 echo "${ECHO_T}$ADA_OBJECTS" >&6 -echo "$as_me:28163: checking whether to build an Ada95 shared library" >&5 +echo "$as_me:28379: 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. @@ -28181,11 +28397,11 @@ fi fi -echo "$as_me:28184: result: $with_ada_sharedlib" >&5 +echo "$as_me:28400: result: $with_ada_sharedlib" >&5 echo "${ECHO_T}$with_ada_sharedlib" >&6 if test "x$cf_ada_sharedlib_warn" != xno then - { echo "$as_me:28188: WARNING: disabling Ada95 shared library since GNAT projects are not supported" >&5 + { echo "$as_me:28404: 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 @@ -28203,7 +28419,7 @@ # allow the Ada binding to be renamed -echo "$as_me:28206: checking for Ada95 curses library name" >&5 +echo "$as_me:28422: 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. @@ -28219,7 +28435,7 @@ ;; esac -echo "$as_me:28222: result: $ADA_LIBNAME" >&5 +echo "$as_me:28438: result: $ADA_LIBNAME" >&5 echo "${ECHO_T}$ADA_LIBNAME" >&6 fi @@ -28230,13 +28446,13 @@ # do this "late" to avoid conflict with header-checks if test "x$with_widec" = xyes ; then - echo "$as_me:28233: checking for wchar_t" >&5 + echo "$as_me:28449: 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 28239 "configure" +#line 28455 "configure" #include "confdefs.h" $ac_includes_default int @@ -28251,16 +28467,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28254: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28470: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28257: \$? = $ac_status" >&5 + echo "$as_me:28473: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28260: \"$ac_try\"") >&5 + { (eval echo "$as_me:28476: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28263: \$? = $ac_status" >&5 + echo "$as_me:28479: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_type_wchar_t=yes else @@ -28270,10 +28486,10 @@ fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:28273: result: $ac_cv_type_wchar_t" >&5 +echo "$as_me:28489: result: $ac_cv_type_wchar_t" >&5 echo "${ECHO_T}$ac_cv_type_wchar_t" >&6 -echo "$as_me:28276: checking size of wchar_t" >&5 +echo "$as_me:28492: 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 @@ -28282,7 +28498,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >"conftest.$ac_ext" <<_ACEOF -#line 28285 "configure" +#line 28501 "configure" #include "confdefs.h" $ac_includes_default int @@ -28294,21 +28510,21 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28297: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28513: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28300: \$? = $ac_status" >&5 + echo "$as_me:28516: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28303: \"$ac_try\"") >&5 + { (eval echo "$as_me:28519: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28306: \$? = $ac_status" >&5 + echo "$as_me:28522: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=0 ac_mid=0 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 28311 "configure" +#line 28527 "configure" #include "confdefs.h" $ac_includes_default int @@ -28320,16 +28536,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28323: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28539: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28326: \$? = $ac_status" >&5 + echo "$as_me:28542: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28329: \"$ac_try\"") >&5 + { (eval echo "$as_me:28545: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28332: \$? = $ac_status" >&5 + echo "$as_me:28548: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid; break else @@ -28345,7 +28561,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >"conftest.$ac_ext" <<_ACEOF -#line 28348 "configure" +#line 28564 "configure" #include "confdefs.h" $ac_includes_default int @@ -28357,16 +28573,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28360: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28576: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28363: \$? = $ac_status" >&5 + echo "$as_me:28579: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28366: \"$ac_try\"") >&5 + { (eval echo "$as_me:28582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28369: \$? = $ac_status" >&5 + echo "$as_me:28585: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_lo=$ac_mid; break else @@ -28382,7 +28598,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 28385 "configure" +#line 28601 "configure" #include "confdefs.h" $ac_includes_default int @@ -28394,16 +28610,16 @@ } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:28397: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28613: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28400: \$? = $ac_status" >&5 + echo "$as_me:28616: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:28403: \"$ac_try\"") >&5 + { (eval echo "$as_me:28619: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28406: \$? = $ac_status" >&5 + echo "$as_me:28622: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_hi=$ac_mid else @@ -28416,12 +28632,12 @@ ac_cv_sizeof_wchar_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28419: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28635: 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 28424 "configure" +#line 28640 "configure" #include "confdefs.h" $ac_includes_default int @@ -28437,15 +28653,15 @@ } _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:28440: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28656: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28443: \$? = $ac_status" >&5 + echo "$as_me:28659: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:28445: \"$ac_try\"") >&5 + { (eval echo "$as_me:28661: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28448: \$? = $ac_status" >&5 + echo "$as_me:28664: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_sizeof_wchar_t=`cat conftest.val` else @@ -28461,7 +28677,7 @@ ac_cv_sizeof_wchar_t=0 fi fi -echo "$as_me:28464: result: $ac_cv_sizeof_wchar_t" >&5 +echo "$as_me:28680: result: $ac_cv_sizeof_wchar_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_wchar_t" >&6 cat >>confdefs.h <&6 -echo "${as_me:-configure}:28477: testing test failed (assume 2) ..." 1>&5 +echo "${as_me:-configure}:28693: testing test failed (assume 2) ..." 1>&5 sed /SIZEOF_WCHAR_T/d confdefs.h >confdefs.tmp mv confdefs.tmp confdefs.h @@ -28492,7 +28708,7 @@ ### chooses to split module lists into libraries. ### ### (see CF_LIB_RULES). -echo "$as_me:28495: checking for library subsets" >&5 +echo "$as_me:28711: checking for library subsets" >&5 echo $ECHO_N "checking for library subsets... $ECHO_C" >&6 LIB_SUBSETS= @@ -28546,7 +28762,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:28549: result: $LIB_SUBSETS" >&5 +echo "$as_me:28765: result: $LIB_SUBSETS" >&5 echo "${ECHO_T}$LIB_SUBSETS" >&6 ### Construct the list of include-directories to be generated @@ -28577,7 +28793,7 @@ fi ### Build up pieces for makefile rules -echo "$as_me:28580: checking default library suffix" >&5 +echo "$as_me:28796: checking default library suffix" >&5 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6 case $DFT_LWR_MODEL in @@ -28588,10 +28804,10 @@ (shared) DFT_ARG_SUFFIX='' ;; esac test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}" -echo "$as_me:28591: result: $DFT_ARG_SUFFIX" >&5 +echo "$as_me:28807: result: $DFT_ARG_SUFFIX" >&5 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6 -echo "$as_me:28594: checking default library-dependency suffix" >&5 +echo "$as_me:28810: checking default library-dependency suffix" >&5 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6 case X$DFT_LWR_MODEL in @@ -28674,10 +28890,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:28677: result: $DFT_DEP_SUFFIX" >&5 +echo "$as_me:28893: result: $DFT_DEP_SUFFIX" >&5 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6 -echo "$as_me:28680: checking default object directory" >&5 +echo "$as_me:28896: checking default object directory" >&5 echo $ECHO_N "checking default object directory... $ECHO_C" >&6 case $DFT_LWR_MODEL in @@ -28693,11 +28909,11 @@ DFT_OBJ_SUBDIR='obj_s' ;; esac esac -echo "$as_me:28696: result: $DFT_OBJ_SUBDIR" >&5 +echo "$as_me:28912: result: $DFT_OBJ_SUBDIR" >&5 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6 if test "x$cf_with_cxx" = xyes ; then -echo "$as_me:28700: checking c++ library-dependency suffix" >&5 +echo "$as_me:28916: 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++) @@ -28790,7 +29006,7 @@ fi fi -echo "$as_me:28793: result: $CXX_LIB_SUFFIX" >&5 +echo "$as_me:29009: result: $CXX_LIB_SUFFIX" >&5 echo "${ECHO_T}$CXX_LIB_SUFFIX" >&6 fi @@ -28966,19 +29182,19 @@ if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED" then - echo "$as_me:28969: checking if linker supports switching between static/dynamic" >&5 + echo "$as_me:29185: 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:28978: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:29194: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28981: \$? = $ac_status" >&5 + echo "$as_me:29197: \$? = $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 @@ -28989,10 +29205,10 @@ LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 28992 "configure" +#line 29208 "configure" #include "confdefs.h" -#line 28995 "configure" +#line 29211 "configure" #include int cf_ldflags_static(FILE *fp); @@ -29007,16 +29223,16 @@ } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:29010: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29226: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29013: \$? = $ac_status" >&5 + echo "$as_me:29229: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:29016: \"$ac_try\"") >&5 + { (eval echo "$as_me:29232: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29019: \$? = $ac_status" >&5 + echo "$as_me:29235: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then # some linkers simply ignore the -dynamic @@ -29039,7 +29255,7 @@ rm -f libconftest.* LIBS="$cf_save_LIBS" - echo "$as_me:29042: result: $cf_ldflags_static" >&5 + echo "$as_me:29258: result: $cf_ldflags_static" >&5 echo "${ECHO_T}$cf_ldflags_static" >&6 if test "$cf_ldflags_static" != yes @@ -29055,7 +29271,7 @@ ;; esac -echo "$as_me:29058: checking where we will install curses.h" >&5 +echo "$as_me:29274: checking where we will install curses.h" >&5 echo $ECHO_N "checking where we will install curses.h... $ECHO_C" >&6 includesubdir= @@ -29065,7 +29281,7 @@ then includesubdir="/ncurses${USE_LIB_SUFFIX}" fi -echo "$as_me:29068: result: ${includedir}${includesubdir}" >&5 +echo "$as_me:29284: result: ${includedir}${includesubdir}" >&5 echo "${ECHO_T}${includedir}${includesubdir}" >&6 ### Resolve a conflict between normal and wide-curses by forcing applications @@ -29073,7 +29289,7 @@ if test "$with_overwrite" != no ; then if test "$NCURSES_LIBUTF8" = 1 ; then NCURSES_LIBUTF8='defined(HAVE_LIBUTF8_H)' - { echo "$as_me:29076: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&5 + { echo "$as_me:29292: 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 @@ -29098,7 +29314,7 @@ # pkgsrc uses these -echo "$as_me:29101: checking for desired basename for form library" >&5 +echo "$as_me:29317: 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. @@ -29118,10 +29334,10 @@ ;; esac -echo "$as_me:29121: result: $FORM_NAME" >&5 +echo "$as_me:29337: result: $FORM_NAME" >&5 echo "${ECHO_T}$FORM_NAME" >&6 -echo "$as_me:29124: checking for desired basename for menu library" >&5 +echo "$as_me:29340: 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. @@ -29141,10 +29357,10 @@ ;; esac -echo "$as_me:29144: result: $MENU_NAME" >&5 +echo "$as_me:29360: result: $MENU_NAME" >&5 echo "${ECHO_T}$MENU_NAME" >&6 -echo "$as_me:29147: checking for desired basename for panel library" >&5 +echo "$as_me:29363: 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. @@ -29164,10 +29380,10 @@ ;; esac -echo "$as_me:29167: result: $PANEL_NAME" >&5 +echo "$as_me:29383: result: $PANEL_NAME" >&5 echo "${ECHO_T}$PANEL_NAME" >&6 -echo "$as_me:29170: checking for desired basename for cxx library" >&5 +echo "$as_me:29386: 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. @@ -29187,13 +29403,13 @@ ;; esac -echo "$as_me:29190: result: $CXX_NAME" >&5 +echo "$as_me:29406: 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:29196: checking for src modules" >&5 +echo "$as_me:29412: checking for src modules" >&5 echo $ECHO_N "checking for src modules... $ECHO_C" >&6 # dependencies and linker-arguments for test-programs @@ -29252,7 +29468,7 @@ fi fi done -echo "$as_me:29255: result: $cf_cv_src_modules" >&5 +echo "$as_me:29471: result: $cf_cv_src_modules" >&5 echo "${ECHO_T}$cf_cv_src_modules" >&6 TEST_ARGS="-L${LIB_DIR} $TEST_ARGS" @@ -29413,7 +29629,7 @@ (*-D_XOPEN_SOURCE_EXTENDED*) test -n "$verbose" && echo " moving _XOPEN_SOURCE_EXTENDED to work around g++ problem" 1>&6 -echo "${as_me:-configure}:29416: testing moving _XOPEN_SOURCE_EXTENDED to work around g++ problem ..." 1>&5 +echo "${as_me:-configure}:29632: 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//'` @@ -29424,7 +29640,7 @@ # Help to automatically enable the extended curses features when using either # the *-config or the ".pc" files by adding defines. -echo "$as_me:29427: checking for defines to add to ncurses${USE_CFG_SUFFIX}${cf_config_suffix}-config script" >&5 +echo "$as_me:29643: 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 @@ -29440,7 +29656,7 @@ done test "$cf_found" = no && PKG_CFLAGS="$PKG_CFLAGS $cf_loop1" done -echo "$as_me:29443: result: $PKG_CFLAGS" >&5 +echo "$as_me:29659: result: $PKG_CFLAGS" >&5 echo "${ECHO_T}$PKG_CFLAGS" >&6 case "$cf_cv_system_name" in @@ -29512,7 +29728,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}:29515: testing will map symbols to ABI=$cf_cv_abi_default ..." 1>&5 +echo "${as_me:-configure}:29731: testing will map symbols to ABI=$cf_cv_abi_default ..." 1>&5 fi @@ -29539,7 +29755,7 @@ # This is used for the *-config script and *.pc data files. -echo "$as_me:29542: checking for linker search path" >&5 +echo "$as_me:29758: 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 @@ -29587,7 +29803,7 @@ cf_pathlist="$cf_pathlist /lib /usr/lib" ;; (*) - { echo "$as_me:29590: WARNING: problem with Solaris architecture" >&5 + { echo "$as_me:29806: WARNING: problem with Solaris architecture" >&5 echo "$as_me: WARNING: problem with Solaris architecture" >&2;} ;; esac @@ -29628,7 +29844,7 @@ test -z "$cf_cv_ld_searchpath" && cf_cv_ld_searchpath=/usr/lib fi -echo "$as_me:29631: result: $cf_cv_ld_searchpath" >&5 +echo "$as_me:29847: 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'` @@ -29714,7 +29930,7 @@ : "${CONFIG_STATUS=./config.status}" ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:29717: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:29933: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >"$CONFIG_STATUS" <<_ACEOF #! $SHELL @@ -29895,7 +30111,7 @@ echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:29898: error: ambiguous option: $1 + { { echo "$as_me:30114: 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;} @@ -29914,7 +30130,7 @@ ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:29917: error: unrecognized option: $1 + -*) { { echo "$as_me:30133: 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;} @@ -30046,7 +30262,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:30049: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:30265: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -30571,7 +30787,7 @@ esac if test x"$ac_file" != x-; then - { echo "$as_me:30574: creating $ac_file" >&5 + { echo "$as_me:30790: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -30589,7 +30805,7 @@ -) echo "$tmp"/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:30592: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:30808: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo "$f";; @@ -30602,7 +30818,7 @@ echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:30605: error: cannot find input file: $f" >&5 + { { echo "$as_me:30821: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -30618,7 +30834,7 @@ if test -n "$ac_seen"; then ac_used=`grep '@datarootdir@' "$ac_item"` if test -z "$ac_used"; then - { echo "$as_me:30621: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:30837: 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;} @@ -30627,7 +30843,7 @@ fi ac_seen=`grep '${datarootdir}' "$ac_item"` if test -n "$ac_seen"; then - { echo "$as_me:30630: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:30846: 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;} @@ -30672,7 +30888,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:30675: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:30891: 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;} @@ -30683,7 +30899,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:30686: WARNING: Some variables may not be substituted: + { echo "$as_me:30902: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -30732,7 +30948,7 @@ * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:30735: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:30951: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -30743,7 +30959,7 @@ -) echo "$tmp"/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:30746: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:30962: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -30756,7 +30972,7 @@ echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:30759: error: cannot find input file: $f" >&5 + { { echo "$as_me:30975: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -30814,7 +31030,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:30817: $ac_file is unchanged" >&5 + { echo "$as_me:31033: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ @@ -31201,7 +31417,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}:31204: testing overriding CXX_MODEL to SHARED ..." 1>&5 +echo "${as_me:-configure}:31420: testing overriding CXX_MODEL to SHARED ..." 1>&5 with_shared_cxx=yes ;; Index: configure.in Prereq: 1.787 --- ncurses-6.5-20241207+/configure.in 2024-11-23 22:52:31.000000000 +0000 +++ ncurses-6.5-20241214/configure.in 2024-12-14 21:14:32.000000000 +0000 @@ -29,7 +29,7 @@ dnl dnl Author: Thomas E. Dickey 1995-on dnl -dnl $Id: configure.in,v 1.787 2024/11/23 22:52:31 tom Exp $ +dnl $Id: configure.in,v 1.788 2024/12/14 21:14:32 tom Exp $ dnl Process this file with autoconf to produce a configure script. dnl dnl For additional information, see @@ -38,7 +38,7 @@ dnl dnl --------------------------------------------------------------------------- AC_PREREQ(2.52.20210101) -AC_REVISION($Revision: 1.787 $) +AC_REVISION($Revision: 1.788 $) AC_INIT(ncurses/base/lib_initscr.c) AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin) @@ -1871,6 +1871,10 @@ CF_VA_COPY AC_FUNC_VFORK CF_FOPEN_BIN_R +CF_CHECK_TYPE2(cc_t,termios.h) +CF_CHECK_TYPE2(speed_t,termios.h) +CF_CHECK_TYPE2(tcflag_t,termios.h) +CF_CHECK_TYPE2(sigset_t,signal.h) # special check for test/ditto.c CF_FUNC_OPENPTY Index: dist.mk Prereq: 1.1644 --- ncurses-6.5-20241207+/dist.mk 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/dist.mk 2024-12-14 11:34:56.000000000 +0000 @@ -26,7 +26,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: dist.mk,v 1.1644 2024/12/07 11:51:44 tom Exp $ +# $Id: dist.mk,v 1.1645 2024/12/14 11:34:56 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 = 20241207 +NCURSES_PATCH = 20241214 # We don't append the patch to the version, since this only applies to releases VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR) Index: include/curses.h.in Prereq: 1.284 --- ncurses-6.5-20241207+/include/curses.h.in 2024-12-07 17:14:44.000000000 +0000 +++ ncurses-6.5-20241214/include/curses.h.in 2024-12-14 23:49:34.000000000 +0000 @@ -33,7 +33,7 @@ * and: Thomas E. Dickey 1996-on * ****************************************************************************/ -/* $Id: curses.h.in,v 1.284 2024/12/07 17:14:44 tom Exp $ */ +/* $Id: curses.h.in,v 1.287 2024/12/14 23:49:34 tom Exp $ */ #ifndef __NCURSES_H #define __NCURSES_H @@ -296,7 +296,7 @@ #include /* use whatever the C compiler decides bool really is */ #define NCURSES_BOOL bool -#else +#elif !defined(__cplusplus) && !@cf_cv_builtin_bool@ /* there is no predefined bool - use our own */ #undef bool #define bool NCURSES_BOOL @@ -311,7 +311,7 @@ #define NCURSES_CAST(type,value) (type)(value) #endif -#define NCURSES_OK_ADDR(p) (0 != NCURSES_CAST(const void *, (p))) +#define NCURSES_OK_ADDR(p) (NULL != NCURSES_CAST(const void *, (p))) /* * X/Open attributes. In the ncurses implementation, they are identical to the Index: include/ncurses_defs Prereq: 1.112 --- ncurses-6.5-20241207+/include/ncurses_defs 2024-05-19 09:02:51.000000000 +0000 +++ ncurses-6.5-20241214/include/ncurses_defs 2024-12-14 21:20:43.000000000 +0000 @@ -1,4 +1,4 @@ -# $Id: ncurses_defs,v 1.112 2024/05/19 09:02:51 tom Exp $ +# $Id: ncurses_defs,v 1.113 2024/12/14 21:20:43 tom Exp $ ############################################################################## # Copyright 2018-2023,2024 Thomas E. Dickey # # Copyright 2000-2016,2017 Free Software Foundation, Inc. # @@ -50,6 +50,7 @@ HAVE_BSD_STRING_H HAVE_BTOWC HAVE_BUILTIN_H +HAVE_CC_T HAVE_CHGAT 1 HAVE_CLOCK_GETTIME HAVE_COLOR_CONTENT 1 @@ -158,11 +159,13 @@ HAVE_SETVBUF HAVE_SGTTY_H HAVE_SIGACTION +HAVE_SIGSET_T HAVE_SIGVEC HAVE_SIZECHANGE HAVE_SLK_COLOR HAVE_SLK_INIT 1 HAVE_SNPRINTF +HAVE_SPEED_T HAVE_STDINT_H HAVE_STRDUP HAVE_STRLCAT @@ -170,8 +173,8 @@ HAVE_STRSTR HAVE_SYMLINK HAVE_SYSCONF -HAVE_SYS_BSDTYPES_H HAVE_SYS_AUXV_H +HAVE_SYS_BSDTYPES_H HAVE_SYS_IOCTL_H HAVE_SYS_PARAM_H HAVE_SYS_POLL_H @@ -180,6 +183,7 @@ HAVE_SYS_TIMES_H HAVE_SYS_TIME_H HAVE_SYS_TIME_SELECT +HAVE_TCFLAG_T HAVE_TCGETATTR HAVE_TCGETPGRP HAVE_TELL @@ -193,10 +197,10 @@ HAVE_TGETENT 1 HAVE_TIGETNUM 1 HAVE_TIGETSTR 1 +HAVE_TIMES HAVE_TIPARM 1 HAVE_TIPARM_S 1 HAVE_TISCAN_S 1 -HAVE_TIMES HAVE_TPUTS_SP HAVE_TSEARCH HAVE_TYPEAHEAD 1 @@ -231,8 +235,8 @@ HAVE_WRESIZE HAVE_WSYNCDOWN 1 HAVE__DOSCAN -HAVE__TRACEF HAVE__NC_TPARM_ANALYZE 1 +HAVE__TRACEF MIXEDCASE_FILENAMES NCURSES_CHAR_EQ NCURSES_EXPANDED Index: ncurses/base/lib_beep.c Prereq: 1.19 --- ncurses-6.5-20241207+/ncurses/base/lib_beep.c 2024-12-07 20:00:48.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/base/lib_beep.c 2024-12-15 00:03:48.000000000 +0000 @@ -47,7 +47,7 @@ #define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: lib_beep.c,v 1.19 2024/12/07 20:00:48 tom Exp $") +MODULE_ID("$Id: lib_beep.c,v 1.20 2024/12/15 00:03:48 tom Exp $") /* * beep() @@ -65,7 +65,7 @@ T((T_CALLED("beep(%p)"), (void *) SP_PARM)); #ifdef USE_TERM_DRIVER - if (SP_PARM != 0) + if (SP_PARM != NULL) res = CallDriver_1(SP_PARM, td_doBeepOrFlash, TRUE); #else /* FIXME: should make sure that we are not in altchar mode */ Index: ncurses/base/lib_color.c Prereq: 1.153 --- ncurses-6.5-20241207+/ncurses/base/lib_color.c 2024-12-07 17:28:13.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/base/lib_color.c 2024-12-14 23:49:54.000000000 +0000 @@ -49,7 +49,7 @@ #define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: lib_color.c,v 1.153 2024/12/07 17:28:13 tom Exp $") +MODULE_ID("$Id: lib_color.c,v 1.154 2024/12/14 23:49:54 tom Exp $") #ifdef USE_TERM_DRIVER #define CanChange InfoOf(SP_PARM).canchange @@ -540,7 +540,7 @@ sp->_color_pairs = next; #else TYPE_REALLOC(colorpair_t, have, sp->_color_pairs); - if (sp->_color_pairs != 0) { + if (sp->_color_pairs != NULL) { memset(sp->_color_pairs + sp->_pair_alloc, 0, sizeof(colorpair_t) * (size_t) (have - sp->_pair_alloc)); } Index: ncurses/base/lib_driver.c Prereq: 1.9 --- ncurses-6.5-20241207+/ncurses/base/lib_driver.c 2020-08-29 19:53:35.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/base/lib_driver.c 2024-12-14 22:31:35.000000000 +0000 @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright 2018,2020 Thomas E. Dickey * + * Copyright 2018-2020,2024 Thomas E. Dickey * * Copyright 2009-2012,2014 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * @@ -34,7 +34,7 @@ #include -MODULE_ID("$Id: lib_driver.c,v 1.9 2020/08/29 19:53:35 tom Exp $") +MODULE_ID("$Id: lib_driver.c,v 1.10 2024/12/14 22:31:35 tom Exp $") #ifndef EXP_WIN32_DRIVER typedef struct DriverEntry { @@ -56,7 +56,7 @@ int code = ERR; size_t i; TERM_DRIVER *res = (TERM_DRIVER *) 0; - TERM_DRIVER *use = 0; + TERM_DRIVER *use = NULL; T((T_CALLED("_nc_get_driver(%p, %s, %p)"), (void *) TCB, NonNull(name), (void *) errret)); @@ -72,7 +72,7 @@ } } } - if (use != 0) { + if (use != NULL) { TCB->drv = use; code = OK; } @@ -98,7 +98,7 @@ { int code = ERR; - if (0 != TerminalOf(sp)) + if (NULL != TerminalOf(sp)) code = CallDriver_2(sp, td_print, data, len); return (code); } Index: ncurses/base/lib_flash.c Prereq: 1.15 --- ncurses-6.5-20241207+/ncurses/base/lib_flash.c 2020-02-02 23:34:34.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/base/lib_flash.c 2024-12-14 22:31:47.000000000 +0000 @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright 2020 Thomas E. Dickey * + * Copyright 2020,2024 Thomas E. Dickey * * Copyright 1998-2013,2014 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * @@ -47,7 +47,7 @@ #define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: lib_flash.c,v 1.15 2020/02/02 23:34:34 tom Exp $") +MODULE_ID("$Id: lib_flash.c,v 1.16 2024/12/14 22:31:47 tom Exp $") /* * flash() @@ -64,7 +64,7 @@ T((T_CALLED("flash(%p)"), (void *) SP_PARM)); #ifdef USE_TERM_DRIVER - if (SP_PARM != 0) + if (SP_PARM != NULL) res = CallDriver_1(SP_PARM, td_doBeepOrFlash, FALSE); #else if (HasTerminal(SP_PARM)) { Index: ncurses/base/lib_newwin.c Prereq: 1.78 --- ncurses-6.5-20241207+/ncurses/base/lib_newwin.c 2024-12-07 20:19:18.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/base/lib_newwin.c 2024-12-14 23:50:18.000000000 +0000 @@ -44,13 +44,13 @@ #include #include -MODULE_ID("$Id: lib_newwin.c,v 1.78 2024/12/07 20:19:18 tom Exp $") +MODULE_ID("$Id: lib_newwin.c,v 1.79 2024/12/14 23:50:18 tom Exp $") #define window_is(name) ((sp)->_##name == win) #if USE_REENTRANT #define remove_window(name) \ - sp->_##name = 0 + sp->_##name = NULL #else #define remove_window(name) \ sp->_##name = NULL; \ Index: ncurses/base/lib_restart.c Prereq: 1.19 --- ncurses-6.5-20241207+/ncurses/base/lib_restart.c 2024-12-07 20:03:37.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/base/lib_restart.c 2024-12-15 00:04:09.000000000 +0000 @@ -42,7 +42,7 @@ #include -MODULE_ID("$Id: lib_restart.c,v 1.19 2024/12/07 20:03:37 tom Exp $") +MODULE_ID("$Id: lib_restart.c,v 1.20 2024/12/15 00:04:09 tom Exp $") NCURSES_EXPORT(int) NCURSES_SP_NAME(restartterm) (NCURSES_SP_DCLx @@ -52,7 +52,7 @@ { int result; #ifdef USE_TERM_DRIVER - TERMINAL *new_term = 0; + TERMINAL *new_term = NULL; #endif START_TRACE(); Index: ncurses/base/lib_set_term.c Prereq: 1.190 --- ncurses-6.5-20241207+/ncurses/base/lib_set_term.c 2024-12-07 17:58:16.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/base/lib_set_term.c 2024-12-15 00:04:13.000000000 +0000 @@ -57,7 +57,7 @@ #undef CUR #define CUR SP_TERMTYPE -MODULE_ID("$Id: lib_set_term.c,v 1.190 2024/12/07 17:58:16 tom Exp $") +MODULE_ID("$Id: lib_set_term.c,v 1.191 2024/12/15 00:04:13 tom Exp $") #ifdef USE_TERM_DRIVER #define MaxColors InfoOf(sp).maxcolors @@ -160,7 +160,7 @@ rop++) { if (rop->win) { (void) delwin(rop->win); - rop->win = 0; + rop->win = NULL; } } } Index: ncurses/build.priv.h Prereq: 1.12 --- ncurses-6.5-20241207+/ncurses/build.priv.h 2020-02-02 23:34:34.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/build.priv.h 2024-12-14 22:32:09.000000000 +0000 @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright 2019,2020 Thomas E. Dickey * + * Copyright 2019-2020,2024 Thomas E. Dickey * * Copyright 2010,2012 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * @@ -32,7 +32,7 @@ ****************************************************************************/ /* - * $Id: build.priv.h,v 1.12 2020/02/02 23:34:34 tom Exp $ + * $Id: build.priv.h,v 1.13 2024/12/14 22:32:09 tom Exp $ * * build.priv.h * @@ -78,7 +78,7 @@ #define EXIT_FAILURE 1 #endif -#define FreeAndNull(p) do { free(p); p = 0; } while (0) +#define FreeAndNull(p) do { free(p); p = NULL; } while (0) #define UChar(c) ((unsigned char)(c)) #define SIZEOF(v) (sizeof(v) / sizeof(v[0])) Index: ncurses/curses.priv.h Prereq: 1.697 --- ncurses-6.5-20241207+/ncurses/curses.priv.h 2024-12-07 18:27:10.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/curses.priv.h 2024-12-15 00:04:23.000000000 +0000 @@ -35,7 +35,7 @@ ****************************************************************************/ /* - * $Id: curses.priv.h,v 1.697 2024/12/07 18:27:10 tom Exp $ + * $Id: curses.priv.h,v 1.698 2024/12/15 00:04:23 tom Exp $ * * curses.priv.h * @@ -2568,8 +2568,8 @@ && strncmp(value, "/dev/pts/", 9)) #ifdef USE_TERM_DRIVER -# define IsTermInfo(sp) ((TCBOf(sp) != 0) && ((TCBOf(sp)->drv->isTerminfo))) -# define HasTInfoTerminal(sp) ((0 != TerminalOf(sp)) && IsTermInfo(sp)) +# define IsTermInfo(sp) ((TCBOf(sp) != NULL) && ((TCBOf(sp)->drv->isTerminfo))) +# define HasTInfoTerminal(sp) ((NULL != TerminalOf(sp)) && IsTermInfo(sp)) # if defined(EXP_WIN32_DRIVER) # define IsTermInfoOnConsole(sp) (IsTermInfo(sp) && _nc_console_test(TerminalOf(sp)->Filedes)) # elif defined(USE_WIN32CON_DRIVER) Index: ncurses/tinfo/MKcodes.awk Prereq: 1.12 --- ncurses-6.5-20241207+/ncurses/tinfo/MKcodes.awk 2024-12-07 20:03:37.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/MKcodes.awk 2024-12-14 23:45:36.000000000 +0000 @@ -26,7 +26,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: MKcodes.awk,v 1.12 2024/12/07 20:03:37 tom Exp $ +# $Id: MKcodes.awk,v 1.13 2024/12/14 23:45:36 tom Exp $ function large_item(value) { result = sprintf("%d,", offset); offset = offset + length(value) + 1; @@ -63,7 +63,7 @@ printf "%s", value print "};" print "" - printf "static NCURSES_CONST char ** ptr_%s = 0;\n", name + printf "static NCURSES_CONST char ** ptr_%s = NULL;\n", name print "" } @@ -114,8 +114,8 @@ print "static IT *" print "alloc_array(NCURSES_CONST char ***value, const short *offsets, unsigned size)" print "{" - print " if (*value == 0) {" - print " if ((*value = typeCalloc(NCURSES_CONST char *, size + 1)) != 0) {" + print " if (*value == NULL) {" + print " if ((*value = typeCalloc(NCURSES_CONST char *, size + 1)) != NULL) {" print " unsigned n;" print " for (n = 0; n < size; ++n) {" print " (*value)[n] = (NCURSES_CONST char *) _nc_code_blob + offsets[n];" Index: ncurses/tinfo/MKnames.awk Prereq: 1.25 --- ncurses-6.5-20241207+/ncurses/tinfo/MKnames.awk 2024-12-07 20:04:23.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/MKnames.awk 2024-12-14 23:44:37.000000000 +0000 @@ -26,7 +26,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: MKnames.awk,v 1.25 2024/12/07 20:04:23 tom Exp $ +# $Id: MKnames.awk,v 1.26 2024/12/14 23:44:37 tom Exp $ function large_item(value) { result = sprintf("%d,", offset); offset = offset + length(value) + 1; @@ -63,7 +63,7 @@ printf "%s", value print "};" print "" - printf "static NCURSES_CONST char ** ptr_%s = 0;\n", name + printf "static NCURSES_CONST char ** ptr_%s = NULL;\n", name print "" } @@ -123,8 +123,8 @@ print "static IT *" print "alloc_array(NCURSES_CONST char ***value, const short *offsets, unsigned size)" print "{" - print " if (*value == 0) {" - print " if ((*value = typeCalloc(NCURSES_CONST char *, size + 1)) != 0) {" + print " if (*value == NULL) {" + print " if ((*value = typeCalloc(NCURSES_CONST char *, size + 1)) != NULL) {" print " unsigned n;" print " for (n = 0; n < size; ++n) {" print " (*value)[n] = (NCURSES_CONST char *) _nc_name_blob + offsets[n];" Index: ncurses/tinfo/entries.c Prereq: 1.38 --- ncurses-6.5-20241207+/ncurses/tinfo/entries.c 2024-12-07 18:23:25.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/entries.c 2024-12-14 23:48:20.000000000 +0000 @@ -38,7 +38,7 @@ #include -MODULE_ID("$Id: entries.c,v 1.38 2024/12/07 18:23:25 tom Exp $") +MODULE_ID("$Id: entries.c,v 1.39 2024/12/14 23:48:20 tom Exp $") /**************************************************************************** * @@ -133,7 +133,7 @@ { PRESCREEN_LIST *p; pthread_t id = GetThreadID(); - for (p = _nc_prescreen.allocated; p != 0; p = p->next) { + for (p = _nc_prescreen.allocated; p != NULL; p = p->next) { if (p->id == id && p->sp != CURRENT_SCREEN) { FreeAndNull(p->sp); } Index: ncurses/tinfo/lib_acs.c Prereq: 1.51 --- ncurses-6.5-20241207+/ncurses/tinfo/lib_acs.c 2024-12-07 20:05:08.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/lib_acs.c 2024-12-15 00:11:15.000000000 +0000 @@ -40,14 +40,14 @@ #define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: lib_acs.c,v 1.51 2024/12/07 20:05:08 tom Exp $") +MODULE_ID("$Id: lib_acs.c,v 1.52 2024/12/15 00:11:15 tom Exp $") #if BROKEN_LINKER || USE_REENTRANT #define MyBuffer _nc_prescreen.real_acs_map NCURSES_EXPORT(chtype *) NCURSES_PUBLIC_VAR(acs_map) (void) { - if (MyBuffer == 0) + if (MyBuffer == NULL) MyBuffer = typeCalloc(chtype, ACS_LEN); return MyBuffer; } @@ -66,7 +66,7 @@ chtype *map; if (c < 0 || c >= ACS_LEN) return (chtype) 0; - map = (SP_PARM != 0) ? SP_PARM->_acs_map : + map = (SP_PARM != NULL) ? SP_PARM->_acs_map : #if BROKEN_LINKER || USE_REENTRANT _nc_prescreen.real_acs_map #else Index: ncurses/tinfo/lib_cur_term.c Prereq: 1.50 --- ncurses-6.5-20241207+/ncurses/tinfo/lib_cur_term.c 2024-12-07 20:05:08.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/lib_cur_term.c 2024-12-14 23:48:20.000000000 +0000 @@ -41,7 +41,7 @@ #include /* ospeed */ #include /* VALID_STRING */ -MODULE_ID("$Id: lib_cur_term.c,v 1.50 2024/12/07 20:05:08 tom Exp $") +MODULE_ID("$Id: lib_cur_term.c,v 1.51 2024/12/14 23:48:20 tom Exp $") #undef CUR #define CUR TerminalType(termp). @@ -51,7 +51,7 @@ NCURSES_EXPORT(TERMINAL *) NCURSES_SP_NAME(_nc_get_cur_term) (NCURSES_SP_DCL0) { - return ((0 != TerminalOf(SP_PARM)) ? TerminalOf(SP_PARM) : CurTerm); + return ((NULL != TerminalOf(SP_PARM)) ? TerminalOf(SP_PARM) : CurTerm); } #if NCURSES_SP_FUNCS Index: ncurses/tinfo/lib_data.c Prereq: 1.90 --- ncurses-6.5-20241207+/ncurses/tinfo/lib_data.c 2024-12-07 18:23:25.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/lib_data.c 2024-12-15 01:28:56.000000000 +0000 @@ -43,7 +43,7 @@ #include -MODULE_ID("$Id: lib_data.c,v 1.90 2024/12/07 18:23:25 tom Exp $") +MODULE_ID("$Id: lib_data.c,v 1.92 2024/12/15 01:28:56 tom Exp $") /* * OS/2's native linker complains if we don't initialize public data when @@ -53,17 +53,17 @@ NCURSES_EXPORT(WINDOW *) NCURSES_PUBLIC_VAR(stdscr) (void) { - return CURRENT_SCREEN ? StdScreen(CURRENT_SCREEN) : 0; + return CURRENT_SCREEN ? StdScreen(CURRENT_SCREEN) : NULL; } NCURSES_EXPORT(WINDOW *) NCURSES_PUBLIC_VAR(curscr) (void) { - return CURRENT_SCREEN ? CurScreen(CURRENT_SCREEN) : 0; + return CURRENT_SCREEN ? CurScreen(CURRENT_SCREEN) : NULL; } NCURSES_EXPORT(WINDOW *) NCURSES_PUBLIC_VAR(newscr) (void) { - return CURRENT_SCREEN ? NewScreen(CURRENT_SCREEN) : 0; + return CURRENT_SCREEN ? NewScreen(CURRENT_SCREEN) : NULL; } #else NCURSES_EXPORT_VAR(WINDOW *) stdscr = NULL; @@ -162,7 +162,7 @@ #endif /* HAVE_TSEARCH */ #ifdef USE_TERM_DRIVER - 0, /* term_driver */ + NULL, /* term_driver */ #endif #ifndef USE_SP_WINDOWLIST @@ -272,7 +272,7 @@ 0, /* COLS */ 8, /* TABSIZE */ 1000, /* ESCDELAY */ - 0, /* cur_term */ + NULL, /* cur_term */ #endif #ifdef TRACE #if BROKEN_LINKER || USE_REENTRANT Index: ncurses/tinfo/lib_napms.c Prereq: 1.29 --- ncurses-6.5-20241207+/ncurses/tinfo/lib_napms.c 2024-08-31 15:55:00.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/lib_napms.c 2024-12-14 23:57:01.000000000 +0000 @@ -52,7 +52,7 @@ #endif #endif -MODULE_ID("$Id: lib_napms.c,v 1.29 2024/08/31 15:55:00 tom Exp $") +MODULE_ID("$Id: lib_napms.c,v 1.30 2024/12/14 23:57:01 tom Exp $") NCURSES_EXPORT(int) NCURSES_SP_NAME(napms) (NCURSES_SP_DCLx int ms) @@ -81,7 +81,7 @@ #elif defined(_NC_WINDOWS_NATIVE) Sleep((DWORD) ms); #else - _nc_timed_wait(0, 0, ms, (int *) 0 EVENTLIST_2nd(0)); + _nc_timed_wait(NULL, 0, ms, (int *) 0 EVENTLIST_2nd(NULL)); #endif #endif /* !USE_TERM_DRIVER */ Index: ncurses/tinfo/lib_setup.c Prereq: 1.247 --- ncurses-6.5-20241207+/ncurses/tinfo/lib_setup.c 2024-12-07 20:21:01.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/lib_setup.c 2024-12-15 00:12:19.000000000 +0000 @@ -49,7 +49,7 @@ #include #endif -MODULE_ID("$Id: lib_setup.c,v 1.247 2024/12/07 20:21:01 tom Exp $") +MODULE_ID("$Id: lib_setup.c,v 1.248 2024/12/15 00:12:19 tom Exp $") /**************************************************************************** * @@ -115,7 +115,7 @@ #if NCURSES_SP_FUNCS if (CURRENT_SCREEN) { TERMINAL *termp = TerminalOf(CURRENT_SCREEN); - if (termp != 0) { + if (termp != NULL) { result = TerminalType(termp).term_names; } } @@ -475,7 +475,7 @@ TCB->drv->td_size(TCB, linep, colp); #if USE_REENTRANT - if (sp != 0) { + if (sp != NULL) { sp->_TABSIZE = my_tabsize; } #else @@ -606,7 +606,7 @@ my_tabsize = 8; #if USE_REENTRANT - if (sp != 0) + if (sp != NULL) sp->_TABSIZE = my_tabsize; #else TABSIZE = my_tabsize; @@ -825,7 +825,7 @@ int reuse) { #ifdef USE_TERM_DRIVER - TERMINAL_CONTROL_BLOCK *TCB = 0; + TERMINAL_CONTROL_BLOCK *TCB = NULL; #endif TERMINAL *termp; SCREEN *sp = NULL; @@ -838,7 +838,7 @@ T((T_CALLED("_nc_setupterm_ex(%p,%s,%d,%p)"), (void *) tp, _nc_visbuf(tname), Filedes, (void *) errret)); - if (tp == 0) { + if (tp == NULL) { ret_error0(TGETENT_ERR, "Invalid parameter, internal error.\n"); } else @@ -916,8 +916,8 @@ } else { #ifdef USE_TERM_DRIVER TERMINAL_CONTROL_BLOCK *my_tcb; - termp = 0; - if ((my_tcb = typeCalloc(TERMINAL_CONTROL_BLOCK, 1)) != 0) + termp = NULL; + if ((my_tcb = typeCalloc(TERMINAL_CONTROL_BLOCK, 1)) != NULL) termp = &(my_tcb->term); #else int status; @@ -1076,10 +1076,10 @@ NCURSES_EXPORT(SCREEN *) _nc_find_prescr(void) { - SCREEN *result = 0; + SCREEN *result = NULL; PRESCREEN_LIST *p; pthread_t id = GetThreadID(); - for (p = _nc_prescreen.allocated; p != 0; p = p->next) { + for (p = _nc_prescreen.allocated; p != NULL; p = p->next) { if (p->id == id) { result = p->sp; break; @@ -1099,7 +1099,7 @@ PRESCREEN_LIST *p, *q; pthread_t id = GetThreadID(); _nc_lock_global(screen); - for (p = _nc_prescreen.allocated, q = 0; p != 0; q = p, p = p->next) { + for (p = _nc_prescreen.allocated, q = NULL; p != NULL; q = p, p = p->next) { if (p->id == id) { if (q) { q->next = p->next; @@ -1136,7 +1136,7 @@ if (sp != NULL) { #ifdef USE_PTHREADS PRESCREEN_LIST *p = typeCalloc(PRESCREEN_LIST, 1); - if (p != 0) { + if (p != NULL) { p->id = GetThreadID(); p->sp = sp; p->next = _nc_prescreen.allocated; @@ -1180,14 +1180,14 @@ int reuse) { int rc = ERR; - TERMINAL *termp = 0; + TERMINAL *termp = NULL; _nc_init_pthreads(); _nc_lock_global(prescreen); START_TRACE(); if (TINFO_SETUP_TERM(&termp, tname, Filedes, errret, reuse) == OK) { _nc_forget_prescr(); - if (NCURSES_SP_NAME(set_curterm) (CURRENT_SCREEN_PRE, termp) != 0) { + if (NCURSES_SP_NAME(set_curterm) (CURRENT_SCREEN_PRE, termp) != NULL) { rc = OK; } } Index: ncurses/tinfo/lib_termcap.c Prereq: 1.91 --- ncurses-6.5-20241207+/ncurses/tinfo/lib_termcap.c 2024-12-07 18:26:04.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/lib_termcap.c 2024-12-15 00:12:19.000000000 +0000 @@ -49,7 +49,7 @@ #define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: lib_termcap.c,v 1.91 2024/12/07 18:26:04 tom Exp $") +MODULE_ID("$Id: lib_termcap.c,v 1.92 2024/12/15 00:12:19 tom Exp $") NCURSES_EXPORT_VAR(char *) UP = NULL; NCURSES_EXPORT_VAR(char *) BC = NULL; @@ -95,7 +95,7 @@ int n; bool found_cache = FALSE; #ifdef USE_TERM_DRIVER - TERMINAL *termp = 0; + TERMINAL *termp = NULL; #endif START_TRACE(); @@ -104,7 +104,7 @@ TINFO_SETUP_TERM(&termp, name, STDOUT_FILENO, &rc, TRUE); #ifdef USE_TERM_DRIVER - if (termp == 0 || + if (termp == NULL || !((TERMINAL_CONTROL_BLOCK *) termp)->drv->isTerminfo) returnCode(rc); #endif Index: ncurses/tinfo/lib_ttyflags.c Prereq: 1.37 --- ncurses-6.5-20241207+/ncurses/tinfo/lib_ttyflags.c 2024-12-07 21:24:18.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/lib_ttyflags.c 2024-12-15 00:12:19.000000000 +0000 @@ -42,7 +42,7 @@ #define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: lib_ttyflags.c,v 1.37 2024/12/07 21:24:18 tom Exp $") +MODULE_ID("$Id: lib_ttyflags.c,v 1.38 2024/12/15 00:12:19 tom Exp $") NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_get_tty_mode) (NCURSES_SP_DCLx TTY * buf) @@ -55,7 +55,7 @@ } else { #ifdef USE_TERM_DRIVER - if (SP_PARM != 0) { + if (SP_PARM != NULL) { result = CallDriver_2(SP_PARM, td_sgmode, FALSE, buf); } else { result = ERR; Index: ncurses/tinfo/tinfo_driver.c Prereq: 1.76 --- ncurses-6.5-20241207+/ncurses/tinfo/tinfo_driver.c 2024-08-31 10:46:01.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tinfo/tinfo_driver.c 2024-12-15 00:23:20.000000000 +0000 @@ -52,7 +52,7 @@ # endif #endif -MODULE_ID("$Id: tinfo_driver.c,v 1.76 2024/08/31 10:46:01 Rafael.Kitover Exp $") +MODULE_ID("$Id: tinfo_driver.c,v 1.77 2024/12/15 00:23:20 tom Exp $") /* * SCO defines TIOCGSIZE and the corresponding struct. Other systems (SunOS, @@ -215,7 +215,7 @@ * _nc_setupscreen(). Do it now anyway, so we can initialize the * baudrate. */ - if (sp == 0 && NC_ISATTY(termp->Filedes)) { + if (sp == NULL && NC_ISATTY(termp->Filedes)) { get_baudrate(termp); } #if NCURSES_EXT_NUMBERS @@ -323,7 +323,7 @@ AssertTCB(); SetSP(); - if (sp != 0 && orig_pair && orig_colors && (initialize_pair != 0)) { + if (sp != NULL && orig_pair && orig_colors && (initialize_pair != NULL)) { #if NCURSES_EXT_FUNCS sp->_default_color = isDefaultColor(fg) || isDefaultColor(bg); sp->_has_sgr_39_49 = (NCURSES_SP_NAME(tigetflag) (NCURSES_SP_ARGx @@ -331,7 +331,7 @@ == TRUE); sp->_default_fg = isDefaultColor(fg) ? COLOR_DEFAULT : fg; sp->_default_bg = isDefaultColor(bg) ? COLOR_DEFAULT : bg; - if (sp->_color_pairs != 0) { + if (sp->_color_pairs != NULL) { bool save = sp->_default_color; sp->_default_color = TRUE; NCURSES_SP_NAME(init_pair) (NCURSES_SP_ARGx @@ -391,7 +391,7 @@ AssertTCB(); SetSP(); - if (orig_pair != 0) { + if (orig_pair != NULL) { NCURSES_PUTP2("orig_pair", orig_pair); result = TRUE; } @@ -407,7 +407,7 @@ AssertTCB(); SetSP(); - if (orig_colors != 0) { + if (orig_colors != NULL) { NCURSES_PUTP2("orig_colors", orig_colors); result = TRUE; } @@ -470,7 +470,7 @@ errno = 0; do { if (ioctl(termp->Filedes, IOCTL_WINSIZE, &size) >= 0) { - *linep = ((sp != 0 && sp->_filtered) + *linep = ((sp != NULL && sp->_filtered) ? 1 : WINSIZE_ROWS(size)); *colp = WINSIZE_COLS(size); @@ -489,7 +489,7 @@ /* * If environment variables are used, update them. */ - if ((sp == 0 || !sp->_filtered) && _nc_getenv_num("LINES") > 0) { + if ((sp == NULL || !sp->_filtered) && _nc_getenv_num("LINES") > 0) { _nc_setenv_num("LINES", *linep); } if (_nc_getenv_num("COLUMNS") > 0) { @@ -676,7 +676,7 @@ { } -# define SGR0_TEST(mode) (mode != 0) && (exit_attribute_mode == 0 || strcmp(mode, exit_attribute_mode)) +# define SGR0_TEST(mode) (mode != NULL) && (exit_attribute_mode == NULL || strcmp(mode, exit_attribute_mode)) static void drv_screen_init(SCREEN *sp) @@ -791,7 +791,7 @@ default_fg(SCREEN *sp) { #if NCURSES_EXT_FUNCS - return (sp != 0) ? sp->_default_fg : COLOR_WHITE; + return (sp != NULL) ? sp->_default_fg : COLOR_WHITE; #else return COLOR_WHITE; #endif @@ -801,7 +801,7 @@ default_bg(SCREEN *sp) { #if NCURSES_EXT_FUNCS - return sp != 0 ? sp->_default_bg : COLOR_BLACK; + return sp != NULL ? sp->_default_bg : COLOR_BLACK; #else return COLOR_BLACK; #endif @@ -833,7 +833,7 @@ int old_fg, old_bg; AssertTCB(); - if (sp == 0) + if (sp == NULL) return; if (pair < 0 || pair >= COLOR_PAIRS) { @@ -844,13 +844,13 @@ NCURSES_SP_NAME(tputs) (NCURSES_SP_ARGx TIPARM_1(set_color_pair, pair), 1, outc); return; - } else if (sp != 0) { + } else if (sp != NULL) { _nc_pair_content(SP_PARM, pair, &fg, &bg); } } if (old_pair >= 0 - && sp != 0 + && sp != NULL && _nc_pair_content(SP_PARM, old_pair, &old_fg, &old_bg) != ERR) { if ((isDefaultColor(fg) && !isDefaultColor(old_fg)) || (isDefaultColor(bg) && !isDefaultColor(old_bg))) { @@ -921,10 +921,10 @@ SetSP(); /* we know how to recognize mouse events under "xterm" */ - if (sp != 0) { + if (sp != NULL) { if (NonEmpty(key_mouse)) { init_xterm_mouse(sp); - } else if (strstr(SP_TERMTYPE term_names, "xterm") != 0) { + } else if (strstr(SP_TERMTYPE term_names, "xterm") != NULL) { if (_nc_add_to_try(&(sp->_keytry), xterm_kmous, KEY_MOUSE) == OK) init_xterm_mouse(sp); } @@ -1091,7 +1091,7 @@ * * test/blue.c uses this feature. */ -#define PCH_KLUDGE(a,b) (a != 0 && b != 0 && !strcmp(a,b)) +#define PCH_KLUDGE(a,b) (a != NULL && b != NULL && !strcmp(a,b)) if (PCH_KLUDGE(enter_pc_charset_mode, enter_alt_charset_mode) && PCH_KLUDGE(exit_pc_charset_mode, exit_alt_charset_mode)) { size_t i; @@ -1099,7 +1099,7 @@ if (real_map[i] == 0) { real_map[i] = (chtype) i; if (real_map != fake_map) { - if (sp != 0) + if (sp != NULL) sp->_screen_acs_map[i] = TRUE; } } @@ -1118,7 +1118,7 @@ (int) i, _tracechar(UChar(acs_chars[i])), _tracechtype(real_map[UChar(acs_chars[i])]))); - if (sp != 0) { + if (sp != NULL) { sp->_screen_acs_map[UChar(acs_chars[i])] = TRUE; } } @@ -1163,7 +1163,7 @@ bool support_cookies = USE_XMC_SUPPORT; TERMINAL_CONTROL_BLOCK *TCB = (TERMINAL_CONTROL_BLOCK *) (sp->_term); - if (sp == 0 || !ENSURE_TINFO(sp)) + if (sp == NULL || !ENSURE_TINFO(sp)) return; #if USE_XMC_SUPPORT @@ -1172,7 +1172,7 @@ * in the environment, reset the support-flag. */ if (magic_cookie_glitch >= 0) { - if (getenv("NCURSES_NO_MAGIC_COOKIE") != 0) { + if (getenv("NCURSES_NO_MAGIC_COOKIE") != NULL) { support_cookies = FALSE; } } @@ -1313,7 +1313,7 @@ #elif defined(EXP_WIN32_DRIVER) Sleep((DWORD) ms); #else - _nc_timed_wait(0, 0, ms, (int *) 0 EVENTLIST_2nd(0)); + _nc_timed_wait(NULL, 0, ms, (int *) 0 EVENTLIST_2nd(NULL)); #endif return OK; } @@ -1380,7 +1380,7 @@ unsigned ch = (unsigned) c; if (flag) { while ((s = _nc_expand_try(sp->_key_ok, - ch, &count, (size_t) 0)) != 0) { + ch, &count, (size_t) 0)) != NULL) { if (_nc_remove_key(&(sp->_key_ok), ch)) { code = _nc_add_to_try(&(sp->_keytry), s, ch); free(s); @@ -1393,7 +1393,7 @@ } } else { while ((s = _nc_expand_try(sp->_keytry, - ch, &count, (size_t) 0)) != 0) { + ch, &count, (size_t) 0)) != NULL) { if (_nc_remove_key(&(sp->_keytry), ch)) { code = _nc_add_to_try(&(sp->_key_ok), s, ch); free(s); @@ -1420,7 +1420,7 @@ T((T_CALLED("tinfo:drv_cursorSet(%p,%d)"), (void *) SP_PARM, vis)); - if (SP_PARM != 0 && IsTermInfo(SP_PARM)) { + if (SP_PARM != NULL && IsTermInfo(SP_PARM)) { switch (vis) { case 2: code = NCURSES_PUTP2_FLUSH("cursor_visible", cursor_visible); Index: ncurses/tty/lib_mvcur.c Prereq: 1.162 --- ncurses-6.5-20241207+/ncurses/tty/lib_mvcur.c 2024-12-07 20:06:49.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tty/lib_mvcur.c 2024-12-15 00:04:06.000000000 +0000 @@ -160,7 +160,7 @@ #define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: lib_mvcur.c,v 1.162 2024/12/07 20:06:49 tom Exp $") +MODULE_ID("$Id: lib_mvcur.c,v 1.163 2024/12/15 00:04:06 tom Exp $") #define WANT_CHAR(sp, y, x) NewScreen(sp)->_line[y].text[x] /* desired state */ @@ -1106,7 +1106,7 @@ ynew, xnew, NCURSES_SP_NAME(_nc_outch), TRUE); - if ((SP_PARM != 0) && (SP_PARM->_endwin == ewInitial)) + if ((SP_PARM != NULL) && (SP_PARM->_endwin == ewInitial)) NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_ARG); NCURSES_SP_NAME(_nc_flush) (NCURSES_SP_ARG); return rc; Index: ncurses/tty/lib_tstp.c Prereq: 1.55 --- ncurses-6.5-20241207+/ncurses/tty/lib_tstp.c 2024-12-07 20:06:49.000000000 +0000 +++ ncurses-6.5-20241214/ncurses/tty/lib_tstp.c 2024-12-15 02:01:17.000000000 +0000 @@ -43,7 +43,7 @@ #include -MODULE_ID("$Id: lib_tstp.c,v 1.55 2024/12/07 20:06:49 tom Exp $") +MODULE_ID("$Id: lib_tstp.c,v 1.57 2024/12/15 02:01:17 tom Exp $") #if defined(SIGTSTP) && (HAVE_SIGACTION || HAVE_SIGVEC) #define USE_SIGTSTP 1 Index: package/debian-mingw/changelog --- ncurses-6.5-20241207+/package/debian-mingw/changelog 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/package/debian-mingw/changelog 2024-12-14 11:34:56.000000000 +0000 @@ -1,8 +1,8 @@ -ncurses6td (6.5+20241207) unstable; urgency=low +ncurses6td (6.5+20241214) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Sat, 07 Dec 2024 06:51:44 -0500 + -- Thomas E. Dickey Sat, 14 Dec 2024 06:34:56 -0500 ncurses6 (5.9+20131005) unstable; urgency=low Index: package/debian-mingw64/changelog --- ncurses-6.5-20241207+/package/debian-mingw64/changelog 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/package/debian-mingw64/changelog 2024-12-14 11:34:56.000000000 +0000 @@ -1,8 +1,8 @@ -ncurses6td (6.5+20241207) unstable; urgency=low +ncurses6td (6.5+20241214) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Sat, 07 Dec 2024 06:51:44 -0500 + -- Thomas E. Dickey Sat, 14 Dec 2024 06:34:56 -0500 ncurses6 (5.9+20131005) unstable; urgency=low Index: package/debian/changelog --- ncurses-6.5-20241207+/package/debian/changelog 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/package/debian/changelog 2024-12-14 11:34:56.000000000 +0000 @@ -1,8 +1,8 @@ -ncurses6td (6.5+20241207) unstable; urgency=low +ncurses6td (6.5+20241214) unstable; urgency=low * latest weekly patch - -- Thomas E. Dickey Sat, 07 Dec 2024 06:51:44 -0500 + -- Thomas E. Dickey Sat, 14 Dec 2024 06:34:56 -0500 ncurses6 (5.9+20120608) unstable; urgency=low Index: package/mingw-ncurses.nsi Prereq: 1.679 --- ncurses-6.5-20241207+/package/mingw-ncurses.nsi 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/package/mingw-ncurses.nsi 2024-12-14 11:34:56.000000000 +0000 @@ -1,4 +1,4 @@ -; $Id: mingw-ncurses.nsi,v 1.679 2024/12/07 11:51:44 tom Exp $ +; $Id: mingw-ncurses.nsi,v 1.680 2024/12/14 11:34:56 tom Exp $ ; TODO add examples ; TODO bump ABI to 6 @@ -10,7 +10,7 @@ !define VERSION_MAJOR "6" !define VERSION_MINOR "5" !define VERSION_YYYY "2024" -!define VERSION_MMDD "1207" +!define VERSION_MMDD "1214" !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD} !define MY_ABI "5" Index: package/mingw-ncurses.spec --- ncurses-6.5-20241207+/package/mingw-ncurses.spec 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/package/mingw-ncurses.spec 2024-12-14 11:34:56.000000000 +0000 @@ -3,7 +3,7 @@ Summary: shared libraries for terminal handling Name: mingw32-ncurses6 Version: 6.5 -Release: 20241207 +Release: 20241214 License: X11 Group: Development/Libraries URL: https://invisible-island.net/ncurses/ Index: package/ncurses.spec --- ncurses-6.5-20241207+/package/ncurses.spec 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/package/ncurses.spec 2024-12-14 11:34:56.000000000 +0000 @@ -1,7 +1,7 @@ Summary: shared libraries for terminal handling Name: ncurses6 Version: 6.5 -Release: 20241207 +Release: 20241214 License: X11 Group: Development/Libraries URL: https://invisible-island.net/ncurses/ Index: package/ncursest.spec --- ncurses-6.5-20241207+/package/ncursest.spec 2024-12-07 11:51:44.000000000 +0000 +++ ncurses-6.5-20241214/package/ncursest.spec 2024-12-14 11:34:56.000000000 +0000 @@ -1,7 +1,7 @@ Summary: Curses library with POSIX thread support. Name: ncursest6 Version: 6.5 -Release: 20241207 +Release: 20241214 License: X11 Group: Development/Libraries Source: ncurses-%{version}-%{release}.tgz