diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2006-09-03 23:33:06 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2006-09-03 23:33:06 -0400 |
commit | c6cec39ad0f9474e910e321e1b4d95054f5529a1 (patch) | |
tree | 7050065d4f03a0f5da3ad1e70dc139e57705fc88 | |
parent | a8251776b87f78e47d3e73309177e3a4f59675bd (diff) | |
download | lynx-snapshots-c6cec39ad0f9474e910e321e1b4d95054f5529a1.tar.gz |
snapshot of project "lynx", label v2-8-6pre_2
-rw-r--r-- | CHANGES | 28 | ||||
-rw-r--r-- | INSTALLATION | 12 | ||||
-rw-r--r-- | aclocal.m4 | 14 | ||||
-rw-r--r-- | config.hin | 4 | ||||
-rwxr-xr-x | configure | 5129 | ||||
-rw-r--r-- | configure.in | 12 | ||||
-rw-r--r-- | docs/OS-390.announce | 2 | ||||
-rw-r--r-- | lynx.cfg | 4 | ||||
-rw-r--r-- | makefile.in | 42 | ||||
-rw-r--r-- | src/GridText.c | 2 | ||||
-rw-r--r-- | src/LYCgi.c | 6 | ||||
-rw-r--r-- | src/LYCurses.c | 32 | ||||
-rw-r--r-- | src/LYCurses.h | 4 | ||||
-rw-r--r-- | src/LYStrings.c | 29 | ||||
-rw-r--r-- | src/LYUtils.c | 83 | ||||
-rw-r--r-- | userdefs.h | 4 |
16 files changed, 2795 insertions, 2612 deletions
diff --git a/CHANGES b/CHANGES index 41a45333..9b7fce87 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,28 @@ Changes since Lynx 2.8 release =============================================================================== +2006-09-03 (2.8.6pre.2) +* change configure script to put the ".cfg" and ".lss" files by default in the + --sysconfdir, e.g., $prefix/etc, and the help-files in lynx_doc and lynx_help + directories under --datadir, e.g., $prefix/share/lynx_doc, + $prefix/share/lynx_doc. To obtain the old behavior, use + configure --sysconfdir=/usr/local/lib --datadir=/usr/local/lib + (patch by Rado Smiljanic). +* simplified stop_curses(), ensuring that it does what it claims (report by + William McBrine) -TD +* corrected placement of statements used for quiet compiler warnings for unused + variables in fancy_mouse() (reported by Rado Smiljanic, Nelson Beebe) -TD +* simplify ifdef's in HTCheckForInterrupt() to make it clearer that the win32 + PDCurses configuration uses nodelay() as an alternative to select() -TD +* correct fix for PDCurses on win32, i.e., the workaround in LYStrings.c + myGetChar() (report by William McBrine) -TD +* replace a couple of wmove(LYwin,y,x) calls with LYmove(y,x) -TD +* modify configure macro CF_PATH_SYNTAX to account for the --prefix and + --exec-prefix options, making the --with-cfg-file and --with-lss-file options + have the expected behavior of using the given prefix (reported by PG) -TD +* modify ifdef's for Current_Attr variable to allow scrollbar feature to build + with slang configuration on Windows (report by Gisle Vanem) -TD + 2006-08-31 (2.8.6pre.1) 2006-08-31 (2.8.6dev.19) * add --enable-widec configure option to allow building lynx without wide @@ -68,7 +90,11 @@ Changes since Lynx 2.8 release to simulate the non-color-style code. There are some visual differences, e.g., links that contain a mixture of styles will display with mixed colors, but overall the visual effect matches the non-color-style code well enough - to change the default configuration. cf: 2000-07-16 (2.8.4dev.5) -TD + to change the default configuration. + If an empty string is given for the lss filename, this is treated as an + empty style file, and lynx will not use its built-in default color style. + To make the behavior easier to diagnose, lynx will now exit with an error + if it cannot find the lss file. cf: 2000-07-16 (2.8.4dev.5) -TD * fix a sign-extension in alignment case-statement in split_line() which could cause a large indent for lines which are wider than the display (Debian #360832, #372670) -TD diff --git a/INSTALLATION b/INSTALLATION index 5d016b12..3facd067 100644 --- a/INSTALLATION +++ b/INSTALLATION @@ -33,7 +33,7 @@ Step 1. Compile-time Variables. and there are others you may want to change. Lynx MUST be able to find lynx.cfg at start-up: using configure - (e.g. with UNIX or Cygwin), its location is best set with --libdir ; + (e.g. with UNIX or Cygwin), its location is best set with --sysconfdir ; you can check in lynx_cfg.h after configure has run, if you wish. otherwise, you can use LYNX_CFG_FILE in userdefs.h , environment variable LYNX_CFG or the -cfg command-line option. @@ -478,10 +478,10 @@ II. Compile instructions -- UNIX For this release of Lynx, we recommend the ncursew library built from ncurses 5.5. - --libdir (affect LYNX_CFG_FILE) + --sysconfdir (affect LYNX_CFG_FILE) Defines the location where you want the lynx.cfg file installed. The configure script defines the symbol LYNX_CFG_FILE to correspond - with the $libdir environment variable. (For platforms which do not + with the $sysconfdir environment variable. (For platforms which do not support a configure script, such as MS-DOS, Win32 and VMS, you must edit userdefs.h if you wish to specify the location of lynx.cfg). @@ -689,7 +689,7 @@ II. Compile instructions -- UNIX setenv CPPFLAGS "-I$HOME/slang -I$HOME/.usr/include" setenv LIBS "-L$HOME/.slang/lib -L$HOME/.usr/lib" ./configure --exec-prefix=$HOME --bindir=$HOME/.lynx \ - --mandir=$HOME/.usr/man --libdir=$HOME/.usr/lib \ + --mandir=$HOME/.usr/man --sysconfdir=$HOME/.usr/lib \ --with-screen=slang --with-zlib CPPFLAGS in this example defines the full path to the slang and zlib header @@ -697,7 +697,7 @@ II. Compile instructions -- UNIX the nonstandard locations of libslang.a and libz.a. Setting the option --bindir tells the configure script where I want to install the lynx binary; setting --mandir tells it where to put the lynx.1 man page, and - setting --libdir tells it (while at the same time defining LYNX_CFG_FILE) + setting --sysconfdir tells it (while at the same time defining LYNX_CFG_FILE) where to put the configuration file "lynx.cfg", when I type "make install". The --with-screen=slang and --with-zlib options are explained above. @@ -1175,7 +1175,7 @@ V. Compile instructions -- 386 DOS --enable-file-upload \ --enable-nested-tables \ --enable-nls \ - --libdir=d:/djgpp/lynx-rel/lynx-cnf \ + --sysconfdir=d:/djgpp/lynx-rel/lynx-cnf \ --with-bzlib \ --with-zlib \ --with-ssl diff --git a/aclocal.m4 b/aclocal.m4 index 103e3293..8b223cce 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -4,7 +4,7 @@ dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> dnl and Philippe De Muyter <phdm@macqel.be> dnl dnl Created: 1997/1/28 -dnl Updated: 2006/8/4 +dnl Updated: 2006/9/2 dnl dnl The autoconf used in Lynx development is GNU autoconf 2.13 or 2.52, patched dnl by Thomas Dickey. See your local GNU archives, and this URL: @@ -3284,13 +3284,19 @@ if test -n "$cf_path_prog" ; then fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_PATH_SYNTAX version: 10 updated: 2006/01/02 19:36:00 +dnl CF_PATH_SYNTAX version: 11 updated: 2006/09/02 08:55:46 dnl -------------- dnl Check the argument to see that it looks like a pathname. Rewrite it if it dnl begins with one of the prefix/exec_prefix variables, and then again if the dnl result begins with 'NONE'. This is necessary to work around autoconf's dnl delayed evaluation of those symbols. AC_DEFUN([CF_PATH_SYNTAX],[ +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".[$]$1" in #(vi .\[$]\(*\)*|.\'*\'*) #(vi ;; @@ -3302,12 +3308,12 @@ case ".[$]$1" in #(vi eval $1="[$]$1" case ".[$]$1" in #(vi .NONE/*) - $1=`echo [$]$1 | sed -e s%NONE%$ac_default_prefix%` + $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - $1=`echo [$]$1 | sed -e s%NONE%$ac_default_prefix%` + $1=`echo [$]$1 | sed -e s%NONE%$cf_path_syntax%` ;; *) ifelse($2,,[AC_ERROR([expected a pathname, not \"[$]$1\"])],$2) diff --git a/config.hin b/config.hin index c34a47d6..71216523 100644 --- a/config.hin +++ b/config.hin @@ -175,8 +175,8 @@ #undef LOCALE /* for locale support */ #undef LONG_LIST /* CF_ARG_DISABLE(long-list) */ #undef LYNXCGI_LINKS /* CF_ARG_ENABLE(cgi-links) */ -#undef LYNX_CFG_FILE /* $libdir/lynx.cfg */ -#undef LYNX_LSS_FILE /* $libdir/lynx.lss */ +#undef LYNX_CFG_FILE /* $sysconfdir/lynx.cfg */ +#undef LYNX_LSS_FILE /* $sysconfdir/lynx.lss */ #undef LYNX_RAND_MAX /* CF_SRAND */ #undef LY_FIND_LEAKS /* CF_ARG_ENABLE(find-leaks) */ #undef LY_TRACELINE /* CF_ARG_ENABLE(vertrace) */ diff --git a/configure b/configure index 2bbcf3da..de0b6297 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in 2.8.6dev.18. +# From configure.in 2.8.6dev.19. # Guess values for system-dependent variables and create Makefiles. # Generated by Autoconf 2.52.20030208. # @@ -711,8 +711,9 @@ Basic Configuration Options: --with-screen=XXX select screen type (XXX is curses (default), ncurses, ncursesw, pdcurses or slang) --with-curses-dir=DIR directory in which (n)curses is installed + --enable-widec enable wide-curses features --with-cfg-file{=path} specify the default configuration file - (default: LIBDIR/lynx.cfg) + (default: SYSCONFDIR/lynx.cfg) --with-charsets=list limit charsets to given list of MIME names Experimental Options: --disable-bibp-urls disable support for bibp: URLs @@ -725,7 +726,7 @@ Experimental Options: --enable-japanese-utf8 use experimental Japanese UTF-8 logic --disable-color-style use color style (ncurses/curses) --with-lss-file{=path} specify the default style-sheet file - (default: LIBDIR/lynx.lss) + (default: SYSCONFDIR/lynx.lss) --enable-default-colors enable use of default-colors (ncurses/slang) --enable-htmlized-cfg build experimental htmlized lynx.cfg --enable-ipv6 use experimental ipv6 (with ipv4) support @@ -972,7 +973,7 @@ if test -z "$CONFIG_SITE"; then fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then - { echo "$as_me:975: loading site script $ac_site_file" >&5 + { echo "$as_me:976: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} cat "$ac_site_file" >&5 . "$ac_site_file" @@ -983,7 +984,7 @@ if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then - { echo "$as_me:986: loading cache $cache_file" >&5 + { echo "$as_me:987: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; @@ -991,7 +992,7 @@ echo "$as_me: loading cache $cache_file" >&6;} esac fi else - { echo "$as_me:994: creating cache $cache_file" >&5 + { echo "$as_me:995: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -1007,21 +1008,21 @@ for ac_var in `(set) 2>&1 | eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) - { echo "$as_me:1010: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + { echo "$as_me:1011: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) - { echo "$as_me:1014: error: \`$ac_var' was not set in the previous run" >&5 + { echo "$as_me:1015: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:1020: error: \`$ac_var' has changed since the previous run:" >&5 + { echo "$as_me:1021: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:1022: former value: $ac_old_val" >&5 + { echo "$as_me:1023: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:1024: current value: $ac_new_val" >&5 + { echo "$as_me:1025: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; @@ -1040,9 +1041,9 @@ echo "$as_me: current value: $ac_new_val" >&2;} fi done if $ac_cache_corrupted; then - { echo "$as_me:1043: error: changes in the environment can compromise the build" >&5 + { echo "$as_me:1044: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:1045: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 + { { echo "$as_me:1046: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi @@ -1062,10 +1063,10 @@ esac echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh -if { (echo "$as_me:1065: PATH=\".;.\"; conftest.sh") >&5 +if { (echo "$as_me:1066: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? - echo "$as_me:1068: \$? = $ac_status" >&5 + echo "$as_me:1069: \$? = $ac_status" >&5 (exit $ac_status); }; then ac_path_separator=';' else @@ -1100,7 +1101,7 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do fi done if test -z "$ac_aux_dir"; then - { { echo "$as_me:1103: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 + { { echo "$as_me:1104: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} { (exit 1); exit 1; }; } fi @@ -1110,11 +1111,11 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:1113: error: cannot run $ac_config_sub" >&5 + { { echo "$as_me:1114: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:1117: checking build system type" >&5 +echo "$as_me:1118: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1123,23 +1124,23 @@ else test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && - { { echo "$as_me:1126: error: cannot guess build type; you must specify one" >&5 + { { echo "$as_me:1127: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || - { { echo "$as_me:1130: error: $ac_config_sub $ac_cv_build_alias failed." >&5 + { { echo "$as_me:1131: error: $ac_config_sub $ac_cv_build_alias failed." >&5 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1135: result: $ac_cv_build" >&5 +echo "$as_me:1136: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` -echo "$as_me:1142: checking host system type" >&5 +echo "$as_me:1143: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1148,12 +1149,12 @@ else test -z "$ac_cv_host_alias" && ac_cv_host_alias=$ac_cv_build_alias ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || - { { echo "$as_me:1151: error: $ac_config_sub $ac_cv_host_alias failed" >&5 + { { echo "$as_me:1152: error: $ac_config_sub $ac_cv_host_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1156: result: $ac_cv_host" >&5 +echo "$as_me:1157: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` @@ -1161,7 +1162,7 @@ host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then - echo "$as_me:1164: checking target system type" >&5 + echo "$as_me:1165: checking target system type" >&5 echo $ECHO_N "checking target system type... $ECHO_C" >&6 if test "${ac_cv_target+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1170,12 +1171,12 @@ else test "x$ac_cv_target_alias" = "x" && ac_cv_target_alias=$ac_cv_host_alias ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || - { { echo "$as_me:1173: error: $ac_config_sub $ac_cv_target_alias failed" >&5 + { { echo "$as_me:1174: error: $ac_config_sub $ac_cv_target_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1178: result: $ac_cv_target" >&5 +echo "$as_me:1179: result: $ac_cv_target" >&5 echo "${ECHO_T}$ac_cv_target" >&6 target=$ac_cv_target target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` @@ -1206,13 +1207,13 @@ else fi test -z "$system_name" && system_name="$cf_cv_system_name" -test -n "$cf_cv_system_name" && echo "$as_me:1209: result: Configuring for $cf_cv_system_name" >&5 +test -n "$cf_cv_system_name" && echo "$as_me:1210: result: Configuring for $cf_cv_system_name" >&5 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6 if test ".$system_name" != ".$cf_cv_system_name" ; then - echo "$as_me:1213: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 + echo "$as_me:1214: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6 - { { echo "$as_me:1215: error: \"Please remove config.cache and try again.\"" >&5 + { { echo "$as_me:1216: error: \"Please remove config.cache and try again.\"" >&5 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;} { (exit 1); exit 1; }; } fi @@ -1220,14 +1221,14 @@ fi # Check whether --with-system-type or --without-system-type was given. if test "${with_system_type+set}" = set; then withval="$with_system_type" - { echo "$as_me:1223: WARNING: overriding system type $host_os to $withval" >&5 + { echo "$as_me:1224: WARNING: overriding system type $host_os to $withval" >&5 echo "$as_me: WARNING: overriding system type $host_os to $withval" >&2;} host_os=$withval fi; PACKAGE=lynx # $Format: "VERSION=$ProjectVersion$"$ -VERSION=2.8.6dev.19 +VERSION=2.8.6pre.2 test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && echo *.po|sed -e 's/\.po//g' -e 's/*//'` @@ -1246,7 +1247,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:1249: checking for $ac_word" >&5 +echo "$as_me:1250: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1261,7 +1262,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}gcc" -echo "$as_me:1264: found $ac_dir/$ac_word" >&5 +echo "$as_me:1265: found $ac_dir/$ac_word" >&5 break done @@ -1269,10 +1270,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1272: result: $CC" >&5 + echo "$as_me:1273: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1275: result: no" >&5 + echo "$as_me:1276: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1281,7 +1282,7 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -echo "$as_me:1284: checking for $ac_word" >&5 +echo "$as_me:1285: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1296,7 +1297,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="gcc" -echo "$as_me:1299: found $ac_dir/$ac_word" >&5 +echo "$as_me:1300: found $ac_dir/$ac_word" >&5 break done @@ -1304,10 +1305,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1307: result: $ac_ct_CC" >&5 + echo "$as_me:1308: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1310: result: no" >&5 + echo "$as_me:1311: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1320,7 +1321,7 @@ if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:1323: checking for $ac_word" >&5 +echo "$as_me:1324: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1335,7 +1336,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}cc" -echo "$as_me:1338: found $ac_dir/$ac_word" >&5 +echo "$as_me:1339: found $ac_dir/$ac_word" >&5 break done @@ -1343,10 +1344,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1346: result: $CC" >&5 + echo "$as_me:1347: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1349: result: no" >&5 + echo "$as_me:1350: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1355,7 +1356,7 @@ if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1358: checking for $ac_word" >&5 +echo "$as_me:1359: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1370,7 +1371,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="cc" -echo "$as_me:1373: found $ac_dir/$ac_word" >&5 +echo "$as_me:1374: found $ac_dir/$ac_word" >&5 break done @@ -1378,10 +1379,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1381: result: $ac_ct_CC" >&5 + echo "$as_me:1382: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1384: result: no" >&5 + echo "$as_me:1385: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1394,7 +1395,7 @@ fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1397: checking for $ac_word" >&5 +echo "$as_me:1398: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1414,7 +1415,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then continue fi ac_cv_prog_CC="cc" -echo "$as_me:1417: found $ac_dir/$ac_word" >&5 +echo "$as_me:1418: found $ac_dir/$ac_word" >&5 break done @@ -1436,10 +1437,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1439: result: $CC" >&5 + echo "$as_me:1440: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1442: result: no" >&5 + echo "$as_me:1443: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1450,7 +1451,7 @@ if test -z "$CC"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:1453: checking for $ac_word" >&5 +echo "$as_me:1454: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1465,7 +1466,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -echo "$as_me:1468: found $ac_dir/$ac_word" >&5 +echo "$as_me:1469: found $ac_dir/$ac_word" >&5 break done @@ -1473,10 +1474,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1476: result: $CC" >&5 + echo "$as_me:1477: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1479: result: no" >&5 + echo "$as_me:1480: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1489,7 +1490,7 @@ if test -z "$CC"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:1492: checking for $ac_word" >&5 +echo "$as_me:1493: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1504,7 +1505,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="$ac_prog" -echo "$as_me:1507: found $ac_dir/$ac_word" >&5 +echo "$as_me:1508: found $ac_dir/$ac_word" >&5 break done @@ -1512,10 +1513,10 @@ fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1515: result: $ac_ct_CC" >&5 + echo "$as_me:1516: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1518: result: no" >&5 + echo "$as_me:1519: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1527,32 +1528,32 @@ fi fi -test -z "$CC" && { { echo "$as_me:1530: error: no acceptable cc found in \$PATH" >&5 +test -z "$CC" && { { echo "$as_me:1531: error: no acceptable cc found in \$PATH" >&5 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. -echo "$as_me:1535:" \ +echo "$as_me:1536:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:1538: \"$ac_compiler --version </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1539: \"$ac_compiler --version </dev/null >&5\"") >&5 (eval $ac_compiler --version </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1541: \$? = $ac_status" >&5 + echo "$as_me:1542: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1543: \"$ac_compiler -v </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1544: \"$ac_compiler -v </dev/null >&5\"") >&5 (eval $ac_compiler -v </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1546: \$? = $ac_status" >&5 + echo "$as_me:1547: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1548: \"$ac_compiler -V </dev/null >&5\"") >&5 +{ (eval echo "$as_me:1549: \"$ac_compiler -V </dev/null >&5\"") >&5 (eval $ac_compiler -V </dev/null >&5) 2>&5 ac_status=$? - echo "$as_me:1551: \$? = $ac_status" >&5 + echo "$as_me:1552: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF -#line 1555 "configure" +#line 1556 "configure" #include "confdefs.h" int @@ -1568,13 +1569,13 @@ ac_clean_files="$ac_clean_files a.out a.exe" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -echo "$as_me:1571: checking for C compiler default output" >&5 +echo "$as_me:1572: checking for C compiler default output" >&5 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:1574: \"$ac_link_default\"") >&5 +if { (eval echo "$as_me:1575: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:1577: \$? = $ac_status" >&5 + echo "$as_me:1578: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last @@ -1597,34 +1598,34 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1600: error: C compiler cannot create executables" >&5 +{ { echo "$as_me:1601: error: C compiler cannot create executables" >&5 echo "$as_me: error: C compiler cannot create executables" >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext -echo "$as_me:1606: result: $ac_file" >&5 +echo "$as_me:1607: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1611: checking whether the C compiler works" >&5 +echo "$as_me:1612: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' - { (eval echo "$as_me:1617: \"$ac_try\"") >&5 + { (eval echo "$as_me:1618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1620: \$? = $ac_status" >&5 + echo "$as_me:1621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { echo "$as_me:1627: error: cannot run C compiled programs. + { { echo "$as_me:1628: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&2;} @@ -1632,24 +1633,24 @@ If you meant to cross compile, use \`--host'." >&2;} fi fi fi -echo "$as_me:1635: result: yes" >&5 +echo "$as_me:1636: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1642: checking whether we are cross compiling" >&5 +echo "$as_me:1643: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:1644: result: $cross_compiling" >&5 +echo "$as_me:1645: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:1647: checking for executable suffix" >&5 +echo "$as_me:1648: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:1649: \"$ac_link\"") >&5 +if { (eval echo "$as_me:1650: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1652: \$? = $ac_status" >&5 + echo "$as_me:1653: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will @@ -1665,25 +1666,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do esac done else - { { echo "$as_me:1668: error: cannot compute EXEEXT: cannot compile and link" >&5 + { { echo "$as_me:1669: error: cannot compute EXEEXT: cannot compile and link" >&5 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext -echo "$as_me:1674: result: $ac_cv_exeext" >&5 +echo "$as_me:1675: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT -echo "$as_me:1680: checking for object suffix" >&5 +echo "$as_me:1681: checking for object suffix" >&5 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1686 "configure" +#line 1687 "configure" #include "confdefs.h" int @@ -1695,10 +1696,10 @@ main () } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:1698: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1699: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1701: \$? = $ac_status" >&5 + echo "$as_me:1702: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in @@ -1710,24 +1711,24 @@ done else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1713: error: cannot compute OBJEXT: cannot compile" >&5 +{ { echo "$as_me:1714: error: cannot compute OBJEXT: cannot compile" >&5 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -echo "$as_me:1720: result: $ac_cv_objext" >&5 +echo "$as_me:1721: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:1724: checking whether we are using the GNU C compiler" >&5 +echo "$as_me:1725: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1730 "configure" +#line 1731 "configure" #include "confdefs.h" int @@ -1742,16 +1743,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1745: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1746: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1748: \$? = $ac_status" >&5 + echo "$as_me:1749: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1751: \"$ac_try\"") >&5 + { (eval echo "$as_me:1752: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1754: \$? = $ac_status" >&5 + echo "$as_me:1755: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else @@ -1763,19 +1764,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1766: result: $ac_cv_c_compiler_gnu" >&5 +echo "$as_me:1767: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" -echo "$as_me:1772: checking whether $CC accepts -g" >&5 +echo "$as_me:1773: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1778 "configure" +#line 1779 "configure" #include "confdefs.h" int @@ -1787,16 +1788,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1790: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1791: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1793: \$? = $ac_status" >&5 + echo "$as_me:1794: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1796: \"$ac_try\"") >&5 + { (eval echo "$as_me:1797: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1799: \$? = $ac_status" >&5 + echo "$as_me:1800: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else @@ -1806,7 +1807,7 @@ ac_cv_prog_cc_g=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:1809: result: $ac_cv_prog_cc_g" >&5 +echo "$as_me:1810: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS @@ -1833,16 +1834,16 @@ cat >conftest.$ac_ext <<_ACEOF #endif _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1836: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1837: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1839: \$? = $ac_status" >&5 + echo "$as_me:1840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1842: \"$ac_try\"") >&5 + { (eval echo "$as_me:1843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1845: \$? = $ac_status" >&5 + echo "$as_me:1846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ @@ -1854,7 +1855,7 @@ if { (eval echo "$as_me:1836: \"$ac_compile\"") >&5 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 1857 "configure" +#line 1858 "configure" #include "confdefs.h" #include <stdlib.h> $ac_declaration @@ -1867,16 +1868,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1870: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1871: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1873: \$? = $ac_status" >&5 + echo "$as_me:1874: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1876: \"$ac_try\"") >&5 + { (eval echo "$as_me:1877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1879: \$? = $ac_status" >&5 + echo "$as_me:1880: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -1886,7 +1887,7 @@ continue fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 1889 "configure" +#line 1890 "configure" #include "confdefs.h" $ac_declaration int @@ -1898,16 +1899,16 @@ exit (42); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1901: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1902: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1904: \$? = $ac_status" >&5 + echo "$as_me:1905: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1907: \"$ac_try\"") >&5 + { (eval echo "$as_me:1908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1910: \$? = $ac_status" >&5 + echo "$as_me:1911: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -1939,7 +1940,7 @@ ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:1942: checking how to run the C preprocessor" >&5 +echo "$as_me:1943: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then @@ -1960,18 +1961,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 1963 "configure" +#line 1964 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:1968: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:1969: \"$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:1974: \$? = $ac_status" >&5 + echo "$as_me:1975: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -1994,17 +1995,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 1997 "configure" +#line 1998 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2001: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2002: \"$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:2007: \$? = $ac_status" >&5 + echo "$as_me:2008: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2041,7 +2042,7 @@ fi else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2044: result: $CPP" >&5 +echo "$as_me:2045: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -2051,18 +2052,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2054 "configure" +#line 2055 "configure" #include "confdefs.h" #include <assert.h> Syntax error _ACEOF -if { (eval echo "$as_me:2059: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2060: \"$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:2065: \$? = $ac_status" >&5 + echo "$as_me:2066: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2085,17 +2086,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2088 "configure" +#line 2089 "configure" #include "confdefs.h" #include <ac_nonexistent.h> _ACEOF -if { (eval echo "$as_me:2092: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2093: \"$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:2098: \$? = $ac_status" >&5 + echo "$as_me:2099: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2123,7 +2124,7 @@ rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else - { { echo "$as_me:2126: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:2127: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -2134,18 +2135,18 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:2137: checking whether ln -s works" >&5 +echo "$as_me:2138: checking whether ln -s works" >&5 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then - echo "$as_me:2141: result: yes" >&5 + echo "$as_me:2142: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:2144: result: no, using $LN_S" >&5 + echo "$as_me:2145: result: no, using $LN_S" >&5 echo "${ECHO_T}no, using $LN_S" >&6 fi -echo "$as_me:2148: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "$as_me:2149: checking whether ${MAKE-make} sets \${MAKE}" >&5 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then @@ -2165,11 +2166,11 @@ fi rm -f conftest.make fi if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then - echo "$as_me:2168: result: yes" >&5 + echo "$as_me:2169: result: yes" >&5 echo "${ECHO_T}yes" >&6 SET_MAKE= else - echo "$as_me:2172: result: no" >&5 + echo "$as_me:2173: result: no" >&5 echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi @@ -2186,7 +2187,7 @@ fi # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:2189: checking for a BSD compatible install" >&5 +echo "$as_me:2190: checking for a BSD compatible install" >&5 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then @@ -2235,7 +2236,7 @@ fi INSTALL=$ac_install_sh fi fi -echo "$as_me:2238: result: $INSTALL" >&5 +echo "$as_me:2239: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -2250,7 +2251,7 @@ for ac_prog in lint alint lclint tdlint 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:2253: checking for $ac_word" >&5 +echo "$as_me:2254: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_LINT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2265,7 +2266,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_LINT="$ac_prog" -echo "$as_me:2268: found $ac_dir/$ac_word" >&5 +echo "$as_me:2269: found $ac_dir/$ac_word" >&5 break done @@ -2273,20 +2274,20 @@ fi fi LINT=$ac_cv_prog_LINT if test -n "$LINT"; then - echo "$as_me:2276: result: $LINT" >&5 + echo "$as_me:2277: result: $LINT" >&5 echo "${ECHO_T}$LINT" >&6 else - echo "$as_me:2279: result: no" >&5 + echo "$as_me:2280: result: no" >&5 echo "${ECHO_T}no" >&6 fi test -n "$LINT" && break done -echo "$as_me:2286: checking for AIX" >&5 +echo "$as_me:2287: checking for AIX" >&5 echo $ECHO_N "checking for AIX... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 2289 "configure" +#line 2290 "configure" #include "confdefs.h" #ifdef _AIX yes @@ -2295,24 +2296,24 @@ cat >conftest.$ac_ext <<_ACEOF _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "yes" >/dev/null 2>&1; then - echo "$as_me:2298: result: yes" >&5 + echo "$as_me:2299: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define _ALL_SOURCE 1 EOF else - echo "$as_me:2305: result: no" >&5 + echo "$as_me:2306: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* -echo "$as_me:2310: checking for POSIXized ISC" >&5 +echo "$as_me:2311: checking for POSIXized ISC" >&5 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6 if test -d /etc/conf/kconfig.d && grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 then - echo "$as_me:2315: result: yes" >&5 + echo "$as_me:2316: result: yes" >&5 echo "${ECHO_T}yes" >&6 ISC=yes # If later tests want to check for ISC. @@ -2326,7 +2327,7 @@ EOF CC="$CC -Xp" fi else - echo "$as_me:2329: result: no" >&5 + echo "$as_me:2330: result: no" >&5 echo "${ECHO_T}no" >&6 ISC= fi @@ -2367,7 +2368,7 @@ else do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:2370: checking for $ac_word" >&5 +echo "$as_me:2371: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_BUILD_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2382,7 +2383,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_BUILD_CC="$ac_prog" -echo "$as_me:2385: found $ac_dir/$ac_word" >&5 +echo "$as_me:2386: found $ac_dir/$ac_word" >&5 break done @@ -2390,10 +2391,10 @@ fi fi BUILD_CC=$ac_cv_prog_BUILD_CC if test -n "$BUILD_CC"; then - echo "$as_me:2393: result: $BUILD_CC" >&5 + echo "$as_me:2394: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 else - echo "$as_me:2396: result: no" >&5 + echo "$as_me:2397: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2401,12 +2402,12 @@ fi done fi; - echo "$as_me:2404: checking for native build C compiler" >&5 + echo "$as_me:2405: checking for native build C compiler" >&5 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6 - echo "$as_me:2406: result: $BUILD_CC" >&5 + echo "$as_me:2407: result: $BUILD_CC" >&5 echo "${ECHO_T}$BUILD_CC" >&6 - echo "$as_me:2409: checking for native build C preprocessor" >&5 + echo "$as_me:2410: checking for native build C preprocessor" >&5 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6 # Check whether --with-build-cpp or --without-build-cpp was given. @@ -2416,10 +2417,10 @@ if test "${with_build_cpp+set}" = set; then else BUILD_CPP='$(BUILD_CC) -E' fi; - echo "$as_me:2419: result: $BUILD_CPP" >&5 + echo "$as_me:2420: result: $BUILD_CPP" >&5 echo "${ECHO_T}$BUILD_CPP" >&6 - echo "$as_me:2422: checking for native build C flags" >&5 + echo "$as_me:2423: checking for native build C flags" >&5 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6 # Check whether --with-build-cflags or --without-build-cflags was given. @@ -2427,10 +2428,10 @@ if test "${with_build_cflags+set}" = set; then withval="$with_build_cflags" BUILD_CFLAGS="$withval" fi; - echo "$as_me:2430: result: $BUILD_CFLAGS" >&5 + echo "$as_me:2431: result: $BUILD_CFLAGS" >&5 echo "${ECHO_T}$BUILD_CFLAGS" >&6 - echo "$as_me:2433: checking for native build C preprocessor-flags" >&5 + echo "$as_me:2434: checking for native build C preprocessor-flags" >&5 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6 # Check whether --with-build-cppflags or --without-build-cppflags was given. @@ -2438,10 +2439,10 @@ if test "${with_build_cppflags+set}" = set; then withval="$with_build_cppflags" BUILD_CPPFLAGS="$withval" fi; - echo "$as_me:2441: result: $BUILD_CPPFLAGS" >&5 + echo "$as_me:2442: result: $BUILD_CPPFLAGS" >&5 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6 - echo "$as_me:2444: checking for native build linker-flags" >&5 + echo "$as_me:2445: checking for native build linker-flags" >&5 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6 # Check whether --with-build-ldflags or --without-build-ldflags was given. @@ -2449,10 +2450,10 @@ if test "${with_build_ldflags+set}" = set; then withval="$with_build_ldflags" BUILD_LDFLAGS="$withval" fi; - echo "$as_me:2452: result: $BUILD_LDFLAGS" >&5 + echo "$as_me:2453: result: $BUILD_LDFLAGS" >&5 echo "${ECHO_T}$BUILD_LDFLAGS" >&6 - echo "$as_me:2455: checking for native build linker-libraries" >&5 + echo "$as_me:2456: checking for native build linker-libraries" >&5 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6 # Check whether --with-build-libs or --without-build-libs was given. @@ -2460,7 +2461,7 @@ if test "${with_build_libs+set}" = set; then withval="$with_build_libs" BUILD_LIBS="$withval" fi; - echo "$as_me:2463: result: $BUILD_LIBS" >&5 + echo "$as_me:2464: result: $BUILD_LIBS" >&5 echo "${ECHO_T}$BUILD_LIBS" >&6 # this assumes we're on Unix. @@ -2470,7 +2471,7 @@ echo "${ECHO_T}$BUILD_LIBS" >&6 : ${BUILD_CC:='$(CC)'} if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '$(CC)' ) ; then - { { echo "$as_me:2473: error: Cross-build requires two compilers. + { { echo "$as_me:2474: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&5 echo "$as_me: error: Cross-build requires two compilers. Use --with-build-cc to specify the native compiler." >&2;} @@ -2491,7 +2492,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:2494: checking for $ac_word" >&5 +echo "$as_me:2495: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2506,7 +2507,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:2509: found $ac_dir/$ac_word" >&5 +echo "$as_me:2510: found $ac_dir/$ac_word" >&5 break done @@ -2514,10 +2515,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:2517: result: $RANLIB" >&5 + echo "$as_me:2518: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:2520: result: no" >&5 + echo "$as_me:2521: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2526,7 +2527,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:2529: checking for $ac_word" >&5 +echo "$as_me:2530: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2541,7 +2542,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:2544: found $ac_dir/$ac_word" >&5 +echo "$as_me:2545: found $ac_dir/$ac_word" >&5 break done @@ -2550,10 +2551,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:2553: result: $ac_ct_RANLIB" >&5 + echo "$as_me:2554: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:2556: result: no" >&5 + echo "$as_me:2557: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2565,7 +2566,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 -echo "$as_me:2568: checking for $ac_word" >&5 +echo "$as_me:2569: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2580,7 +2581,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_AR="${ac_tool_prefix}ar" -echo "$as_me:2583: found $ac_dir/$ac_word" >&5 +echo "$as_me:2584: found $ac_dir/$ac_word" >&5 break done @@ -2588,10 +2589,10 @@ fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then - echo "$as_me:2591: result: $AR" >&5 + echo "$as_me:2592: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:2594: result: no" >&5 + echo "$as_me:2595: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2600,7 +2601,7 @@ if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 -echo "$as_me:2603: checking for $ac_word" >&5 +echo "$as_me:2604: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2615,7 +2616,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_AR="ar" -echo "$as_me:2618: found $ac_dir/$ac_word" >&5 +echo "$as_me:2619: found $ac_dir/$ac_word" >&5 break done @@ -2624,10 +2625,10 @@ fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then - echo "$as_me:2627: result: $ac_ct_AR" >&5 + echo "$as_me:2628: result: $ac_ct_AR" >&5 echo "${ECHO_T}$ac_ct_AR" >&6 else - echo "$as_me:2630: result: no" >&5 + echo "$as_me:2631: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2640,7 +2641,7 @@ if test "${cf_cv_subst_AR_OPTS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:2643: checking for archiver options (symbol AR_OPTS)" >&5 +echo "$as_me:2644: checking for archiver options (symbol AR_OPTS)" >&5 echo $ECHO_N "checking for archiver options (symbol AR_OPTS)... $ECHO_C" >&6 if test -z "$AR_OPTS" ; then @@ -2649,12 +2650,12 @@ if test -z "$AR_OPTS" ; then fi cf_cv_subst_AR_OPTS=$AR_OPTS -echo "$as_me:2652: result: $AR_OPTS" >&5 +echo "$as_me:2653: result: $AR_OPTS" >&5 echo "${ECHO_T}$AR_OPTS" >&6 fi -echo "$as_me:2657: checking if you want to see long compiling messages" >&5 +echo "$as_me:2658: 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. @@ -2688,7 +2689,7 @@ else ECHO_CC='' fi; -echo "$as_me:2691: result: $enableval" >&5 +echo "$as_me:2692: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 # special case for WWW/* @@ -2698,7 +2699,7 @@ else DONT_ECHO_CC='' fi -echo "$as_me:2701: checking if you want to check memory-leaks" >&5 +echo "$as_me:2702: checking if you want to check memory-leaks" >&5 echo $ECHO_N "checking if you want to check memory-leaks... $ECHO_C" >&6 # Check whether --enable-find-leaks or --disable-find-leaks was given. @@ -2715,7 +2716,7 @@ else with_leak_checks=no fi; -echo "$as_me:2718: result: $with_leak_checks" >&5 +echo "$as_me:2719: result: $with_leak_checks" >&5 echo "${ECHO_T}$with_leak_checks" >&6 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF #define LY_FIND_LEAKS 1 @@ -2724,7 +2725,7 @@ EOF # The comment about adding -g to $CFLAGS is unclear. Autoconf tries to add # a -g flag; we remove it if the user's $CFLAGS was not set and debugging is # disabled. -echo "$as_me:2727: checking if you want to enable debug-code" >&5 +echo "$as_me:2728: checking if you want to enable debug-code" >&5 echo $ECHO_N "checking if you want to enable debug-code... $ECHO_C" >&6 # Check whether --enable-debug or --disable-debug was given. @@ -2741,7 +2742,7 @@ else with_debug=no fi; -echo "$as_me:2744: result: $with_debug" >&5 +echo "$as_me:2745: result: $with_debug" >&5 echo "${ECHO_T}$with_debug" >&6 if test "$with_debug" = "yes" ; then case $host_os in @@ -2766,7 +2767,7 @@ else esac fi -echo "$as_me:2769: checking if you want to enable lynx trace code *recommended* " >&5 +echo "$as_me:2770: checking if you want to enable lynx trace code *recommended* " >&5 echo $ECHO_N "checking if you want to enable lynx trace code *recommended* ... $ECHO_C" >&6 # Check whether --enable-trace or --disable-trace was given. @@ -2783,13 +2784,13 @@ else with_trace=yes fi; -echo "$as_me:2786: result: $with_trace" >&5 +echo "$as_me:2787: result: $with_trace" >&5 echo "${ECHO_T}$with_trace" >&6 test $with_trace = no && cat >>confdefs.h <<\EOF #define NO_LYNX_TRACE 1 EOF -echo "$as_me:2792: checking if you want verbose trace code" >&5 +echo "$as_me:2793: checking if you want verbose trace code" >&5 echo $ECHO_N "checking if you want verbose trace code... $ECHO_C" >&6 # Check whether --enable-vertrace or --disable-vertrace was given. @@ -2806,7 +2807,7 @@ else with_vertrace=no fi; -echo "$as_me:2809: result: $with_vertrace" >&5 +echo "$as_me:2810: result: $with_vertrace" >&5 echo "${ECHO_T}$with_vertrace" >&6 test $with_vertrace = yes && cat >>confdefs.h <<\EOF #define LY_TRACELINE __LINE__ @@ -2814,7 +2815,7 @@ EOF if test -n "$GCC" then -echo "$as_me:2817: checking if you want to turn on gcc warnings" >&5 +echo "$as_me:2818: 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. @@ -2831,7 +2832,7 @@ else with_warnings=no fi; -echo "$as_me:2834: result: $with_warnings" >&5 +echo "$as_me:2835: result: $with_warnings" >&5 echo "${ECHO_T}$with_warnings" >&6 if test "$with_warnings" = "yes" then @@ -2854,10 +2855,10 @@ cat > conftest.i <<EOF EOF if test "$GCC" = yes then - { echo "$as_me:2857: checking for $CC __attribute__ directives..." >&5 + { echo "$as_me:2858: checking for $CC __attribute__ directives..." >&5 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} cat > conftest.$ac_ext <<EOF -#line 2860 "configure" +#line 2861 "configure" #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -2895,12 +2896,12 @@ EOF EOF ;; esac - if { (eval echo "$as_me:2898: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:2899: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2901: \$? = $ac_status" >&5 + echo "$as_me:2902: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:2903: result: ... $cf_attribute" >&5 + test -n "$verbose" && echo "$as_me:2904: result: ... $cf_attribute" >&5 echo "${ECHO_T}... $cf_attribute" >&6 cat conftest.h >>confdefs.h fi @@ -2913,11 +2914,11 @@ fi GCC_VERSION=none if test "$GCC" = yes ; then - echo "$as_me:2916: checking version of $CC" >&5 + echo "$as_me:2917: checking version of $CC" >&5 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 GCC_VERSION="`${CC} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" test -z "$GCC_VERSION" && GCC_VERSION=unknown - echo "$as_me:2920: result: $GCC_VERSION" >&5 + echo "$as_me:2921: result: $GCC_VERSION" >&5 echo "${ECHO_T}$GCC_VERSION" >&6 fi @@ -2926,12 +2927,12 @@ INTEL_COMPILER=no if test "$GCC" = yes ; then case $host_os in linux*|gnu*) - echo "$as_me:2929: checking if this is really Intel C compiler" >&5 + echo "$as_me:2930: 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="$CFLAGS" CFLAGS="$CFLAGS -no-gcc" cat >conftest.$ac_ext <<_ACEOF -#line 2934 "configure" +#line 2935 "configure" #include "confdefs.h" int @@ -2948,16 +2949,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2951: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2952: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2954: \$? = $ac_status" >&5 + echo "$as_me:2955: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2957: \"$ac_try\"") >&5 + { (eval echo "$as_me:2958: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2960: \$? = $ac_status" >&5 + echo "$as_me:2961: \$? = $ac_status" >&5 (exit $ac_status); }; }; then INTEL_COMPILER=yes cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc" @@ -2968,14 +2969,14 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext CFLAGS="$cf_save_CFLAGS" - echo "$as_me:2971: result: $INTEL_COMPILER" >&5 + echo "$as_me:2972: result: $INTEL_COMPILER" >&5 echo "${ECHO_T}$INTEL_COMPILER" >&6 ;; esac fi cat > conftest.$ac_ext <<EOF -#line 2978 "configure" +#line 2979 "configure" int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } EOF @@ -2993,7 +2994,7 @@ then # remark #981: operands are evaluated in unspecified order # warning #269: invalid format string conversion - { echo "$as_me:2996: checking for $CC warning options..." >&5 + { echo "$as_me:2997: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="-Wall" @@ -3010,12 +3011,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} wd981 do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:3013: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3014: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3016: \$? = $ac_status" >&5 + echo "$as_me:3017: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3018: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:3019: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" fi @@ -3024,7 +3025,7 @@ echo "${ECHO_T}... -$cf_opt" >&6 elif test "$GCC" = yes then - { echo "$as_me:3027: checking for $CC warning options..." >&5 + { echo "$as_me:3028: checking for $CC warning options..." >&5 echo "$as_me: checking for $CC warning options..." >&6;} cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="-W -Wall" @@ -3044,12 +3045,12 @@ echo "$as_me: checking for $CC warning options..." >&6;} Wundef $cf_warn_CONST do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo "$as_me:3047: \"$ac_compile\"") >&5 + if { (eval echo "$as_me:3048: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3050: \$? = $ac_status" >&5 + echo "$as_me:3051: \$? = $ac_status" >&5 (exit $ac_status); }; then - test -n "$verbose" && echo "$as_me:3052: result: ... -$cf_opt" >&5 + test -n "$verbose" && echo "$as_me:3053: result: ... -$cf_opt" >&5 echo "${ECHO_T}... -$cf_opt" >&6 case $cf_opt in #(vi Wcast-qual) #(vi @@ -3074,7 +3075,7 @@ rm -f conftest* fi fi -echo "$as_me:3077: checking if you want to link with dbmalloc for testing" >&5 +echo "$as_me:3078: checking if you want to link with dbmalloc for testing" >&5 echo $ECHO_N "checking if you want to link with dbmalloc for testing... $ECHO_C" >&6 # Check whether --with-dbmalloc or --without-dbmalloc was given. @@ -3084,11 +3085,11 @@ if test "${with_dbmalloc+set}" = set; then else with_dbmalloc=no fi; -echo "$as_me:3087: result: $with_dbmalloc" >&5 +echo "$as_me:3088: result: $with_dbmalloc" >&5 echo "${ECHO_T}$with_dbmalloc" >&6 if test $with_dbmalloc = yes ; then -echo "$as_me:3091: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:3092: 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 @@ -3096,7 +3097,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3099 "configure" +#line 3100 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3115,16 +3116,16 @@ debug_malloc (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3118: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3119: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3121: \$? = $ac_status" >&5 + echo "$as_me:3122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3124: \"$ac_try\"") >&5 + { (eval echo "$as_me:3125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3127: \$? = $ac_status" >&5 + echo "$as_me:3128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -3135,7 +3136,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3138: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:3139: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then cat >>confdefs.h <<EOF @@ -3148,7 +3149,7 @@ fi fi -echo "$as_me:3151: checking if you want to link with dmalloc for testing" >&5 +echo "$as_me:3152: checking if you want to link with dmalloc for testing" >&5 echo $ECHO_N "checking if you want to link with dmalloc for testing... $ECHO_C" >&6 # Check whether --with-dmalloc or --without-dmalloc was given. @@ -3158,11 +3159,11 @@ if test "${with_dmalloc+set}" = set; then else with_dmalloc=no fi; -echo "$as_me:3161: result: $with_dmalloc" >&5 +echo "$as_me:3162: result: $with_dmalloc" >&5 echo "${ECHO_T}$with_dmalloc" >&6 if test $with_dmalloc = yes ; then -echo "$as_me:3165: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:3166: 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 @@ -3170,7 +3171,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3173 "configure" +#line 3174 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3189,16 +3190,16 @@ dmalloc_debug (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3192: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3193: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3195: \$? = $ac_status" >&5 + echo "$as_me:3196: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3198: \"$ac_try\"") >&5 + { (eval echo "$as_me:3199: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3201: \$? = $ac_status" >&5 + echo "$as_me:3202: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -3209,7 +3210,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3212: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:3213: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then cat >>confdefs.h <<EOF @@ -3226,7 +3227,7 @@ cat >>confdefs.h <<\EOF #define UNIX 1 EOF -echo "$as_me:3229: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:3230: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3234,7 +3235,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 3237 "configure" +#line 3238 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -3283,16 +3284,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3286: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3287: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3289: \$? = $ac_status" >&5 + echo "$as_me:3290: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3292: \"$ac_try\"") >&5 + { (eval echo "$as_me:3293: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3295: \$? = $ac_status" >&5 + echo "$as_me:3296: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -3309,21 +3310,21 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3312: result: none needed" >&5 + echo "$as_me:3313: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3315: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:3316: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac -echo "$as_me:3320: checking for an ANSI C-conforming const" >&5 +echo "$as_me:3321: 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 3326 "configure" +#line 3327 "configure" #include "confdefs.h" int @@ -3381,16 +3382,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3384: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3385: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3387: \$? = $ac_status" >&5 + echo "$as_me:3388: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3390: \"$ac_try\"") >&5 + { (eval echo "$as_me:3391: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3393: \$? = $ac_status" >&5 + echo "$as_me:3394: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_const=yes else @@ -3400,7 +3401,7 @@ ac_cv_c_const=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3403: result: $ac_cv_c_const" >&5 +echo "$as_me:3404: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then @@ -3448,7 +3449,7 @@ clix*) # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. -echo "$as_me:3451: checking for strcmp in -lc_s" >&5 +echo "$as_me:3452: checking for strcmp in -lc_s" >&5 echo $ECHO_N "checking for strcmp in -lc_s... $ECHO_C" >&6 if test "${ac_cv_lib_c_s_strcmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3456,7 +3457,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_s $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3459 "configure" +#line 3460 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3475,16 +3476,16 @@ strcmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3478: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3479: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3481: \$? = $ac_status" >&5 + echo "$as_me:3482: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3484: \"$ac_try\"") >&5 + { (eval echo "$as_me:3485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3487: \$? = $ac_status" >&5 + echo "$as_me:3488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c_s_strcmp=yes else @@ -3495,7 +3496,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3498: result: $ac_cv_lib_c_s_strcmp" >&5 +echo "$as_me:3499: result: $ac_cv_lib_c_s_strcmp" >&5 echo "${ECHO_T}$ac_cv_lib_c_s_strcmp" >&6 if test $ac_cv_lib_c_s_strcmp = yes; then cat >>confdefs.h <<EOF @@ -3566,14 +3567,14 @@ sco*) # SCO's cc (which is reported to have broken const/volatile). case "$CC" in #(vi cc|*/cc) - { echo "$as_me:3569: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:3570: WARNING: You should consider using gcc or rcc if available" >&5 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;} unset ac_cv_prog_CC for ac_prog in gcc rcc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:3576: checking for $ac_word" >&5 +echo "$as_me:3577: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3588,7 +3589,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_prog" -echo "$as_me:3591: found $ac_dir/$ac_word" >&5 +echo "$as_me:3592: found $ac_dir/$ac_word" >&5 break done @@ -3596,10 +3597,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:3599: result: $CC" >&5 + echo "$as_me:3600: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:3602: result: no" >&5 + echo "$as_me:3603: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3622,23 +3623,23 @@ sony-newsos*) for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:3625: checking for $ac_header" >&5 +echo "$as_me:3626: 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 3631 "configure" +#line 3632 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:3635: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3636: \"$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:3641: \$? = $ac_status" >&5 + echo "$as_me:3642: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3657,7 +3658,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3660: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:3661: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -3685,23 +3686,23 @@ ultrix*) for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:3688: checking for $ac_header" >&5 +echo "$as_me:3689: 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 3694 "configure" +#line 3695 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:3698: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3699: \"$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:3704: \$? = $ac_status" >&5 + echo "$as_me:3705: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3720,7 +3721,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3723: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:3724: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -3737,7 +3738,7 @@ done ;; esac -echo "$as_me:3740: checking for ${CC-cc} option to accept ANSI C" >&5 +echo "$as_me:3741: checking for ${CC-cc} option to accept ANSI C" >&5 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 if test "${cf_cv_ansi_cc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3831,7 +3832,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 3834 "configure" +#line 3835 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -3852,16 +3853,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3855: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3856: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3858: \$? = $ac_status" >&5 + echo "$as_me:3859: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3861: \"$ac_try\"") >&5 + { (eval echo "$as_me:3862: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3864: \$? = $ac_status" >&5 + echo "$as_me:3865: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -3874,7 +3875,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:3877: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:3878: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -3957,7 +3958,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:3960: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:3961: error: Your compiler does not appear to recognize prototypes. You have the following choices: a. adjust your compiler options b. get an up-to-date compiler @@ -3970,7 +3971,7 @@ You have the following choices: { (exit 1); exit 1; }; } fi - echo "$as_me:3973: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:3974: 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 @@ -3978,7 +3979,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 3981 "configure" +#line 3982 "configure" #include "confdefs.h" #include <stdio.h> int @@ -3990,16 +3991,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3993: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3994: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3996: \$? = $ac_status" >&5 + echo "$as_me:3997: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3999: \"$ac_try\"") >&5 + { (eval echo "$as_me:4000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4002: \$? = $ac_status" >&5 + echo "$as_me:4003: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4008,7 +4009,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4011 "configure" +#line 4012 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -4021,16 +4022,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4024: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4025: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4027: \$? = $ac_status" >&5 + echo "$as_me:4028: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4030: \"$ac_try\"") >&5 + { (eval echo "$as_me:4031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4033: \$? = $ac_status" >&5 + echo "$as_me:4034: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -4041,7 +4042,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4044: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:4045: 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 @@ -4055,13 +4056,13 @@ rm -f conftest* # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:4058: checking for fseeko" >&5 +echo "$as_me:4059: 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 4064 "configure" +#line 4065 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4073,16 +4074,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4076: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4077: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4079: \$? = $ac_status" >&5 + echo "$as_me:4080: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4082: \"$ac_try\"") >&5 + { (eval echo "$as_me:4083: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4085: \$? = $ac_status" >&5 + echo "$as_me:4086: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -4092,7 +4093,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4095: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:4096: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -4109,7 +4110,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:4112: checking for special C compiler options needed for large files" >&5 + echo "$as_me:4113: 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 @@ -4121,7 +4122,7 @@ else # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >conftest.$ac_ext <<_ACEOF -#line 4124 "configure" +#line 4125 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4141,16 +4142,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4144: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4145: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4147: \$? = $ac_status" >&5 + echo "$as_me:4148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4150: \"$ac_try\"") >&5 + { (eval echo "$as_me:4151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4153: \$? = $ac_status" >&5 + echo "$as_me:4154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4160,16 +4161,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:4163: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4164: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4166: \$? = $ac_status" >&5 + echo "$as_me:4167: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4169: \"$ac_try\"") >&5 + { (eval echo "$as_me:4170: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4172: \$? = $ac_status" >&5 + echo "$as_me:4173: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -4183,13 +4184,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:4186: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:4187: 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:4192: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:4193: 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 @@ -4197,7 +4198,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 4200 "configure" +#line 4201 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4217,16 +4218,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4220: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4221: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4223: \$? = $ac_status" >&5 + echo "$as_me:4224: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4226: \"$ac_try\"") >&5 + { (eval echo "$as_me:4227: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4229: \$? = $ac_status" >&5 + echo "$as_me:4230: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4235,7 +4236,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4238 "configure" +#line 4239 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -4256,16 +4257,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4259: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4260: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4262: \$? = $ac_status" >&5 + echo "$as_me:4263: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4265: \"$ac_try\"") >&5 + { (eval echo "$as_me:4266: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4268: \$? = $ac_status" >&5 + echo "$as_me:4269: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -4276,7 +4277,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4279: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:4280: 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 @@ -4286,7 +4287,7 @@ EOF fi rm -f conftest* - echo "$as_me:4289: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:4290: 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 @@ -4294,7 +4295,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 4297 "configure" +#line 4298 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4314,16 +4315,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4317: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4318: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4320: \$? = $ac_status" >&5 + echo "$as_me:4321: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4323: \"$ac_try\"") >&5 + { (eval echo "$as_me:4324: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4326: \$? = $ac_status" >&5 + echo "$as_me:4327: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4332,7 +4333,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4335 "configure" +#line 4336 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -4353,16 +4354,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4356: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4357: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4359: \$? = $ac_status" >&5 + echo "$as_me:4360: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4362: \"$ac_try\"") >&5 + { (eval echo "$as_me:4363: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4365: \$? = $ac_status" >&5 + echo "$as_me:4366: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -4373,7 +4374,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4376: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:4377: 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 @@ -4395,14 +4396,14 @@ fi test "$ac_cv_sys_large_files" != no && CPPFLAGS="$CPPFLAGS -D_LARGE_FILES " test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " - echo "$as_me:4398: checking whether to use struct dirent64" >&5 + echo "$as_me:4399: 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 4405 "configure" +#line 4406 "configure" #include "confdefs.h" #include <sys/types.h> @@ -4423,16 +4424,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4426: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4427: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4429: \$? = $ac_status" >&5 + echo "$as_me:4430: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4432: \"$ac_try\"") >&5 + { (eval echo "$as_me:4433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4435: \$? = $ac_status" >&5 + echo "$as_me:4436: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -4443,7 +4444,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4446: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:4447: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF #define HAVE_STRUCT_DIRENT64 1 @@ -4452,7 +4453,7 @@ EOF if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:4455: checking for $ac_word" >&5 +echo "$as_me:4456: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4467,7 +4468,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:4470: found $ac_dir/$ac_word" >&5 +echo "$as_me:4471: found $ac_dir/$ac_word" >&5 break done @@ -4475,10 +4476,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:4478: result: $RANLIB" >&5 + echo "$as_me:4479: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:4481: result: no" >&5 + echo "$as_me:4482: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4487,7 +4488,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:4490: checking for $ac_word" >&5 +echo "$as_me:4491: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4502,7 +4503,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:4505: found $ac_dir/$ac_word" >&5 +echo "$as_me:4506: found $ac_dir/$ac_word" >&5 break done @@ -4511,10 +4512,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:4514: result: $ac_ct_RANLIB" >&5 + echo "$as_me:4515: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:4517: result: no" >&5 + echo "$as_me:4518: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4523,13 +4524,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:4526: checking for ANSI C header files" >&5 +echo "$as_me:4527: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4532 "configure" +#line 4533 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -4537,13 +4538,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:4540: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4541: \"$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:4546: \$? = $ac_status" >&5 + echo "$as_me:4547: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4565,7 +4566,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 4568 "configure" +#line 4569 "configure" #include "confdefs.h" #include <string.h> @@ -4583,7 +4584,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 4586 "configure" +#line 4587 "configure" #include "confdefs.h" #include <stdlib.h> @@ -4604,7 +4605,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 4607 "configure" +#line 4608 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -4630,15 +4631,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4634: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4636: \$? = $ac_status" >&5 + echo "$as_me:4637: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4638: \"$ac_try\"") >&5 + { (eval echo "$as_me:4639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4641: \$? = $ac_status" >&5 + echo "$as_me:4642: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -4651,7 +4652,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:4654: result: $ac_cv_header_stdc" >&5 +echo "$as_me:4655: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -4661,7 +4662,7 @@ EOF fi -echo "$as_me:4664: checking for inline" >&5 +echo "$as_me:4665: 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 @@ -4669,7 +4670,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 4672 "configure" +#line 4673 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -4678,16 +4679,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4681: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4682: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4684: \$? = $ac_status" >&5 + echo "$as_me:4685: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4687: \"$ac_try\"") >&5 + { (eval echo "$as_me:4688: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4690: \$? = $ac_status" >&5 + echo "$as_me:4691: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -4698,7 +4699,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:4701: result: $ac_cv_c_inline" >&5 +echo "$as_me:4702: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -4719,28 +4720,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4722: checking for $ac_header" >&5 +echo "$as_me:4723: 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 4728 "configure" +#line 4729 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4734: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4735: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4737: \$? = $ac_status" >&5 + echo "$as_me:4738: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4740: \"$ac_try\"") >&5 + { (eval echo "$as_me:4741: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4743: \$? = $ac_status" >&5 + echo "$as_me:4744: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -4750,7 +4751,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4753: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4754: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -4760,13 +4761,13 @@ EOF fi done -echo "$as_me:4763: checking for off_t" >&5 +echo "$as_me:4764: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4769 "configure" +#line 4770 "configure" #include "confdefs.h" $ac_includes_default int @@ -4781,16 +4782,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4784: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4785: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4787: \$? = $ac_status" >&5 + echo "$as_me:4788: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4790: \"$ac_try\"") >&5 + { (eval echo "$as_me:4791: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4793: \$? = $ac_status" >&5 + echo "$as_me:4794: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -4800,7 +4801,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4803: result: $ac_cv_type_off_t" >&5 +echo "$as_me:4804: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : @@ -4812,13 +4813,13 @@ EOF fi -echo "$as_me:4815: checking for size_t" >&5 +echo "$as_me:4816: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4821 "configure" +#line 4822 "configure" #include "confdefs.h" $ac_includes_default int @@ -4833,16 +4834,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4836: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4837: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4839: \$? = $ac_status" >&5 + echo "$as_me:4840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4842: \"$ac_try\"") >&5 + { (eval echo "$as_me:4843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4845: \$? = $ac_status" >&5 + echo "$as_me:4846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -4852,7 +4853,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4855: result: $ac_cv_type_size_t" >&5 +echo "$as_me:4856: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : @@ -4866,13 +4867,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:4869: checking for working alloca.h" >&5 +echo "$as_me:4870: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4875 "configure" +#line 4876 "configure" #include "confdefs.h" #include <alloca.h> int @@ -4884,16 +4885,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4887: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4888: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4890: \$? = $ac_status" >&5 + echo "$as_me:4891: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4893: \"$ac_try\"") >&5 + { (eval echo "$as_me:4894: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4896: \$? = $ac_status" >&5 + echo "$as_me:4897: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -4903,7 +4904,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4906: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:4907: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -4913,13 +4914,13 @@ EOF fi -echo "$as_me:4916: checking for alloca" >&5 +echo "$as_me:4917: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4922 "configure" +#line 4923 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -4951,16 +4952,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4954: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4955: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4957: \$? = $ac_status" >&5 + echo "$as_me:4958: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4960: \"$ac_try\"") >&5 + { (eval echo "$as_me:4961: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4963: \$? = $ac_status" >&5 + echo "$as_me:4964: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -4970,7 +4971,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4973: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:4974: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -4991,13 +4992,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:4994: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:4995: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5000 "configure" +#line 5001 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -5015,18 +5016,18 @@ fi rm -f conftest* fi -echo "$as_me:5018: result: $ac_cv_os_cray" >&5 +echo "$as_me:5019: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5023: checking for $ac_func" >&5 +echo "$as_me:5024: 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 5029 "configure" +#line 5030 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5057,16 +5058,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5060: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5061: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5063: \$? = $ac_status" >&5 + echo "$as_me:5064: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5066: \"$ac_try\"") >&5 + { (eval echo "$as_me:5067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5069: \$? = $ac_status" >&5 + echo "$as_me:5070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5076,7 +5077,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5079: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5080: 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 @@ -5090,7 +5091,7 @@ fi done fi -echo "$as_me:5093: checking stack direction for C alloca" >&5 +echo "$as_me:5094: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5099,7 +5100,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 5102 "configure" +#line 5103 "configure" #include "confdefs.h" int find_stack_direction () @@ -5122,15 +5123,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5125: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5126: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5128: \$? = $ac_status" >&5 + echo "$as_me:5129: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5130: \"$ac_try\"") >&5 + { (eval echo "$as_me:5131: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5133: \$? = $ac_status" >&5 + echo "$as_me:5134: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -5142,7 +5143,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5145: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:5146: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -5154,23 +5155,23 @@ fi for ac_header in stdlib.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5157: checking for $ac_header" >&5 +echo "$as_me:5158: 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 5163 "configure" +#line 5164 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5167: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5168: \"$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:5173: \$? = $ac_status" >&5 + echo "$as_me:5174: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5189,7 +5190,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5192: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5193: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -5202,13 +5203,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5205: checking for $ac_func" >&5 +echo "$as_me:5206: 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 5211 "configure" +#line 5212 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5239,16 +5240,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5242: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5243: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5245: \$? = $ac_status" >&5 + echo "$as_me:5246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5248: \"$ac_try\"") >&5 + { (eval echo "$as_me:5249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5251: \$? = $ac_status" >&5 + echo "$as_me:5252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5258,7 +5259,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5261: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5262: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -5268,7 +5269,7 @@ EOF fi done -echo "$as_me:5271: checking for working mmap" >&5 +echo "$as_me:5272: checking for working mmap" >&5 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5277,7 +5278,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 5280 "configure" +#line 5281 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -5404,15 +5405,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5407: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5408: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5410: \$? = $ac_status" >&5 + echo "$as_me:5411: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5412: \"$ac_try\"") >&5 + { (eval echo "$as_me:5413: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5415: \$? = $ac_status" >&5 + echo "$as_me:5416: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -5424,7 +5425,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5427: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:5428: result: $ac_cv_func_mmap_fixed_mapped" >&5 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6 if test $ac_cv_func_mmap_fixed_mapped = yes; then @@ -5435,13 +5436,13 @@ EOF fi rm -f conftest.mmap - echo "$as_me:5438: checking whether we are using the GNU C Library 2.1 or newer" >&5 + echo "$as_me:5439: checking whether we are using the GNU C Library 2.1 or newer" >&5 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6 if test "${ac_cv_gnu_library_2_1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5444 "configure" +#line 5445 "configure" #include "confdefs.h" #include <features.h> @@ -5461,7 +5462,7 @@ fi rm -f conftest* fi -echo "$as_me:5464: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:5465: result: $ac_cv_gnu_library_2_1" >&5 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6 GLIBC21="$ac_cv_gnu_library_2_1" @@ -5490,23 +5491,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5493: checking for $ac_header" >&5 +echo "$as_me:5494: 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 5499 "configure" +#line 5500 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5503: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5504: \"$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:5509: \$? = $ac_status" >&5 + echo "$as_me:5510: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5525,7 +5526,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5528: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5529: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -5540,13 +5541,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \ strdup strtoul tsearch __argz_count __argz_stringify __argz_next do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5543: checking for $ac_func" >&5 +echo "$as_me:5544: 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 5549 "configure" +#line 5550 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5577,16 +5578,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5580: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5581: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5583: \$? = $ac_status" >&5 + echo "$as_me:5584: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5586: \"$ac_try\"") >&5 + { (eval echo "$as_me:5587: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5589: \$? = $ac_status" >&5 + echo "$as_me:5590: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5596,7 +5597,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5599: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5600: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -5617,7 +5618,7 @@ if test "${with_libiconv_prefix+set}" = set; then fi; - echo "$as_me:5620: checking for iconv" >&5 + echo "$as_me:5621: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5626,7 +5627,7 @@ else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat >conftest.$ac_ext <<_ACEOF -#line 5629 "configure" +#line 5630 "configure" #include "confdefs.h" #include <stdlib.h> #include <iconv.h> @@ -5641,16 +5642,16 @@ iconv_t cd = iconv_open("",""); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5644: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5645: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5647: \$? = $ac_status" >&5 + echo "$as_me:5648: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5650: \"$ac_try\"") >&5 + { (eval echo "$as_me:5651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5653: \$? = $ac_status" >&5 + echo "$as_me:5654: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_func_iconv=yes else @@ -5662,7 +5663,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext am_save_LIBS="$LIBS" LIBS="$LIBS -liconv" cat >conftest.$ac_ext <<_ACEOF -#line 5665 "configure" +#line 5666 "configure" #include "confdefs.h" #include <stdlib.h> #include <iconv.h> @@ -5677,16 +5678,16 @@ iconv_t cd = iconv_open("",""); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5680: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5681: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5683: \$? = $ac_status" >&5 + echo "$as_me:5684: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5686: \"$ac_try\"") >&5 + { (eval echo "$as_me:5687: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5689: \$? = $ac_status" >&5 + echo "$as_me:5690: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_lib_iconv=yes am_cv_func_iconv=yes @@ -5699,7 +5700,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi fi -echo "$as_me:5702: result: $am_cv_func_iconv" >&5 +echo "$as_me:5703: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -5707,14 +5708,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:5710: checking for iconv declaration" >&5 + echo "$as_me:5711: checking for iconv declaration" >&5 echo $ECHO_N "checking for iconv declaration... $ECHO_C" >&6 if test "${am_cv_proto_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5717 "configure" +#line 5718 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5738,16 +5739,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5741: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5742: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5744: \$? = $ac_status" >&5 + echo "$as_me:5745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5747: \"$ac_try\"") >&5 + { (eval echo "$as_me:5748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5750: \$? = $ac_status" >&5 + echo "$as_me:5751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_arg1="" else @@ -5760,7 +5761,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` - echo "$as_me:5763: result: ${ac_t:- + echo "$as_me:5764: result: ${ac_t:- }$am_cv_proto_iconv" >&5 echo "${ECHO_T}${ac_t:- }$am_cv_proto_iconv" >&6 @@ -5775,13 +5776,13 @@ EOF LIBICONV="-liconv" fi - echo "$as_me:5778: checking for nl_langinfo and CODESET" >&5 + echo "$as_me:5779: 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 5784 "configure" +#line 5785 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -5793,16 +5794,16 @@ char* cs = nl_langinfo(CODESET); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5797: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5799: \$? = $ac_status" >&5 + echo "$as_me:5800: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5802: \"$ac_try\"") >&5 + { (eval echo "$as_me:5803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5805: \$? = $ac_status" >&5 + echo "$as_me:5806: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -5813,7 +5814,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5816: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:5817: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -5824,13 +5825,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:5827: checking for LC_MESSAGES" >&5 + echo "$as_me:5828: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 if test "${am_cv_val_LC_MESSAGES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5833 "configure" +#line 5834 "configure" #include "confdefs.h" #include <locale.h> int @@ -5842,16 +5843,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5845: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5846: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5848: \$? = $ac_status" >&5 + echo "$as_me:5849: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5851: \"$ac_try\"") >&5 + { (eval echo "$as_me:5852: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5854: \$? = $ac_status" >&5 + echo "$as_me:5855: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -5861,7 +5862,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5864: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:5865: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 if test $am_cv_val_LC_MESSAGES = yes; then @@ -5871,7 +5872,7 @@ EOF fi fi - echo "$as_me:5874: checking whether NLS is requested" >&5 + echo "$as_me:5875: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 # Check whether --enable-nls or --disable-nls was given. @@ -5881,7 +5882,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:5884: result: $USE_NLS" >&5 + echo "$as_me:5885: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -5894,7 +5895,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:5897: checking whether included gettext is requested" >&5 + echo "$as_me:5898: checking whether included gettext is requested" >&5 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6 # Check whether --with-included-gettext or --without-included-gettext was given. @@ -5904,30 +5905,30 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:5907: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:5908: result: $nls_cv_force_use_gnu_gettext" >&5 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then CATOBJEXT=NONE -echo "$as_me:5914: checking for libintl.h" >&5 +echo "$as_me:5915: checking for libintl.h" >&5 echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6 if test "${ac_cv_header_libintl_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5920 "configure" +#line 5921 "configure" #include "confdefs.h" #include <libintl.h> _ACEOF -if { (eval echo "$as_me:5924: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5925: \"$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:5930: \$? = $ac_status" >&5 + echo "$as_me:5931: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5946,7 +5947,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5949: result: $ac_cv_header_libintl_h" >&5 +echo "$as_me:5950: result: $ac_cv_header_libintl_h" >&5 echo "${ECHO_T}$ac_cv_header_libintl_h" >&6 if test $ac_cv_header_libintl_h = yes; then cf_find_header=yes @@ -6111,13 +6112,13 @@ cat >>confdefs.h <<\EOF #define HAVE_LIBINTL_H 1 EOF - echo "$as_me:6114: checking for GNU gettext in libc" >&5 + echo "$as_me:6115: checking for GNU gettext in libc" >&5 echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6 if test "${gt_cv_func_gnugettext1_libc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6120 "configure" +#line 6121 "configure" #include "confdefs.h" #include <libintl.h> extern int _nl_msg_cat_cntr; @@ -6131,16 +6132,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6134: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6135: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6137: \$? = $ac_status" >&5 + echo "$as_me:6138: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6140: \"$ac_try\"") >&5 + { (eval echo "$as_me:6141: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6143: \$? = $ac_status" >&5 + echo "$as_me:6144: \$? = $ac_status" >&5 (exit $ac_status); }; }; then gt_cv_func_gnugettext1_libc=yes else @@ -6150,13 +6151,13 @@ gt_cv_func_gnugettext1_libc=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6153: result: $gt_cv_func_gnugettext1_libc" >&5 +echo "$as_me:6154: result: $gt_cv_func_gnugettext1_libc" >&5 echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6 if test "$gt_cv_func_gnugettext1_libc" != "yes"; then cat >conftest.$ac_ext <<_ACEOF -#line 6159 "configure" +#line 6160 "configure" #include "confdefs.h" #include <libintl.h> extern int _nl_msg_cat_cntr; @@ -6170,16 +6171,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6173: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6174: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6176: \$? = $ac_status" >&5 + echo "$as_me:6177: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6179: \"$ac_try\"") >&5 + { (eval echo "$as_me:6180: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6182: \$? = $ac_status" >&5 + echo "$as_me:6183: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_find_linkage=yes else @@ -6251,7 +6252,7 @@ do LIBS="-lintl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_libdir" cat >conftest.$ac_ext <<_ACEOF -#line 6254 "configure" +#line 6255 "configure" #include "confdefs.h" #include <libintl.h> extern int _nl_msg_cat_cntr; @@ -6265,16 +6266,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6268: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6269: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6271: \$? = $ac_status" >&5 + echo "$as_me:6272: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6274: \"$ac_try\"") >&5 + { (eval echo "$as_me:6275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6277: \$? = $ac_status" >&5 + echo "$as_me:6278: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found in $cf_libdir" 1>&6 @@ -6323,13 +6324,13 @@ EOF for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6326: checking for $ac_func" >&5 +echo "$as_me:6327: 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 6332 "configure" +#line 6333 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6360,16 +6361,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6363: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6366: \$? = $ac_status" >&5 + echo "$as_me:6367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6369: \"$ac_try\"") >&5 + { (eval echo "$as_me:6370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6372: \$? = $ac_status" >&5 + echo "$as_me:6373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6379,7 +6380,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6382: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6383: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -6394,7 +6395,7 @@ done # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:6397: checking for $ac_word" >&5 +echo "$as_me:6398: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6422,16 +6423,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:6425: result: $MSGFMT" >&5 + echo "$as_me:6426: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:6428: result: no" >&5 + echo "$as_me:6429: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:6434: checking for $ac_word" >&5 +echo "$as_me:6435: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6448,7 +6449,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:6451: found $ac_dir/$ac_word" >&5 + echo "$as_me:6452: found $ac_dir/$ac_word" >&5 break fi done @@ -6460,17 +6461,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:6463: result: $GMSGFMT" >&5 + echo "$as_me:6464: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:6466: result: no" >&5 + echo "$as_me:6467: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:6473: checking for $ac_word" >&5 +echo "$as_me:6474: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6498,10 +6499,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:6501: result: $XGETTEXT" >&5 + echo "$as_me:6502: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:6504: result: no" >&5 + echo "$as_me:6505: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6517,7 +6518,7 @@ fi if test "$nls_cv_use_gnu_gettext" = "yes"; then if test ! -d $srcdir/intl ; then - { { echo "$as_me:6520: error: no NLS library is packaged with this application" >&5 + { { echo "$as_me:6521: error: no NLS library is packaged with this application" >&5 echo "$as_me: error: no NLS library is packaged with this application" >&2;} { (exit 1); exit 1; }; } fi @@ -6525,7 +6526,7 @@ echo "$as_me: error: no NLS library is packaged with this application" >&2;} # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:6528: checking for $ac_word" >&5 +echo "$as_me:6529: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6553,16 +6554,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:6556: result: $MSGFMT" >&5 + echo "$as_me:6557: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:6559: result: no" >&5 + echo "$as_me:6560: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:6565: checking for $ac_word" >&5 +echo "$as_me:6566: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6579,7 +6580,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:6582: found $ac_dir/$ac_word" >&5 + echo "$as_me:6583: found $ac_dir/$ac_word" >&5 break fi done @@ -6591,17 +6592,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:6594: result: $GMSGFMT" >&5 + echo "$as_me:6595: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:6597: result: no" >&5 + echo "$as_me:6598: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:6604: checking for $ac_word" >&5 +echo "$as_me:6605: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6629,10 +6630,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:6632: result: $XGETTEXT" >&5 + echo "$as_me:6633: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:6635: result: no" >&5 + echo "$as_me:6636: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6647,7 +6648,7 @@ fi if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:6650: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 + echo "$as_me:6651: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 GMSGFMT=":" fi @@ -6657,7 +6658,7 @@ echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:6660: result: found xgettext program is not GNU xgettext; ignore it" >&5 + echo "$as_me:6661: result: found xgettext program is not GNU xgettext; ignore it" >&5 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 XGETTEXT=":" fi @@ -6677,7 +6678,7 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 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:6680: checking for $ac_word" >&5 +echo "$as_me:6681: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INTLBISON+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6692,7 +6693,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_INTLBISON="$ac_prog" -echo "$as_me:6695: found $ac_dir/$ac_word" >&5 +echo "$as_me:6696: found $ac_dir/$ac_word" >&5 break done @@ -6700,10 +6701,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:6703: result: $INTLBISON" >&5 + echo "$as_me:6704: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:6706: result: no" >&5 + echo "$as_me:6707: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -6713,7 +6714,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:6716: checking version of bison" >&5 + echo "$as_me:6717: checking version of bison" >&5 echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in @@ -6722,7 +6723,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac - echo "$as_me:6725: result: $ac_prog_version" >&5 + echo "$as_me:6726: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -6748,7 +6749,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:6751: checking for catalogs to be installed" >&5 + echo "$as_me:6752: checking for catalogs to be installed" >&5 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do @@ -6768,7 +6769,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:6771: result: $LINGUAS" >&5 + echo "$as_me:6772: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -6801,7 +6802,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:6804: checking if we should use included message-library" >&5 +echo "$as_me:6805: checking if we should use included message-library" >&5 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6 # Check whether --enable-included-msgs or --disable-included-msgs was given. @@ -6812,7 +6813,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:6815: result: $use_our_messages" >&5 +echo "$as_me:6816: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -6853,23 +6854,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6856: checking for $ac_header" >&5 +echo "$as_me:6857: 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 6862 "configure" +#line 6863 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6866: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6867: \"$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:6872: \$? = $ac_status" >&5 + echo "$as_me:6873: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6888,7 +6889,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6891: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6892: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -6945,6 +6946,12 @@ if test "${with_nls_datadir+set}" = set; then else withval="${NLS_DATADIR-$prefix/$DATADIRNAME}" fi; +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$withval" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -6956,15 +6963,15 @@ case ".$withval" in #(vi eval withval="$withval" case ".$withval" in #(vi .NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:6967: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:6974: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -6972,7 +6979,7 @@ esac NLS_DATADIR="$withval" -echo "$as_me:6975: checking if you want full utility pathnames" >&5 +echo "$as_me:6982: checking if you want full utility pathnames" >&5 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6 # Check whether --enable-full-paths or --disable-full-paths was given. @@ -6989,13 +6996,13 @@ else with_full_paths=yes fi; -echo "$as_me:6992: result: $with_full_paths" >&5 +echo "$as_me:6999: result: $with_full_paths" >&5 echo "${ECHO_T}$with_full_paths" >&6 test $with_full_paths = no && cat >>confdefs.h <<\EOF #define USE_EXECVP 1 EOF -echo "$as_me:6998: checking for system mailer" >&5 +echo "$as_me:7005: checking for system mailer" >&5 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7015,13 +7022,13 @@ else fi -echo "$as_me:7018: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:7025: result: $cf_cv_SYSTEM_MAIL" >&5 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL" EOF -echo "$as_me:7024: checking system mail flags" >&5 +echo "$as_me:7031: checking system mail flags" >&5 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6 if test "${cf_cv_system_mail_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7037,7 +7044,7 @@ else fi -echo "$as_me:7040: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:7047: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL_FLAGS "$cf_cv_system_mail_flags" @@ -7049,7 +7056,7 @@ if test $with_full_paths = no ; then fi fi -echo "$as_me:7052: checking if $CC -U and -D options work together" >&5 +echo "$as_me:7059: checking if $CC -U and -D options work together" >&5 echo $ECHO_N "checking if $CC -U and -D options work together... $ECHO_C" >&6 if test "${cf_cv_cc_u_d_options+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7058,7 +7065,7 @@ else cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS" cat >conftest.$ac_ext <<_ACEOF -#line 7061 "configure" +#line 7068 "configure" #include "confdefs.h" int @@ -7077,16 +7084,16 @@ make a defined-error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7080: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7087: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7083: \$? = $ac_status" >&5 + echo "$as_me:7090: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7086: \"$ac_try\"") >&5 + { (eval echo "$as_me:7093: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7089: \$? = $ac_status" >&5 + echo "$as_me:7096: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_cc_u_d_options=yes @@ -7100,7 +7107,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:7103: result: $cf_cv_cc_u_d_options" >&5 +echo "$as_me:7110: result: $cf_cv_cc_u_d_options" >&5 echo "${ECHO_T}$cf_cv_cc_u_d_options" >&6 cf_XOPEN_SOURCE=600 @@ -7126,14 +7133,14 @@ irix[56].*) #(vi ;; linux*|gnu*) #(vi -echo "$as_me:7129: checking if we must define _GNU_SOURCE" >&5 +echo "$as_me:7136: 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 7136 "configure" +#line 7143 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -7148,16 +7155,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7151: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7158: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7154: \$? = $ac_status" >&5 + echo "$as_me:7161: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7157: \"$ac_try\"") >&5 + { (eval echo "$as_me:7164: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7160: \$? = $ac_status" >&5 + echo "$as_me:7167: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -7166,7 +7173,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 7169 "configure" +#line 7176 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -7181,16 +7188,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7184: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7191: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7187: \$? = $ac_status" >&5 + echo "$as_me:7194: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7190: \"$ac_try\"") >&5 + { (eval echo "$as_me:7197: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7193: \$? = $ac_status" >&5 + echo "$as_me:7200: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -7205,7 +7212,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7208: result: $cf_cv_gnu_source" >&5 +echo "$as_me:7215: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" @@ -7232,14 +7239,14 @@ solaris*) #(vi CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__" ;; *) - echo "$as_me:7235: checking if we should define _XOPEN_SOURCE" >&5 + echo "$as_me:7242: 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 7242 "configure" +#line 7249 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -7254,16 +7261,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7257: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7264: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7260: \$? = $ac_status" >&5 + echo "$as_me:7267: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7263: \"$ac_try\"") >&5 + { (eval echo "$as_me:7270: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7266: \$? = $ac_status" >&5 + echo "$as_me:7273: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -7272,7 +7279,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 7275 "configure" +#line 7282 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -7287,16 +7294,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7290: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7297: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7293: \$? = $ac_status" >&5 + echo "$as_me:7300: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7296: \"$ac_try\"") >&5 + { (eval echo "$as_me:7303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7299: \$? = $ac_status" >&5 + echo "$as_me:7306: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -7311,7 +7318,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7314: result: $cf_cv_xopen_source" >&5 +echo "$as_me:7321: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -7345,16 +7352,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?$//g'` -echo "$as_me:7348: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:7355: 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 "(line 7354) testing if the symbol is already defined go no further ..." 1>&5 +echo "(line 7361) testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 7357 "configure" +#line 7364 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -7369,16 +7376,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7372: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7379: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7375: \$? = $ac_status" >&5 + echo "$as_me:7382: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7378: \"$ac_try\"") >&5 + { (eval echo "$as_me:7385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7381: \$? = $ac_status" >&5 + echo "$as_me:7388: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -7399,7 +7406,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 7402 "configure" +#line 7409 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -7414,16 +7421,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7417: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7424: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7420: \$? = $ac_status" >&5 + echo "$as_me:7427: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7423: \"$ac_try\"") >&5 + { (eval echo "$as_me:7430: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7426: \$? = $ac_status" >&5 + echo "$as_me:7433: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7434,15 +7441,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "(line 7437) testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "(line 7444) testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "(line 7442) testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "(line 7449) testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 7445 "configure" +#line 7452 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -7457,16 +7464,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7460: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7467: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7463: \$? = $ac_status" >&5 + echo "$as_me:7470: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7466: \"$ac_try\"") >&5 + { (eval echo "$as_me:7473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7469: \$? = $ac_status" >&5 + echo "$as_me:7476: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7482,7 +7489,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7485: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:7492: 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 @@ -7499,14 +7506,14 @@ fi ;; esac -echo "$as_me:7502: checking if SIGWINCH is defined" >&5 +echo "$as_me:7509: 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 7509 "configure" +#line 7516 "configure" #include "confdefs.h" #include <sys/types.h> @@ -7521,23 +7528,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7524: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7531: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7527: \$? = $ac_status" >&5 + echo "$as_me:7534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7530: \"$ac_try\"") >&5 + { (eval echo "$as_me:7537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7533: \$? = $ac_status" >&5 + echo "$as_me:7540: \$? = $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 7540 "configure" +#line 7547 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -7555,16 +7562,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7558: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7561: \$? = $ac_status" >&5 + echo "$as_me:7568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7564: \"$ac_try\"") >&5 + { (eval echo "$as_me:7571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7567: \$? = $ac_status" >&5 + echo "$as_me:7574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -7578,11 +7585,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7581: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:7588: 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:7585: checking for actual SIGWINCH definition" >&5 +echo "$as_me:7592: 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 @@ -7593,7 +7600,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 7596 "configure" +#line 7603 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -7615,16 +7622,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7618: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7625: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7621: \$? = $ac_status" >&5 + echo "$as_me:7628: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7624: \"$ac_try\"") >&5 + { (eval echo "$as_me:7631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7627: \$? = $ac_status" >&5 + echo "$as_me:7634: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -7638,7 +7645,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:7641: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:7648: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -7726,7 +7733,7 @@ fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 7729 "configure" +#line 7736 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7738,16 +7745,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7741: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7748: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7744: \$? = $ac_status" >&5 + echo "$as_me:7751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7747: \"$ac_try\"") >&5 + { (eval echo "$as_me:7754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7750: \$? = $ac_status" >&5 + echo "$as_me:7757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7768,7 +7775,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:7771: checking if you want ssl library" >&5 +echo "$as_me:7778: checking if you want ssl library" >&5 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6 if test "${cf_cv_use_libssl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7783,11 +7790,11 @@ else fi; fi -echo "$as_me:7786: result: $cf_cv_use_libssl" >&5 +echo "$as_me:7793: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 if test "x$cf_cv_use_libssl" = "xno" ; then -echo "$as_me:7790: checking if you want experimental gnutls support" >&5 +echo "$as_me:7797: checking if you want experimental gnutls support" >&5 echo $ECHO_N "checking if you want experimental gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7802,11 +7809,11 @@ else fi; fi -echo "$as_me:7805: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:7812: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 fi -echo "$as_me:7809: checking if you want socks library" >&5 +echo "$as_me:7816: checking if you want socks library" >&5 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7821,10 +7828,10 @@ else fi; fi -echo "$as_me:7824: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:7831: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:7827: checking if you want socks5 library" >&5 +echo "$as_me:7834: checking if you want socks5 library" >&5 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks5+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7839,7 +7846,7 @@ else fi; fi -echo "$as_me:7842: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:7849: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -7857,7 +7864,7 @@ no|yes) #(vi test -d $cf_cv_use_libsocks/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks/../include" fi else - { echo "$as_me:7860: WARNING: expected a directory: $cf_cv_use_libsocks" >&5 + { echo "$as_me:7867: WARNING: expected a directory: $cf_cv_use_libsocks" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libsocks" >&2;} fi ;; @@ -7900,7 +7907,7 @@ cat >>confdefs.h <<\EOF EOF cat >conftest.$ac_ext <<_ACEOF -#line 7903 "configure" +#line 7910 "configure" #include "confdefs.h" #include <stdio.h> @@ -7914,22 +7921,22 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7917: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7924: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7920: \$? = $ac_status" >&5 + echo "$as_me:7927: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7923: \"$ac_try\"") >&5 + { (eval echo "$as_me:7930: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7926: \$? = $ac_status" >&5 + echo "$as_me:7933: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:7932: error: Cannot link with socks library" >&5 +{ { echo "$as_me:7939: error: Cannot link with socks library" >&5 echo "$as_me: error: Cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -7950,7 +7957,7 @@ no|yes) #(vi test -d $cf_cv_use_libsocks5/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks5/../include" fi else - { echo "$as_me:7953: WARNING: expected a directory: $cf_cv_use_libsocks5" >&5 + { echo "$as_me:7960: WARNING: expected a directory: $cf_cv_use_libsocks5" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libsocks5" >&2;} fi ;; @@ -7964,11 +7971,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:7967: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:7974: checking if the socks library uses socks4 prefix" >&5 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6 cf_use_socks4=error cat >conftest.$ac_ext <<_ACEOF -#line 7971 "configure" +#line 7978 "configure" #include "confdefs.h" #include <socks.h> @@ -7982,16 +7989,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7985: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7992: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7988: \$? = $ac_status" >&5 + echo "$as_me:7995: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7991: \"$ac_try\"") >&5 + { (eval echo "$as_me:7998: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7994: \$? = $ac_status" >&5 + echo "$as_me:8001: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define USE_SOCKS4_PREFIX 1 @@ -8002,7 +8009,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 8005 "configure" +#line 8012 "configure" #include "confdefs.h" #include <socks.h> int @@ -8014,29 +8021,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8017: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8024: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8020: \$? = $ac_status" >&5 + echo "$as_me:8027: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8023: \"$ac_try\"") >&5 + { (eval echo "$as_me:8030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8026: \$? = $ac_status" >&5 + echo "$as_me:8033: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks4=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:8032: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:8039: error: Cannot link with socks5 library" >&5 echo "$as_me: error: Cannot link with socks5 library" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:8039: result: $cf_use_socks4" >&5 +echo "$as_me:8046: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then cat >>confdefs.h <<\EOF @@ -8089,10 +8096,10 @@ EOF EOF fi -echo "$as_me:8092: checking if socks5p.h is available" >&5 +echo "$as_me:8099: checking if socks5p.h is available" >&5 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 8095 "configure" +#line 8102 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -8107,16 +8114,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8110: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8117: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8113: \$? = $ac_status" >&5 + echo "$as_me:8120: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8116: \"$ac_try\"") >&5 + { (eval echo "$as_me:8123: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8119: \$? = $ac_status" >&5 + echo "$as_me:8126: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -8125,7 +8132,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:8128: result: $cf_use_socks5p_h" >&5 +echo "$as_me:8135: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF #define INCLUDE_PROTOTYPES 1 @@ -8134,13 +8141,13 @@ EOF else cf_test_netlibs=no -echo "$as_me:8137: checking for network libraries" >&5 +echo "$as_me:8144: checking for network libraries" >&5 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6 if test "${cf_cv_netlibs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:8143: result: working..." >&5 +echo "$as_me:8150: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" cf_test_netlibs=yes @@ -8148,13 +8155,13 @@ cf_test_netlibs=yes for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8151: checking for $ac_func" >&5 +echo "$as_me:8158: 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 8157 "configure" +#line 8164 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8185,16 +8192,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8188: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8195: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8191: \$? = $ac_status" >&5 + echo "$as_me:8198: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8194: \"$ac_try\"") >&5 + { (eval echo "$as_me:8201: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8197: \$? = $ac_status" >&5 + echo "$as_me:8204: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8204,7 +8211,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8207: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8214: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -8213,7 +8220,7 @@ EOF else -echo "$as_me:8216: checking for gethostname in -lnsl" >&5 +echo "$as_me:8223: checking for gethostname in -lnsl" >&5 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8221,7 +8228,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8224 "configure" +#line 8231 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8240,16 +8247,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8243: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8250: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8246: \$? = $ac_status" >&5 + echo "$as_me:8253: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8249: \"$ac_try\"") >&5 + { (eval echo "$as_me:8256: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8252: \$? = $ac_status" >&5 + echo "$as_me:8259: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -8260,7 +8267,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8263: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:8270: result: $ac_cv_lib_nsl_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6 if test $ac_cv_lib_nsl_gethostname = yes; then @@ -8277,7 +8284,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:8280: checking for gethostname in -lsocket" >&5 +echo "$as_me:8287: checking for gethostname in -lsocket" >&5 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8285,7 +8292,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8288 "configure" +#line 8295 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8304,16 +8311,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8307: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8314: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8310: \$? = $ac_status" >&5 + echo "$as_me:8317: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8313: \"$ac_try\"") >&5 + { (eval echo "$as_me:8320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8316: \$? = $ac_status" >&5 + echo "$as_me:8323: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -8324,7 +8331,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8327: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:8334: result: $ac_cv_lib_socket_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6 if test $ac_cv_lib_socket_gethostname = yes; then @@ -8352,7 +8359,7 @@ done # FIXME: sequent needs this library (i.e., -lsocket -linet -lnsl), but # I don't know the entrypoints - 97/7/22 TD # AC_HAVE_LIBRARY(inet,cf_cv_netlibs="-linet $cf_cv_netlibs") -echo "$as_me:8355: checking for main in -linet" >&5 +echo "$as_me:8362: checking for main in -linet" >&5 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6 if test "${ac_cv_lib_inet_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8360,7 +8367,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8363 "configure" +#line 8370 "configure" #include "confdefs.h" int @@ -8372,16 +8379,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8375: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8382: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8378: \$? = $ac_status" >&5 + echo "$as_me:8385: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8381: \"$ac_try\"") >&5 + { (eval echo "$as_me:8388: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8384: \$? = $ac_status" >&5 + echo "$as_me:8391: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -8392,7 +8399,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8395: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:8402: result: $ac_cv_lib_inet_main" >&5 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6 if test $ac_cv_lib_inet_main = yes; then cf_cv_netlibs="-linet $cf_cv_netlibs" @@ -8404,13 +8411,13 @@ if test "$ac_cv_func_lsocket" != no ; then for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8407: checking for $ac_func" >&5 +echo "$as_me:8414: 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 8413 "configure" +#line 8420 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8441,16 +8448,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8444: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8447: \$? = $ac_status" >&5 + echo "$as_me:8454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8450: \"$ac_try\"") >&5 + { (eval echo "$as_me:8457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8453: \$? = $ac_status" >&5 + echo "$as_me:8460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8460,7 +8467,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8463: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8470: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -8469,7 +8476,7 @@ EOF else -echo "$as_me:8472: checking for socket in -lsocket" >&5 +echo "$as_me:8479: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8477,7 +8484,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8480 "configure" +#line 8487 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8496,16 +8503,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8499: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8506: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8502: \$? = $ac_status" >&5 + echo "$as_me:8509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8505: \"$ac_try\"") >&5 + { (eval echo "$as_me:8512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8508: \$? = $ac_status" >&5 + echo "$as_me:8515: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -8516,7 +8523,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8519: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:8526: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then @@ -8533,7 +8540,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:8536: checking for socket in -lbsd" >&5 +echo "$as_me:8543: checking for socket in -lbsd" >&5 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8541,7 +8548,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8544 "configure" +#line 8551 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8560,16 +8567,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8563: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8570: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8566: \$? = $ac_status" >&5 + echo "$as_me:8573: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8569: \"$ac_try\"") >&5 + { (eval echo "$as_me:8576: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8572: \$? = $ac_status" >&5 + echo "$as_me:8579: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -8580,7 +8587,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8583: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:8590: result: $ac_cv_lib_bsd_socket" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6 if test $ac_cv_lib_bsd_socket = yes; then @@ -8610,13 +8617,13 @@ fi for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8613: checking for $ac_func" >&5 +echo "$as_me:8620: 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 8619 "configure" +#line 8626 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8647,16 +8654,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8650: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8657: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8653: \$? = $ac_status" >&5 + echo "$as_me:8660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8656: \"$ac_try\"") >&5 + { (eval echo "$as_me:8663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8659: \$? = $ac_status" >&5 + echo "$as_me:8666: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8666,7 +8673,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8669: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8676: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -8675,7 +8682,7 @@ EOF else -echo "$as_me:8678: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:8685: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8683,7 +8690,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8686 "configure" +#line 8693 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8702,16 +8709,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8712: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8708: \$? = $ac_status" >&5 + echo "$as_me:8715: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8711: \"$ac_try\"") >&5 + { (eval echo "$as_me:8718: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8714: \$? = $ac_status" >&5 + echo "$as_me:8721: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -8722,7 +8729,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8725: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:8732: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then @@ -8749,13 +8756,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8752: checking for $ac_func" >&5 +echo "$as_me:8759: 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 8758 "configure" +#line 8765 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8786,16 +8793,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8789: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8796: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8792: \$? = $ac_status" >&5 + echo "$as_me:8799: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8795: \"$ac_try\"") >&5 + { (eval echo "$as_me:8802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8798: \$? = $ac_status" >&5 + echo "$as_me:8805: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8805,7 +8812,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8808: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8815: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -8814,7 +8821,7 @@ EOF else -echo "$as_me:8817: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:8824: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8822,7 +8829,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8825 "configure" +#line 8832 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8841,16 +8848,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8844: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8851: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8847: \$? = $ac_status" >&5 + echo "$as_me:8854: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8850: \"$ac_try\"") >&5 + { (eval echo "$as_me:8857: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8853: \$? = $ac_status" >&5 + echo "$as_me:8860: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -8861,7 +8868,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8864: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:8871: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then @@ -8890,14 +8897,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:8893: checking for inet_aton function" >&5 +echo "$as_me:8900: checking for inet_aton function" >&5 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6 if test "${cf_cv_have_inet_aton+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8900 "configure" +#line 8907 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -8913,16 +8920,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8916: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8923: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8919: \$? = $ac_status" >&5 + echo "$as_me:8926: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8922: \"$ac_try\"") >&5 + { (eval echo "$as_me:8929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8925: \$? = $ac_status" >&5 + echo "$as_me:8932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -8932,7 +8939,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8935: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:8942: result: $cf_cv_have_inet_aton" >&5 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6 if test "$cf_cv_have_inet_aton" = yes ; then cat >>confdefs.h <<\EOF @@ -8940,14 +8947,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then EOF else - echo "$as_me:8943: checking for inet_addr function" >&5 + echo "$as_me:8950: checking for inet_addr function" >&5 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6 if test "${cf_cv_have_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8950 "configure" +#line 8957 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -8963,16 +8970,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8966: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8973: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8969: \$? = $ac_status" >&5 + echo "$as_me:8976: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8972: \"$ac_try\"") >&5 + { (eval echo "$as_me:8979: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8975: \$? = $ac_status" >&5 + echo "$as_me:8982: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -8982,10 +8989,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8985: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:8992: result: $cf_cv_have_inet_addr" >&5 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6 if test "$cf_cv_have_inet_addr" = no ; then - echo "$as_me:8988: checking for library with inet_addr" >&5 + echo "$as_me:8995: checking for library with inet_addr" >&5 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6 if test "${cf_cv_lib_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8996,7 +9003,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 8999 "configure" +#line 9006 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -9012,16 +9019,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9015: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9018: \$? = $ac_status" >&5 + echo "$as_me:9025: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9021: \"$ac_try\"") >&5 + { (eval echo "$as_me:9028: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9024: \$? = $ac_status" >&5 + echo "$as_me:9031: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -9035,12 +9042,12 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:9038: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:9045: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then LIBS="$LIBS $cf_cv_lib_inet_addr" else - { echo "$as_me:9043: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:9050: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi @@ -9055,7 +9062,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:9058: checking for SSL_get_version in -lssl" >&5 +echo "$as_me:9065: checking for SSL_get_version in -lssl" >&5 echo $ECHO_N "checking for SSL_get_version in -lssl... $ECHO_C" >&6 if test "${ac_cv_lib_ssl_SSL_get_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9063,7 +9070,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lssl -lcrypto $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9066 "configure" +#line 9073 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9082,16 +9089,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9085: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9092: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9088: \$? = $ac_status" >&5 + echo "$as_me:9095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9091: \"$ac_try\"") >&5 + { (eval echo "$as_me:9098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9094: \$? = $ac_status" >&5 + echo "$as_me:9101: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ssl_SSL_get_version=yes else @@ -9102,7 +9109,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9105: result: $ac_cv_lib_ssl_SSL_get_version" >&5 +echo "$as_me:9112: result: $ac_cv_lib_ssl_SSL_get_version" >&5 echo "${ECHO_T}$ac_cv_lib_ssl_SSL_get_version" >&6 if test $ac_cv_lib_ssl_SSL_get_version = yes; then cat >>confdefs.h <<EOF @@ -9119,7 +9126,7 @@ else cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { { echo "$as_me:9122: error: cannot find ssl library" >&5 + { { echo "$as_me:9129: error: cannot find ssl library" >&5 echo "$as_me: error: cannot find ssl library" >&2;} { (exit 1); exit 1; }; } fi @@ -9134,13 +9141,13 @@ fi elif test -d $cf_cv_use_libssl/../include ; then cf_ssl_root=$cf_cv_use_libssl/.. else - { { echo "$as_me:9137: error: cannot find ssl library under $cf_cv_use_libssl" >&5 + { { echo "$as_me:9144: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:9143: WARNING: expected a directory: $cf_cv_use_libssl" >&5 + { echo "$as_me:9150: WARNING: expected a directory: $cf_cv_use_libssl" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libssl" >&2;} fi ;; @@ -9224,10 +9231,10 @@ fi fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:9227: checking for openssl include directory" >&5 +echo "$as_me:9234: checking for openssl include directory" >&5 echo $ECHO_N "checking for openssl include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 9230 "configure" +#line 9237 "configure" #include "confdefs.h" #include <stdio.h> @@ -9241,16 +9248,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9244: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9251: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9247: \$? = $ac_status" >&5 + echo "$as_me:9254: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9250: \"$ac_try\"") >&5 + { (eval echo "$as_me:9257: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9253: \$? = $ac_status" >&5 + echo "$as_me:9260: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_openssl_incl=yes else @@ -9259,7 +9266,7 @@ cat conftest.$ac_ext >&5 cf_openssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:9262: result: $cf_openssl_incl" >&5 +echo "$as_me:9269: result: $cf_openssl_incl" >&5 echo "${ECHO_T}$cf_openssl_incl" >&6 test "$cf_openssl_incl" = yes && cat >>confdefs.h <<\EOF #define USE_OPENSSL_INCL 1 @@ -9267,10 +9274,10 @@ EOF fi -echo "$as_me:9270: checking if we can link to ssl library" >&5 +echo "$as_me:9277: checking if we can link to ssl library" >&5 echo $ECHO_N "checking if we can link to ssl library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 9273 "configure" +#line 9280 "configure" #include "confdefs.h" #include <stdio.h> @@ -9289,16 +9296,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9292: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9299: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9295: \$? = $ac_status" >&5 + echo "$as_me:9302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9298: \"$ac_try\"") >&5 + { (eval echo "$as_me:9305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9301: \$? = $ac_status" >&5 + echo "$as_me:9308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -9307,7 +9314,7 @@ cat conftest.$ac_ext >&5 cf_ssl_library=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:9310: result: $cf_ssl_library" >&5 +echo "$as_me:9317: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then cat >>confdefs.h <<\EOF @@ -9319,7 +9326,7 @@ EOF EOF else - { { echo "$as_me:9322: error: Cannot link with ssl library" >&5 + { { echo "$as_me:9329: error: Cannot link with ssl library" >&5 echo "$as_me: error: Cannot link with ssl library" >&2;} { (exit 1); exit 1; }; } fi @@ -9327,7 +9334,7 @@ fi elif test "x$cf_cv_use_libgnutls" != xno ; then cf_ssl_library="-lgnutls -lcrypt" -echo "$as_me:9330: checking if we know what directory gnutls is in" >&5 +echo "$as_me:9337: checking if we know what directory gnutls is in" >&5 echo $ECHO_N "checking if we know what directory gnutls is in... $ECHO_C" >&6 case "$cf_cv_use_libgnutls" in #(vi no) #(vi @@ -9335,7 +9342,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:9338: checking for gnutls_init in -lgnutls" >&5 +echo "$as_me:9345: checking for gnutls_init in -lgnutls" >&5 echo $ECHO_N "checking for gnutls_init in -lgnutls... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_gnutls_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9343,7 +9350,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls -lgnutls-extra -lgnutls -lcrypt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9346 "configure" +#line 9353 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9362,16 +9369,16 @@ gnutls_init (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9365: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9372: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9368: \$? = $ac_status" >&5 + echo "$as_me:9375: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9371: \"$ac_try\"") >&5 + { (eval echo "$as_me:9378: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9374: \$? = $ac_status" >&5 + echo "$as_me:9381: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_gnutls_init=yes else @@ -9382,7 +9389,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9385: result: $ac_cv_lib_gnutls_gnutls_init" >&5 +echo "$as_me:9392: result: $ac_cv_lib_gnutls_gnutls_init" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_gnutls_init" >&6 if test $ac_cv_lib_gnutls_gnutls_init = yes; then cat >>confdefs.h <<EOF @@ -9398,7 +9405,7 @@ else test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6 else - { { echo "$as_me:9401: error: cannot find gnutls library" >&5 + { { echo "$as_me:9408: error: cannot find gnutls library" >&5 echo "$as_me: error: cannot find gnutls library" >&2;} { (exit 1); exit 1; }; } fi @@ -9413,17 +9420,17 @@ fi elif test -d $cf_cv_use_libgnutls/../include ; then cf_ssl_root=$cf_cv_use_libgnutls/.. else - { { echo "$as_me:9416: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 + { { echo "$as_me:9423: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi else - { echo "$as_me:9421: WARNING: expected a directory: $cf_cv_use_libgnutls" >&5 + { echo "$as_me:9428: WARNING: expected a directory: $cf_cv_use_libgnutls" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libgnutls" >&2;} fi ;; esac -echo "$as_me:9426: result: $cf_ssl_root" >&5 +echo "$as_me:9433: result: $cf_ssl_root" >&5 echo "${ECHO_T}$cf_ssl_root" >&6 LIBS="$cf_ssl_library $LIBS" @@ -9504,7 +9511,7 @@ fi fi fi -echo "$as_me:9507: checking for SSL_connect in -lgnutls-openssl" >&5 +echo "$as_me:9514: checking for SSL_connect in -lgnutls-openssl" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9512,7 +9519,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9515 "configure" +#line 9522 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9531,16 +9538,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9534: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9541: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9537: \$? = $ac_status" >&5 + echo "$as_me:9544: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9540: \"$ac_try\"") >&5 + { (eval echo "$as_me:9547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9543: \$? = $ac_status" >&5 + echo "$as_me:9550: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -9551,12 +9558,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9554: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:9561: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then LIBS="-lgnutls-openssl $LIBS" else - echo "$as_me:9559: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:9566: checking for SSL_connect in -lgnutls-extra" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9564,7 +9571,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9567 "configure" +#line 9574 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9583,16 +9590,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9586: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9593: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9589: \$? = $ac_status" >&5 + echo "$as_me:9596: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9592: \"$ac_try\"") >&5 + { (eval echo "$as_me:9599: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9595: \$? = $ac_status" >&5 + echo "$as_me:9602: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -9603,12 +9610,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9606: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:9613: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then LIBS="-lgnutls-extra $LIBS" else - { { echo "$as_me:9611: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:9618: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -9616,10 +9623,10 @@ fi fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:9619: checking for gnutls include directory" >&5 +echo "$as_me:9626: checking for gnutls include directory" >&5 echo $ECHO_N "checking for gnutls include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 9622 "configure" +#line 9629 "configure" #include "confdefs.h" #include <stdio.h> @@ -9633,16 +9640,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9636: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9643: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9639: \$? = $ac_status" >&5 + echo "$as_me:9646: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9642: \"$ac_try\"") >&5 + { (eval echo "$as_me:9649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9645: \$? = $ac_status" >&5 + echo "$as_me:9652: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_openssl_incl=yes else @@ -9651,7 +9658,7 @@ cat conftest.$ac_ext >&5 cf_openssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:9654: result: $cf_openssl_incl" >&5 +echo "$as_me:9661: result: $cf_openssl_incl" >&5 echo "${ECHO_T}$cf_openssl_incl" >&6 test "$cf_openssl_incl" = yes && cat >>confdefs.h <<\EOF #define USE_GNUTLS_INCL 1 @@ -9659,10 +9666,10 @@ EOF fi -echo "$as_me:9662: checking if we can link to gnutls library" >&5 +echo "$as_me:9669: checking if we can link to gnutls library" >&5 echo $ECHO_N "checking if we can link to gnutls library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 9665 "configure" +#line 9672 "configure" #include "confdefs.h" #include <stdio.h> @@ -9681,16 +9688,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9684: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9691: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9687: \$? = $ac_status" >&5 + echo "$as_me:9694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9690: \"$ac_try\"") >&5 + { (eval echo "$as_me:9697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9693: \$? = $ac_status" >&5 + echo "$as_me:9700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -9699,7 +9706,7 @@ cat conftest.$ac_ext >&5 cf_ssl_library=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:9702: result: $cf_ssl_library" >&5 +echo "$as_me:9709: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then cat >>confdefs.h <<\EOF @@ -9707,15 +9714,15 @@ if test "$cf_ssl_library" = yes ; then EOF else - { { echo "$as_me:9710: error: Cannot link with gnutls library" >&5 + { { echo "$as_me:9717: error: Cannot link with gnutls library" >&5 echo "$as_me: error: Cannot link with gnutls library" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:9715: checking for X509 support" >&5 +echo "$as_me:9722: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 9718 "configure" +#line 9725 "configure" #include "confdefs.h" #include <stdio.h> @@ -9735,16 +9742,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(X509_STORE_CTX *0)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9738: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9745: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9741: \$? = $ac_status" >&5 + echo "$as_me:9748: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9744: \"$ac_try\"") >&5 + { (eval echo "$as_me:9751: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9747: \$? = $ac_status" >&5 + echo "$as_me:9754: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=no else @@ -9752,7 +9759,7 @@ else cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:9755: result: $cf_x509_support" >&5 +echo "$as_me:9762: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then cat >>confdefs.h <<\EOF @@ -9763,7 +9770,7 @@ fi fi -echo "$as_me:9766: checking for screen type" >&5 +echo "$as_me:9773: checking for screen type" >&5 echo $ECHO_N "checking for screen type... $ECHO_C" >&6 if test "${cf_cv_screen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9777,7 +9784,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:9780: error: Unexpected value" >&5 +*) { { echo "$as_me:9787: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -9786,7 +9793,7 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:9789: result: $cf_cv_screen" >&5 +echo "$as_me:9796: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in @@ -9796,6 +9803,12 @@ curses|ncurses*) if test "${with_curses_dir+set}" = set; then withval="$with_curses_dir" +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$withval" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -9807,15 +9820,15 @@ case ".$withval" in #(vi eval withval="$withval" case ".$withval" in #(vi .NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:9818: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:9831: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9829,11 +9842,12 @@ fi; ;; esac +cf_wide_curses=no dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:9836: checking for extra include directories" >&5 +echo "$as_me:9850: checking for extra include directories" >&5 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6 if test "${cf_cv_curses_incdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9853,11 +9867,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:9856: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:9870: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$cf_cv_curses_incdir $CPPFLAGS" -echo "$as_me:9860: checking if we have identified curses headers" >&5 +echo "$as_me:9874: checking if we have identified curses headers" >&5 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6 if test "${cf_cv_ncurses_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9871,7 +9885,7 @@ for cf_header in \ ncurses/ncurses.h do cat >conftest.$ac_ext <<_ACEOF -#line 9874 "configure" +#line 9888 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -9883,16 +9897,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9886: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9900: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9889: \$? = $ac_status" >&5 + echo "$as_me:9903: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9892: \"$ac_try\"") >&5 + { (eval echo "$as_me:9906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9895: \$? = $ac_status" >&5 + echo "$as_me:9909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -9903,11 +9917,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:9906: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:9920: result: $cf_cv_ncurses_header" >&5 echo "${ECHO_T}$cf_cv_ncurses_header" >&6 if test "$cf_cv_ncurses_header" = none ; then - { { echo "$as_me:9910: error: No curses header-files found" >&5 + { { echo "$as_me:9924: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -9917,23 +9931,23 @@ fi for ac_header in $cf_cv_ncurses_header do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:9920: checking for $ac_header" >&5 +echo "$as_me:9934: 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 9926 "configure" +#line 9940 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:9930: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:9944: \"$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:9936: \$? = $ac_status" >&5 + echo "$as_me:9950: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -9952,7 +9966,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:9955: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:9969: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -9962,7 +9976,7 @@ EOF fi done -echo "$as_me:9965: checking for terminfo header" >&5 +echo "$as_me:9979: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9980,7 +9994,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 9983 "configure" +#line 9997 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -9995,16 +10009,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9998: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10012: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10001: \$? = $ac_status" >&5 + echo "$as_me:10015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10004: \"$ac_try\"") >&5 + { (eval echo "$as_me:10018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10007: \$? = $ac_status" >&5 + echo "$as_me:10021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -10020,7 +10034,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:10023: result: $cf_cv_term_header" >&5 +echo "$as_me:10037: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -10049,7 +10063,7 @@ EOF ;; esac -echo "$as_me:10052: checking for ncurses version" >&5 +echo "$as_me:10066: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10075,10 +10089,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:10078: \"$cf_try\"") >&5 + { (eval echo "$as_me:10092: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:10081: \$? = $ac_status" >&5 + echo "$as_me:10095: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -10088,7 +10102,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 10091 "configure" +#line 10105 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -10113,15 +10127,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:10116: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10130: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10119: \$? = $ac_status" >&5 + echo "$as_me:10133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:10121: \"$ac_try\"") >&5 + { (eval echo "$as_me:10135: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10124: \$? = $ac_status" >&5 + echo "$as_me:10138: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -10135,16 +10149,16 @@ fi rm -f $cf_tempfile fi -echo "$as_me:10138: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:10152: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:10144: checking if we have identified curses libraries" >&5 +echo "$as_me:10158: checking if we have identified curses libraries" >&5 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10147 "configure" +#line 10161 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -10156,16 +10170,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10159: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10173: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10162: \$? = $ac_status" >&5 + echo "$as_me:10176: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10165: \"$ac_try\"") >&5 + { (eval echo "$as_me:10179: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10168: \$? = $ac_status" >&5 + echo "$as_me:10182: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -10174,13 +10188,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:10177: result: $cf_result" >&5 +echo "$as_me:10191: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in #(vi freebsd*) #(vi - echo "$as_me:10183: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:10197: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10188,7 +10202,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10191 "configure" +#line 10205 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10207,16 +10221,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10210: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10213: \$? = $ac_status" >&5 + echo "$as_me:10227: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10216: \"$ac_try\"") >&5 + { (eval echo "$as_me:10230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10219: \$? = $ac_status" >&5 + echo "$as_me:10233: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -10227,7 +10241,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10230: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:10244: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then LIBS="-lmytinfo $LIBS" @@ -10235,7 +10249,7 @@ fi ;; hpux10.*) #(vi - echo "$as_me:10238: checking for initscr in -lcur_colr" >&5 + echo "$as_me:10252: checking for initscr in -lcur_colr" >&5 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10243,7 +10257,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10246 "configure" +#line 10260 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10262,16 +10276,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10265: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10279: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10268: \$? = $ac_status" >&5 + echo "$as_me:10282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10271: \"$ac_try\"") >&5 + { (eval echo "$as_me:10285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10274: \$? = $ac_status" >&5 + echo "$as_me:10288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -10282,7 +10296,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10285: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:10299: result: $ac_cv_lib_cur_colr_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6 if test $ac_cv_lib_cur_colr_initscr = yes; then @@ -10291,7 +10305,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then else - echo "$as_me:10294: checking for initscr in -lHcurses" >&5 + echo "$as_me:10308: checking for initscr in -lHcurses" >&5 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10299,7 +10313,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10302 "configure" +#line 10316 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10318,16 +10332,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10321: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10335: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10324: \$? = $ac_status" >&5 + echo "$as_me:10338: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10327: \"$ac_try\"") >&5 + { (eval echo "$as_me:10341: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10330: \$? = $ac_status" >&5 + echo "$as_me:10344: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -10338,7 +10352,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10341: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:10355: result: $ac_cv_lib_Hcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6 if test $ac_cv_lib_Hcurses_initscr = yes; then @@ -10376,13 +10390,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # Check for library containing tgoto. Do this before curses library # because it may be needed to link the test-case for initscr. - echo "$as_me:10379: checking for tgoto" >&5 + echo "$as_me:10393: checking for tgoto" >&5 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6 if test "${ac_cv_func_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10385 "configure" +#line 10399 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -10413,16 +10427,16 @@ f = tgoto; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10416: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10430: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10419: \$? = $ac_status" >&5 + echo "$as_me:10433: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10422: \"$ac_try\"") >&5 + { (eval echo "$as_me:10436: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10425: \$? = $ac_status" >&5 + echo "$as_me:10439: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -10432,7 +10446,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10435: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:10449: result: $ac_cv_func_tgoto" >&5 echo "${ECHO_T}$ac_cv_func_tgoto" >&6 if test $ac_cv_func_tgoto = yes; then cf_term_lib=predefined @@ -10441,7 +10455,7 @@ else for cf_term_lib in $cf_check_list termcap termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:10444: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:10458: checking for tgoto in -l$cf_term_lib" >&5 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10449,7 +10463,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10452 "configure" +#line 10466 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10468,16 +10482,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10471: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10485: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10474: \$? = $ac_status" >&5 + echo "$as_me:10488: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10477: \"$ac_try\"") >&5 + { (eval echo "$as_me:10491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10480: \$? = $ac_status" >&5 + echo "$as_me:10494: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -10488,7 +10502,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10491: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:10505: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break @@ -10503,7 +10517,7 @@ fi for cf_curs_lib in $cf_check_list xcurses jcurses unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh` -echo "$as_me:10506: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:10520: checking for initscr in -l$cf_curs_lib" >&5 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10511,7 +10525,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10514 "configure" +#line 10528 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10530,16 +10544,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10533: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10547: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10536: \$? = $ac_status" >&5 + echo "$as_me:10550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10539: \"$ac_try\"") >&5 + { (eval echo "$as_me:10553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10542: \$? = $ac_status" >&5 + echo "$as_me:10556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -10550,23 +10564,23 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10553: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:10567: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break fi done - test $cf_curs_lib = unknown && { { echo "$as_me:10560: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:10574: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown ; then - echo "$as_me:10566: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:10580: checking if we can link with $cf_curs_lib library" >&5 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10569 "configure" +#line 10583 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -10578,16 +10592,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10581: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10595: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10584: \$? = $ac_status" >&5 + echo "$as_me:10598: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10587: \"$ac_try\"") >&5 + { (eval echo "$as_me:10601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10590: \$? = $ac_status" >&5 + echo "$as_me:10604: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -10596,18 +10610,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:10599: result: $cf_result" >&5 + echo "$as_me:10613: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:10601: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:10615: error: Cannot link curses library" >&5 echo "$as_me: error: Cannot link curses library" >&2;} { (exit 1); exit 1; }; } elif test "$cf_curs_lib" = "$cf_term_lib" ; then : elif test "$cf_term_lib" != predefined ; then - echo "$as_me:10607: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:10621: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10610 "configure" +#line 10624 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -10619,16 +10633,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10622: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10636: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10625: \$? = $ac_status" >&5 + echo "$as_me:10639: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10628: \"$ac_try\"") >&5 + { (eval echo "$as_me:10642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10631: \$? = $ac_status" >&5 + echo "$as_me:10645: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -10637,7 +10651,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10640 "configure" +#line 10654 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -10649,16 +10663,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10652: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10666: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10655: \$? = $ac_status" >&5 + echo "$as_me:10669: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10658: \"$ac_try\"") >&5 + { (eval echo "$as_me:10672: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10661: \$? = $ac_status" >&5 + echo "$as_me:10675: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -10670,13 +10684,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:10673: result: $cf_result" >&5 + echo "$as_me:10687: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:10679: checking for curses performance tradeoff" >&5 +echo "$as_me:10693: checking for curses performance tradeoff" >&5 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6 if test "${cf_cv_curs_performance+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10684,7 +10698,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 10687 "configure" +#line 10701 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -10703,20 +10717,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10706: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10720: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10709: \$? = $ac_status" >&5 + echo "$as_me:10723: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10712: \"$ac_try\"") >&5 + { (eval echo "$as_me:10726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10715: \$? = $ac_status" >&5 + echo "$as_me:10729: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 10719 "configure" +#line 10733 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -10736,16 +10750,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10739: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10753: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10742: \$? = $ac_status" >&5 + echo "$as_me:10756: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10745: \"$ac_try\"") >&5 + { (eval echo "$as_me:10759: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10748: \$? = $ac_status" >&5 + echo "$as_me:10762: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -10760,20 +10774,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10763: result: $cf_cv_curs_performance" >&5 +echo "$as_me:10777: result: $cf_cv_curs_performance" >&5 echo "${ECHO_T}$cf_cv_curs_performance" >&6 test $cf_cv_curs_performance = yes && cat >>confdefs.h <<\EOF #define CURS_PERFORMANCE 1 EOF -echo "$as_me:10769: checking for curses touchline function" >&5 +echo "$as_me:10783: checking for curses touchline function" >&5 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6 if test "${cf_cv_curs_touchline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10776 "configure" +#line 10790 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -10786,23 +10800,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10789: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10803: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10792: \$? = $ac_status" >&5 + echo "$as_me:10806: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10795: \"$ac_try\"") >&5 + { (eval echo "$as_me:10809: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10798: \$? = $ac_status" >&5 + echo "$as_me:10812: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=bsd else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 10805 "configure" +#line 10819 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -10815,16 +10829,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10818: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10832: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10821: \$? = $ac_status" >&5 + echo "$as_me:10835: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10824: \"$ac_try\"") >&5 + { (eval echo "$as_me:10838: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10827: \$? = $ac_status" >&5 + echo "$as_me:10841: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -10836,7 +10850,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10839: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:10853: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -10862,7 +10876,7 @@ test -n "$cf_cv_curses_dir" && \ test "$cf_cv_curses_dir" != "no" && \ CPPFLAGS="-I$cf_cv_curses_dir/include -I$cf_cv_curses_dir/include/$cf_ncuhdr_root $CPPFLAGS" -echo "$as_me:10865: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:10879: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10874,7 +10888,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 10877 "configure" +#line 10891 "configure" #include "confdefs.h" #include <$cf_header> @@ -10898,16 +10912,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10901: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10915: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10904: \$? = $ac_status" >&5 + echo "$as_me:10918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10907: \"$ac_try\"") >&5 + { (eval echo "$as_me:10921: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10910: \$? = $ac_status" >&5 + echo "$as_me:10924: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -10922,14 +10936,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:10925: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:10939: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:10932: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:10946: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11024,7 +11038,7 @@ do cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11027 "configure" +#line 11041 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11036,16 +11050,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11039: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11053: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11042: \$? = $ac_status" >&5 + echo "$as_me:11056: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11045: \"$ac_try\"") >&5 + { (eval echo "$as_me:11059: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11048: \$? = $ac_status" >&5 + echo "$as_me:11062: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11072,7 +11086,7 @@ done do cat >conftest.$ac_ext <<_ACEOF -#line 11075 "configure" +#line 11089 "configure" #include "confdefs.h" #include <$cf_header> @@ -11096,16 +11110,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11099: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11113: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11102: \$? = $ac_status" >&5 + echo "$as_me:11116: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11105: \"$ac_try\"") >&5 + { (eval echo "$as_me:11119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11108: \$? = $ac_status" >&5 + echo "$as_me:11122: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -11126,12 +11140,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:11129: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:11143: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:11134: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:11148: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -11153,7 +11167,7 @@ do cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11156 "configure" +#line 11170 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11165,16 +11179,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11168: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11182: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11171: \$? = $ac_status" >&5 + echo "$as_me:11185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11174: \"$ac_try\"") >&5 + { (eval echo "$as_me:11188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11177: \$? = $ac_status" >&5 + echo "$as_me:11191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11223,7 +11237,7 @@ EOF ;; esac -echo "$as_me:11226: checking for terminfo header" >&5 +echo "$as_me:11240: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11241,7 +11255,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 11244 "configure" +#line 11258 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -11256,16 +11270,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11259: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11273: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11262: \$? = $ac_status" >&5 + echo "$as_me:11276: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11265: \"$ac_try\"") >&5 + { (eval echo "$as_me:11279: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11268: \$? = $ac_status" >&5 + echo "$as_me:11282: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -11281,7 +11295,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:11284: result: $cf_cv_term_header" >&5 +echo "$as_me:11298: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -11315,7 +11329,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:11318: checking for ncurses version" >&5 +echo "$as_me:11332: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11341,10 +11355,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:11344: \"$cf_try\"") >&5 + { (eval echo "$as_me:11358: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:11347: \$? = $ac_status" >&5 + echo "$as_me:11361: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -11354,7 +11368,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 11357 "configure" +#line 11371 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -11379,15 +11393,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:11382: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11396: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11385: \$? = $ac_status" >&5 + echo "$as_me:11399: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:11387: \"$ac_try\"") >&5 + { (eval echo "$as_me:11401: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11390: \$? = $ac_status" >&5 + echo "$as_me:11404: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -11401,7 +11415,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:11404: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:11418: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -11413,7 +11427,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:11416: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:11430: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11421,7 +11435,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11424 "configure" +#line 11438 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11440,16 +11454,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11443: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11457: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11446: \$? = $ac_status" >&5 + echo "$as_me:11460: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11449: \"$ac_try\"") >&5 + { (eval echo "$as_me:11463: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11452: \$? = $ac_status" >&5 + echo "$as_me:11466: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -11460,10 +11474,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11463: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:11477: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:11466: checking for initscr in -lgpm" >&5 + echo "$as_me:11480: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11471,7 +11485,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11474 "configure" +#line 11488 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11490,16 +11504,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11493: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11496: \$? = $ac_status" >&5 + echo "$as_me:11510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11499: \"$ac_try\"") >&5 + { (eval echo "$as_me:11513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11502: \$? = $ac_status" >&5 + echo "$as_me:11516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -11510,7 +11524,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11513: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:11527: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -11525,7 +11539,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:11528: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:11542: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11533,7 +11547,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11536 "configure" +#line 11550 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11552,16 +11566,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11555: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11569: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11558: \$? = $ac_status" >&5 + echo "$as_me:11572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11561: \"$ac_try\"") >&5 + { (eval echo "$as_me:11575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11564: \$? = $ac_status" >&5 + echo "$as_me:11578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -11572,7 +11586,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11575: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:11589: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -11591,13 +11605,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:11594: checking for initscr" >&5 + echo "$as_me:11608: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11600 "configure" +#line 11614 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -11628,16 +11642,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11631: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11645: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11634: \$? = $ac_status" >&5 + echo "$as_me:11648: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11637: \"$ac_try\"") >&5 + { (eval echo "$as_me:11651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11640: \$? = $ac_status" >&5 + echo "$as_me:11654: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -11647,18 +11661,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11650: result: $ac_cv_func_initscr" >&5 +echo "$as_me:11664: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:11657: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:11671: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11661 "configure" +#line 11675 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -11670,25 +11684,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11673: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11687: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11676: \$? = $ac_status" >&5 + echo "$as_me:11690: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11679: \"$ac_try\"") >&5 + { (eval echo "$as_me:11693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11682: \$? = $ac_status" >&5 + echo "$as_me:11696: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:11684: result: yes" >&5 + echo "$as_me:11698: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:11691: result: no" >&5 +echo "$as_me:11705: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search="" @@ -11748,11 +11762,11 @@ test -d /usr && { for cf_libdir in $cf_search do - echo "$as_me:11751: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:11765: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11755 "configure" +#line 11769 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -11764,25 +11778,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11767: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11781: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11770: \$? = $ac_status" >&5 + echo "$as_me:11784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11773: \"$ac_try\"") >&5 + { (eval echo "$as_me:11787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11776: \$? = $ac_status" >&5 + echo "$as_me:11790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:11778: result: yes" >&5 + echo "$as_me:11792: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:11785: result: no" >&5 +echo "$as_me:11799: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -11797,7 +11811,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:11800: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:11814: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -11805,7 +11819,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:11808: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:11822: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -11815,7 +11829,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 11818 "configure" +#line 11832 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -11827,23 +11841,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11830: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11833: \$? = $ac_status" >&5 + echo "$as_me:11847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11836: \"$ac_try\"") >&5 + { (eval echo "$as_me:11850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11839: \$? = $ac_status" >&5 + echo "$as_me:11853: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:11841: result: yes" >&5 + echo "$as_me:11855: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:11846: result: no" >&5 +echo "$as_me:11860: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -11856,7 +11870,7 @@ cat >>confdefs.h <<EOF #define $cf_nculib_ROOT 1 EOF -echo "$as_me:11859: checking for ncurses version" >&5 +echo "$as_me:11873: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11882,10 +11896,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:11885: \"$cf_try\"") >&5 + { (eval echo "$as_me:11899: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:11888: \$? = $ac_status" >&5 + echo "$as_me:11902: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -11895,7 +11909,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 11898 "configure" +#line 11912 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -11920,15 +11934,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:11923: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11937: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11926: \$? = $ac_status" >&5 + echo "$as_me:11940: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:11928: \"$ac_try\"") >&5 + { (eval echo "$as_me:11942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11931: \$? = $ac_status" >&5 + echo "$as_me:11945: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -11942,7 +11956,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:11945: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:11959: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -11951,7 +11965,7 @@ EOF ;; ncursesw) -echo "$as_me:11954: checking for multibyte character support" >&5 +echo "$as_me:11968: 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 @@ -11959,7 +11973,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11962 "configure" +#line 11976 "configure" #include "confdefs.h" #include <stdlib.h> @@ -11972,16 +11986,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11975: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11989: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11978: \$? = $ac_status" >&5 + echo "$as_me:11992: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11981: \"$ac_try\"") >&5 + { (eval echo "$as_me:11995: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11984: \$? = $ac_status" >&5 + echo "$as_me:11998: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -11989,7 +12003,7 @@ else cat conftest.$ac_ext >&5 LIBS="-lutf8 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11992 "configure" +#line 12006 "configure" #include "confdefs.h" #include <libutf8.h> @@ -12002,16 +12016,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12005: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12019: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12008: \$? = $ac_status" >&5 + echo "$as_me:12022: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12011: \"$ac_try\"") >&5 + { (eval echo "$as_me:12025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12014: \$? = $ac_status" >&5 + echo "$as_me:12028: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=add-on else @@ -12025,7 +12039,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12028: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:12042: 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 @@ -12044,7 +12058,7 @@ test -n "$cf_cv_curses_dir" && \ test "$cf_cv_curses_dir" != "no" && \ CPPFLAGS="-I$cf_cv_curses_dir/include -I$cf_cv_curses_dir/include/$cf_ncuhdr_root $CPPFLAGS" -echo "$as_me:12047: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:12061: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12056,7 +12070,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 12059 "configure" +#line 12073 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -12088,16 +12102,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12091: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12105: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12094: \$? = $ac_status" >&5 + echo "$as_me:12108: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12097: \"$ac_try\"") >&5 + { (eval echo "$as_me:12111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12100: \$? = $ac_status" >&5 + echo "$as_me:12114: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -12112,14 +12126,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:12115: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:12129: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:12122: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:12136: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12214,7 +12228,7 @@ do cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12217 "configure" +#line 12231 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12226,16 +12240,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12229: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12243: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12232: \$? = $ac_status" >&5 + echo "$as_me:12246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12235: \"$ac_try\"") >&5 + { (eval echo "$as_me:12249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12238: \$? = $ac_status" >&5 + echo "$as_me:12252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12262,7 +12276,7 @@ done do cat >conftest.$ac_ext <<_ACEOF -#line 12265 "configure" +#line 12279 "configure" #include "confdefs.h" #include <$cf_header> @@ -12286,16 +12300,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12289: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12303: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12292: \$? = $ac_status" >&5 + echo "$as_me:12306: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12295: \"$ac_try\"") >&5 + { (eval echo "$as_me:12309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12298: \$? = $ac_status" >&5 + echo "$as_me:12312: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -12316,12 +12330,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:12319: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:12333: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:12324: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:12338: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -12343,7 +12357,7 @@ do cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12346 "configure" +#line 12360 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12355,16 +12369,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12358: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12372: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12361: \$? = $ac_status" >&5 + echo "$as_me:12375: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12364: \"$ac_try\"") >&5 + { (eval echo "$as_me:12378: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12367: \$? = $ac_status" >&5 + echo "$as_me:12381: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12413,7 +12427,7 @@ EOF ;; esac -echo "$as_me:12416: checking for terminfo header" >&5 +echo "$as_me:12430: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12431,7 +12445,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 12434 "configure" +#line 12448 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -12446,16 +12460,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12449: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12463: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12452: \$? = $ac_status" >&5 + echo "$as_me:12466: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12455: \"$ac_try\"") >&5 + { (eval echo "$as_me:12469: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12458: \$? = $ac_status" >&5 + echo "$as_me:12472: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -12471,7 +12485,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:12474: result: $cf_cv_term_header" >&5 +echo "$as_me:12488: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -12505,7 +12519,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:12508: checking for ncurses version" >&5 +echo "$as_me:12522: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12531,10 +12545,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:12534: \"$cf_try\"") >&5 + { (eval echo "$as_me:12548: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:12537: \$? = $ac_status" >&5 + echo "$as_me:12551: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -12544,7 +12558,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 12547 "configure" +#line 12561 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -12569,15 +12583,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:12572: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12586: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12575: \$? = $ac_status" >&5 + echo "$as_me:12589: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:12577: \"$ac_try\"") >&5 + { (eval echo "$as_me:12591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12580: \$? = $ac_status" >&5 + echo "$as_me:12594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -12591,7 +12605,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:12594: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:12608: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -12603,7 +12617,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:12606: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:12620: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12611,7 +12625,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12614 "configure" +#line 12628 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12630,16 +12644,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12647: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12636: \$? = $ac_status" >&5 + echo "$as_me:12650: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12639: \"$ac_try\"") >&5 + { (eval echo "$as_me:12653: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12642: \$? = $ac_status" >&5 + echo "$as_me:12656: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -12650,10 +12664,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12653: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:12667: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:12656: checking for initscr in -lgpm" >&5 + echo "$as_me:12670: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12661,7 +12675,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12664 "configure" +#line 12678 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12680,16 +12694,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12683: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12697: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12686: \$? = $ac_status" >&5 + echo "$as_me:12700: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12689: \"$ac_try\"") >&5 + { (eval echo "$as_me:12703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12692: \$? = $ac_status" >&5 + echo "$as_me:12706: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -12700,7 +12714,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12703: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:12717: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -12715,7 +12729,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:12718: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:12732: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -12723,7 +12737,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12726 "configure" +#line 12740 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12742,16 +12756,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12745: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12759: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12748: \$? = $ac_status" >&5 + echo "$as_me:12762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12751: \"$ac_try\"") >&5 + { (eval echo "$as_me:12765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12754: \$? = $ac_status" >&5 + echo "$as_me:12768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -12762,7 +12776,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12765: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:12779: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -12781,13 +12795,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:12784: checking for initscr" >&5 + echo "$as_me:12798: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12790 "configure" +#line 12804 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -12818,16 +12832,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12821: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12835: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12824: \$? = $ac_status" >&5 + echo "$as_me:12838: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12827: \"$ac_try\"") >&5 + { (eval echo "$as_me:12841: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12830: \$? = $ac_status" >&5 + echo "$as_me:12844: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -12837,18 +12851,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12840: result: $ac_cv_func_initscr" >&5 +echo "$as_me:12854: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:12847: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:12861: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12851 "configure" +#line 12865 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -12860,25 +12874,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12863: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12877: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12866: \$? = $ac_status" >&5 + echo "$as_me:12880: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12869: \"$ac_try\"") >&5 + { (eval echo "$as_me:12883: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12872: \$? = $ac_status" >&5 + echo "$as_me:12886: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:12874: result: yes" >&5 + echo "$as_me:12888: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:12881: result: no" >&5 +echo "$as_me:12895: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search="" @@ -12938,11 +12952,11 @@ test -d /usr && { for cf_libdir in $cf_search do - echo "$as_me:12941: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:12955: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12945 "configure" +#line 12959 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -12954,25 +12968,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12957: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12971: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12960: \$? = $ac_status" >&5 + echo "$as_me:12974: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12963: \"$ac_try\"") >&5 + { (eval echo "$as_me:12977: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12966: \$? = $ac_status" >&5 + echo "$as_me:12980: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:12968: result: yes" >&5 + echo "$as_me:12982: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:12975: result: no" >&5 +echo "$as_me:12989: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -12987,7 +13001,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:12990: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:13004: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -12995,7 +13009,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:12998: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:13012: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -13005,7 +13019,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 13008 "configure" +#line 13022 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -13017,23 +13031,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13020: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13034: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13023: \$? = $ac_status" >&5 + echo "$as_me:13037: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13026: \"$ac_try\"") >&5 + { (eval echo "$as_me:13040: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13029: \$? = $ac_status" >&5 + echo "$as_me:13043: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:13031: result: yes" >&5 + echo "$as_me:13045: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:13036: result: no" >&5 +echo "$as_me:13050: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -13046,7 +13060,7 @@ cat >>confdefs.h <<EOF #define $cf_nculib_ROOT 1 EOF -echo "$as_me:13049: checking for ncurses version" >&5 +echo "$as_me:13063: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13072,10 +13086,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:13075: \"$cf_try\"") >&5 + { (eval echo "$as_me:13089: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:13078: \$? = $ac_status" >&5 + echo "$as_me:13092: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -13085,7 +13099,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 13088 "configure" +#line 13102 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -13110,15 +13124,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:13113: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13127: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13116: \$? = $ac_status" >&5 + echo "$as_me:13130: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:13118: \"$ac_try\"") >&5 + { (eval echo "$as_me:13132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13121: \$? = $ac_status" >&5 + echo "$as_me:13135: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -13132,12 +13146,13 @@ fi rm -f $cf_tempfile fi -echo "$as_me:13135: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:13149: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 EOF + cf_wide_curses=yes ;; pdcurses) cf_cv_ncurses_header=xcurses.h @@ -13145,14 +13160,14 @@ pdcurses) ;; slang) -echo "$as_me:13148: checking for slang header file" >&5 +echo "$as_me:13163: checking for slang header file" >&5 echo $ECHO_N "checking for slang header file... $ECHO_C" >&6 if test "${cf_cv_slang_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13155 "configure" +#line 13170 "configure" #include "confdefs.h" #include <slang.h> int @@ -13164,16 +13179,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13167: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13182: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13170: \$? = $ac_status" >&5 + echo "$as_me:13185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13173: \"$ac_try\"") >&5 + { (eval echo "$as_me:13188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13176: \$? = $ac_status" >&5 + echo "$as_me:13191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -13263,14 +13278,14 @@ test -d "$oldincludedir" && { done test -n "$cf_cv_slang_header" && break done - test -z "$cf_cv_slang_header" && { { echo "$as_me:13266: error: not found" >&5 + test -z "$cf_cv_slang_header" && { { echo "$as_me:13281: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13273: result: $cf_cv_slang_header" >&5 +echo "$as_me:13288: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 cat >>confdefs.h <<\EOF #define USE_SLANG 1 @@ -13296,7 +13311,7 @@ do cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13299 "configure" +#line 13314 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13308,16 +13323,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13311: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13326: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13314: \$? = $ac_status" >&5 + echo "$as_me:13329: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13317: \"$ac_try\"") >&5 + { (eval echo "$as_me:13332: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13320: \$? = $ac_status" >&5 + echo "$as_me:13335: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13343,14 +13358,14 @@ esac # There's an unofficial set of patches for slang that gives it some limited # UTF8 capability. Unfortunately it won't compile unless one defines UTF8. -echo "$as_me:13346: checking if we must define UTF8" >&5 +echo "$as_me:13361: checking if we must define UTF8" >&5 echo $ECHO_N "checking if we must define UTF8... $ECHO_C" >&6 if test "${cf_cv_slang_utf8+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13353 "configure" +#line 13368 "configure" #include "confdefs.h" #include <slang.h> @@ -13363,16 +13378,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13366: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13381: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13369: \$? = $ac_status" >&5 + echo "$as_me:13384: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13372: \"$ac_try\"") >&5 + { (eval echo "$as_me:13387: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13375: \$? = $ac_status" >&5 + echo "$as_me:13390: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -13380,7 +13395,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 13383 "configure" +#line 13398 "configure" #include "confdefs.h" #define UTF8 @@ -13394,16 +13409,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13397: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13412: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13400: \$? = $ac_status" >&5 + echo "$as_me:13415: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13403: \"$ac_try\"") >&5 + { (eval echo "$as_me:13418: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13406: \$? = $ac_status" >&5 + echo "$as_me:13421: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -13416,7 +13431,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13419: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:13434: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -13434,7 +13449,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 13437 "configure" +#line 13452 "configure" #include "confdefs.h" int @@ -13446,19 +13461,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13449: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13464: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13452: \$? = $ac_status" >&5 + echo "$as_me:13467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13455: \"$ac_try\"") >&5 + { (eval echo "$as_me:13470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13458: \$? = $ac_status" >&5 + echo "$as_me:13473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 13461 "configure" +#line 13476 "configure" #include "confdefs.h" int @@ -13470,16 +13485,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13488: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13476: \$? = $ac_status" >&5 + echo "$as_me:13491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13479: \"$ac_try\"") >&5 + { (eval echo "$as_me:13494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13482: \$? = $ac_status" >&5 + echo "$as_me:13497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -13503,10 +13518,10 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:13506: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:13521: checking for $cf_func in -l$cf_lib" >&5 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13509 "configure" +#line 13524 "configure" #include "confdefs.h" int @@ -13518,16 +13533,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13521: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13536: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13524: \$? = $ac_status" >&5 + echo "$as_me:13539: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13527: \"$ac_try\"") >&5 + { (eval echo "$as_me:13542: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13530: \$? = $ac_status" >&5 + echo "$as_me:13545: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -13536,7 +13551,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:13539: result: $cf_result" >&5 + echo "$as_me:13554: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -13553,7 +13568,7 @@ echo "${ECHO_T}$cf_result" >&6 fi if test "$cf_cv_termlib" = none; then # allow curses library for broken AIX system. - echo "$as_me:13556: checking for initscr in -lcurses" >&5 + echo "$as_me:13571: checking for initscr in -lcurses" >&5 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6 if test "${ac_cv_lib_curses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13561,7 +13576,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13564 "configure" +#line 13579 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13580,16 +13595,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13583: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13598: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13586: \$? = $ac_status" >&5 + echo "$as_me:13601: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13589: \"$ac_try\"") >&5 + { (eval echo "$as_me:13604: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13592: \$? = $ac_status" >&5 + echo "$as_me:13607: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -13600,13 +13615,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13603: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:13618: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="$LIBS -lcurses" cf_cv_termlib=termcap fi - echo "$as_me:13609: checking for tgoto in -ltermcap" >&5 + echo "$as_me:13624: checking for tgoto in -ltermcap" >&5 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13614,7 +13629,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13617 "configure" +#line 13632 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13633,16 +13648,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13651: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13639: \$? = $ac_status" >&5 + echo "$as_me:13654: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13642: \"$ac_try\"") >&5 + { (eval echo "$as_me:13657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13645: \$? = $ac_status" >&5 + echo "$as_me:13660: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -13653,7 +13668,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13656: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:13671: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap @@ -13664,20 +13679,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:13667: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:13682: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;} fi fi cf_slang_LIBS2="$LIBS" -echo "$as_me:13674: checking for acos" >&5 +echo "$as_me:13689: checking for acos" >&5 echo $ECHO_N "checking for acos... $ECHO_C" >&6 if test "${ac_cv_func_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13680 "configure" +#line 13695 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -13708,16 +13723,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13711: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13726: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13714: \$? = $ac_status" >&5 + echo "$as_me:13729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13717: \"$ac_try\"") >&5 + { (eval echo "$as_me:13732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13720: \$? = $ac_status" >&5 + echo "$as_me:13735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -13727,13 +13742,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13730: result: $ac_cv_func_acos" >&5 +echo "$as_me:13745: result: $ac_cv_func_acos" >&5 echo "${ECHO_T}$ac_cv_func_acos" >&6 if test $ac_cv_func_acos = yes; then : else -echo "$as_me:13736: checking for acos in -lm" >&5 +echo "$as_me:13751: checking for acos in -lm" >&5 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13741,7 +13756,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13744 "configure" +#line 13759 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13760,16 +13775,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13763: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13778: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13766: \$? = $ac_status" >&5 + echo "$as_me:13781: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13769: \"$ac_try\"") >&5 + { (eval echo "$as_me:13784: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13772: \$? = $ac_status" >&5 + echo "$as_me:13787: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -13780,7 +13795,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13783: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:13798: result: $ac_cv_lib_m_acos" >&5 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6 if test $ac_cv_lib_m_acos = yes; then @@ -13806,13 +13821,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:13809: checking for v_init" >&5 + echo "$as_me:13824: checking for v_init" >&5 echo $ECHO_N "checking for v_init... $ECHO_C" >&6 if test "${ac_cv_func_v_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13815 "configure" +#line 13830 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -13843,16 +13858,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13846: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13861: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13849: \$? = $ac_status" >&5 + echo "$as_me:13864: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13852: \"$ac_try\"") >&5 + { (eval echo "$as_me:13867: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13855: \$? = $ac_status" >&5 + echo "$as_me:13870: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -13862,18 +13877,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13865: result: $ac_cv_func_v_init" >&5 +echo "$as_me:13880: result: $ac_cv_func_v_init" >&5 echo "${ECHO_T}$ac_cv_func_v_init" >&6 if test $ac_cv_func_v_init = yes; then eval 'cf_cv_have_lib_'video'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:13872: checking for v_init in -lvideo" >&5 + echo "$as_me:13887: checking for v_init in -lvideo" >&5 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6 LIBS="-lvideo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13876 "configure" +#line 13891 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -13885,25 +13900,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13888: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13903: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13891: \$? = $ac_status" >&5 + echo "$as_me:13906: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13894: \"$ac_try\"") >&5 + { (eval echo "$as_me:13909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13897: \$? = $ac_status" >&5 + echo "$as_me:13912: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:13899: result: yes" >&5 + echo "$as_me:13914: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:13906: result: no" >&5 +echo "$as_me:13921: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search="" @@ -13963,11 +13978,11 @@ test -d /usr && { for cf_libdir in $cf_search do - echo "$as_me:13966: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:13981: checking for -lvideo in $cf_libdir" >&5 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13970 "configure" +#line 13985 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -13979,25 +13994,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13982: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13997: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13985: \$? = $ac_status" >&5 + echo "$as_me:14000: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13988: \"$ac_try\"") >&5 + { (eval echo "$as_me:14003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13991: \$? = $ac_status" >&5 + echo "$as_me:14006: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:13993: result: yes" >&5 + echo "$as_me:14008: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:14000: result: no" >&5 +echo "$as_me:14015: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -14012,7 +14027,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:14015: error: Cannot link video library" >&5 + { { echo "$as_me:14030: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -14022,13 +14037,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:14025: checking for SLtt_get_screen_size" >&5 + echo "$as_me:14040: checking for SLtt_get_screen_size" >&5 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14031 "configure" +#line 14046 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -14059,16 +14074,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14062: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14077: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14065: \$? = $ac_status" >&5 + echo "$as_me:14080: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14068: \"$ac_try\"") >&5 + { (eval echo "$as_me:14083: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14071: \$? = $ac_status" >&5 + echo "$as_me:14086: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -14078,18 +14093,18 @@ ac_cv_func_SLtt_get_screen_size=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14081: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:14096: result: $ac_cv_func_SLtt_get_screen_size" >&5 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6 if test $ac_cv_func_SLtt_get_screen_size = yes; then eval 'cf_cv_have_lib_'slang'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:14088: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:14103: checking for SLtt_get_screen_size in -lslang" >&5 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang... $ECHO_C" >&6 LIBS="-lslang $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14092 "configure" +#line 14107 "configure" #include "confdefs.h" #include <slang.h> int @@ -14101,25 +14116,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14104: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14119: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14107: \$? = $ac_status" >&5 + echo "$as_me:14122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14110: \"$ac_try\"") >&5 + { (eval echo "$as_me:14125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14113: \$? = $ac_status" >&5 + echo "$as_me:14128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:14115: result: yes" >&5 + echo "$as_me:14130: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:14122: result: no" >&5 +echo "$as_me:14137: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search="" @@ -14179,11 +14194,11 @@ test -d /usr && { for cf_libdir in $cf_search do - echo "$as_me:14182: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:14197: checking for -lslang in $cf_libdir" >&5 echo $ECHO_N "checking for -lslang in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lslang $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14186 "configure" +#line 14201 "configure" #include "confdefs.h" #include <slang.h> int @@ -14195,25 +14210,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14198: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14213: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14201: \$? = $ac_status" >&5 + echo "$as_me:14216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14204: \"$ac_try\"") >&5 + { (eval echo "$as_me:14219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14207: \$? = $ac_status" >&5 + echo "$as_me:14222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:14209: result: yes" >&5 + echo "$as_me:14224: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:14216: result: no" >&5 +echo "$as_me:14231: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -14228,13 +14243,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:14231: error: Cannot link slang library" >&5 + { { echo "$as_me:14246: error: Cannot link slang library" >&5 echo "$as_me: error: Cannot link slang library" >&2;} { (exit 1); exit 1; }; } fi cf_slang_LIBS3="$LIBS" -echo "$as_me:14237: checking if we can link slang without termcap" >&5 +echo "$as_me:14252: checking if we can link slang without termcap" >&5 echo $ECHO_N "checking if we can link slang without termcap... $ECHO_C" >&6 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'` @@ -14243,7 +14258,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 14246 "configure" +#line 14261 "configure" #include "confdefs.h" #include <slang.h> int @@ -14255,16 +14270,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14258: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14273: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14261: \$? = $ac_status" >&5 + echo "$as_me:14276: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14264: \"$ac_try\"") >&5 + { (eval echo "$as_me:14279: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14267: \$? = $ac_status" >&5 + echo "$as_me:14282: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -14273,18 +14288,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14276: result: $cf_result" >&5 +echo "$as_me:14291: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" -echo "$as_me:14280: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:14295: checking if we must tell slang this is UNIX" >&5 echo $ECHO_N "checking if we must tell slang this is UNIX... $ECHO_C" >&6 if test "${cf_cv_slang_unix+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14287 "configure" +#line 14302 "configure" #include "confdefs.h" #include <slang.h> int @@ -14303,16 +14318,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14306: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14321: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14309: \$? = $ac_status" >&5 + echo "$as_me:14324: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14312: \"$ac_try\"") >&5 + { (eval echo "$as_me:14327: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14315: \$? = $ac_status" >&5 + echo "$as_me:14330: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -14323,7 +14338,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14326: result: $cf_cv_slang_unix" >&5 +echo "$as_me:14341: result: $cf_cv_slang_unix" >&5 echo "${ECHO_T}$cf_cv_slang_unix" >&6 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF #define REAL_UNIX_SYSTEM 1 @@ -14333,7 +14348,27 @@ EOF ;; esac -echo "$as_me:14336: checking for the default configuration-file" >&5 +echo "$as_me:14351: checking if you want the wide-curses features" >&5 +echo $ECHO_N "checking if you want the wide-curses features... $ECHO_C" >&6 + +# Check whether --enable-widec or --disable-widec was given. +if test "${enable_widec+set}" = set; then + enableval="$enable_widec" + test "$enableval" != yes && enableval=no + if test "$enableval" != "no" ; then + use_wide_curses=$enableval + else + use_wide_curses=$cf_wide_curses + fi +else + enableval=no + use_wide_curses=$cf_wide_curses + +fi; +echo "$as_me:14368: result: $use_wide_curses" >&5 +echo "${ECHO_T}$use_wide_curses" >&6 + +echo "$as_me:14371: checking for the default configuration-file" >&5 echo $ECHO_N "checking for the default configuration-file... $ECHO_C" >&6 # Check whether --with-cfg-file or --without-cfg-file was given. @@ -14341,8 +14376,14 @@ if test "${with_cfg_file+set}" = set; then withval="$with_cfg_file" else - withval="${LYNX_CFG_FILE-$libdir/lynx.cfg}" + withval="${LYNX_CFG_FILE-$sysconfdir/lynx.cfg}" fi; +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$withval" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -14354,15 +14395,15 @@ case ".$withval" in #(vi eval withval="$withval" case ".$withval" in #(vi .NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:14365: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:14406: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -14370,7 +14411,7 @@ esac LYNX_CFG_FILE="$withval" -echo "$as_me:14373: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:14414: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -14380,7 +14421,7 @@ EOF CHARSET_DEFS= -echo "$as_me:14383: checking if you want only a few charsets" >&5 +echo "$as_me:14424: checking if you want only a few charsets" >&5 echo $ECHO_N "checking if you want only a few charsets... $ECHO_C" >&6 # Check whether --with-charsets or --without-charsets was given. @@ -14392,7 +14433,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:14395: result: yes" >&5 + echo "$as_me:14436: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define ALL_CHARSETS 0 @@ -14437,17 +14478,17 @@ EOF fi done else - echo "$as_me:14440: result: no" >&5 + echo "$as_me:14481: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:14444: checking for ANSI C header files" >&5 +echo "$as_me:14485: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14450 "configure" +#line 14491 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -14455,13 +14496,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:14458: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:14499: \"$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:14464: \$? = $ac_status" >&5 + echo "$as_me:14505: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -14483,7 +14524,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 14486 "configure" +#line 14527 "configure" #include "confdefs.h" #include <string.h> @@ -14501,7 +14542,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 14504 "configure" +#line 14545 "configure" #include "confdefs.h" #include <stdlib.h> @@ -14522,7 +14563,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 14525 "configure" +#line 14566 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -14548,15 +14589,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:14551: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14592: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14554: \$? = $ac_status" >&5 + echo "$as_me:14595: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:14556: \"$ac_try\"") >&5 + { (eval echo "$as_me:14597: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14559: \$? = $ac_status" >&5 + echo "$as_me:14600: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14569,7 +14610,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:14572: result: $ac_cv_header_stdc" >&5 +echo "$as_me:14613: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -14579,13 +14620,13 @@ EOF fi -echo "$as_me:14582: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:14623: 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 14588 "configure" +#line 14629 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -14601,16 +14642,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14604: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14645: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14607: \$? = $ac_status" >&5 + echo "$as_me:14648: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14610: \"$ac_try\"") >&5 + { (eval echo "$as_me:14651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14613: \$? = $ac_status" >&5 + echo "$as_me:14654: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -14620,7 +14661,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:14623: result: $ac_cv_header_time" >&5 +echo "$as_me:14664: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -14633,13 +14674,13 @@ fi ac_header_dirent=no for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` -echo "$as_me:14636: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:14677: checking for $ac_hdr that defines DIR" >&5 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14642 "configure" +#line 14683 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -14654,16 +14695,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14657: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14698: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14660: \$? = $ac_status" >&5 + echo "$as_me:14701: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14663: \"$ac_try\"") >&5 + { (eval echo "$as_me:14704: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14666: \$? = $ac_status" >&5 + echo "$as_me:14707: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -14673,7 +14714,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:14676: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:14717: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -14686,7 +14727,7 @@ fi done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then - echo "$as_me:14689: checking for opendir in -ldir" >&5 + echo "$as_me:14730: checking for opendir in -ldir" >&5 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6 if test "${ac_cv_lib_dir_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14694,7 +14735,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14697 "configure" +#line 14738 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14713,16 +14754,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14716: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14757: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14719: \$? = $ac_status" >&5 + echo "$as_me:14760: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14722: \"$ac_try\"") >&5 + { (eval echo "$as_me:14763: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14725: \$? = $ac_status" >&5 + echo "$as_me:14766: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -14733,14 +14774,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14736: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:14777: result: $ac_cv_lib_dir_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6 if test $ac_cv_lib_dir_opendir = yes; then LIBS="$LIBS -ldir" fi else - echo "$as_me:14743: checking for opendir in -lx" >&5 + echo "$as_me:14784: checking for opendir in -lx" >&5 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6 if test "${ac_cv_lib_x_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14748,7 +14789,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14751 "configure" +#line 14792 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14767,16 +14808,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14770: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14811: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14773: \$? = $ac_status" >&5 + echo "$as_me:14814: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14776: \"$ac_try\"") >&5 + { (eval echo "$as_me:14817: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14779: \$? = $ac_status" >&5 + echo "$as_me:14820: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -14787,7 +14828,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14790: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:14831: result: $ac_cv_lib_x_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6 if test $ac_cv_lib_x_opendir = yes; then LIBS="$LIBS -lx" @@ -14815,23 +14856,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:14818: checking for $ac_header" >&5 +echo "$as_me:14859: 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 14824 "configure" +#line 14865 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:14828: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:14869: \"$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:14834: \$? = $ac_status" >&5 + echo "$as_me:14875: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -14850,7 +14891,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:14853: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:14894: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -14860,14 +14901,14 @@ EOF fi done -echo "$as_me:14863: checking termio.h and termios.h" >&5 +echo "$as_me:14904: checking termio.h and termios.h" >&5 echo $ECHO_N "checking termio.h and termios.h... $ECHO_C" >&6 if test "${cf_cv_termio_and_termios+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14870 "configure" +#line 14911 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -14885,16 +14926,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14888: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14929: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14891: \$? = $ac_status" >&5 + echo "$as_me:14932: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14894: \"$ac_try\"") >&5 + { (eval echo "$as_me:14935: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14897: \$? = $ac_status" >&5 + echo "$as_me:14938: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -14905,20 +14946,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:14908: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:14949: result: $cf_cv_termio_and_termios" >&5 echo "${ECHO_T}$cf_cv_termio_and_termios" >&6 test $cf_cv_termio_and_termios = no && cat >>confdefs.h <<\EOF #define TERMIO_AND_TERMIOS 1 EOF -echo "$as_me:14914: checking for sigaction and structs" >&5 +echo "$as_me:14955: checking for sigaction and structs" >&5 echo $ECHO_N "checking for sigaction and structs... $ECHO_C" >&6 if test "${cf_cv_func_sigaction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14921 "configure" +#line 14962 "configure" #include "confdefs.h" #include <sys/types.h> @@ -14938,16 +14979,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14982: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14944: \$? = $ac_status" >&5 + echo "$as_me:14985: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14947: \"$ac_try\"") >&5 + { (eval echo "$as_me:14988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14950: \$? = $ac_status" >&5 + echo "$as_me:14991: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -14958,7 +14999,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14961: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:15002: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF #define HAVE_SIGACTION 1 @@ -14967,23 +15008,23 @@ EOF for ac_header in sys/wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:14970: checking for $ac_header" >&5 +echo "$as_me:15011: 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 14976 "configure" +#line 15017 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:14980: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15021: \"$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:14986: \$? = $ac_status" >&5 + echo "$as_me:15027: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15002,7 +15043,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15005: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:15046: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -15023,23 +15064,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:15026: checking for $ac_header" >&5 +echo "$as_me:15067: 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 15032 "configure" +#line 15073 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:15036: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15077: \"$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:15042: \$? = $ac_status" >&5 + echo "$as_me:15083: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15058,7 +15099,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15061: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:15102: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -15071,23 +15112,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:15074: checking for $ac_header" >&5 +echo "$as_me:15115: 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 15080 "configure" +#line 15121 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:15084: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15125: \"$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:15090: \$? = $ac_status" >&5 + echo "$as_me:15131: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15106,7 +15147,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15109: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:15150: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -15128,14 +15169,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:15131: checking for union wait" >&5 +echo "$as_me:15172: checking for union wait" >&5 echo $ECHO_N "checking for union wait... $ECHO_C" >&6 if test "${cf_cv_type_unionwait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15138 "configure" +#line 15179 "configure" #include "confdefs.h" $cf_wait_headers int @@ -15151,16 +15192,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15154: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15195: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15157: \$? = $ac_status" >&5 + echo "$as_me:15198: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15160: \"$ac_try\"") >&5 + { (eval echo "$as_me:15201: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15163: \$? = $ac_status" >&5 + echo "$as_me:15204: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -15170,7 +15211,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 15173 "configure" +#line 15214 "configure" #include "confdefs.h" $cf_wait_headers int @@ -15190,16 +15231,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15193: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15234: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15196: \$? = $ac_status" >&5 + echo "$as_me:15237: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15199: \"$ac_try\"") >&5 + { (eval echo "$as_me:15240: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15202: \$? = $ac_status" >&5 + echo "$as_me:15243: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -15214,7 +15255,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15217: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:15258: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF #define HAVE_TYPE_UNIONWAIT 1 @@ -15222,14 +15263,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:15225: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:15266: checking if union wait can be used as wait-arg" >&5 echo $ECHO_N "checking if union wait can be used as wait-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_wait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15232 "configure" +#line 15273 "configure" #include "confdefs.h" $cf_wait_headers int @@ -15241,16 +15282,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15244: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15285: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15247: \$? = $ac_status" >&5 + echo "$as_me:15288: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15250: \"$ac_try\"") >&5 + { (eval echo "$as_me:15291: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15253: \$? = $ac_status" >&5 + echo "$as_me:15294: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -15262,20 +15303,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:15265: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:15306: result: $cf_cv_arg_union_wait" >&5 echo "${ECHO_T}$cf_cv_arg_union_wait" >&6 test $cf_cv_arg_union_wait = yes && cat >>confdefs.h <<\EOF #define WAIT_USES_UNION 1 EOF - echo "$as_me:15271: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:15312: checking if union wait can be used as waitpid-arg" >&5 echo $ECHO_N "checking if union wait can be used as waitpid-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_waitpid+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15278 "configure" +#line 15319 "configure" #include "confdefs.h" $cf_wait_headers int @@ -15287,16 +15328,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15290: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15331: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15293: \$? = $ac_status" >&5 + echo "$as_me:15334: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15296: \"$ac_try\"") >&5 + { (eval echo "$as_me:15337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15299: \$? = $ac_status" >&5 + echo "$as_me:15340: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -15308,7 +15349,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:15311: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:15352: result: $cf_cv_arg_union_waitpid" >&5 echo "${ECHO_T}$cf_cv_arg_union_waitpid" >&6 test $cf_cv_arg_union_waitpid = yes && cat >>confdefs.h <<\EOF #define WAITPID_USES_UNION 1 @@ -15319,23 +15360,23 @@ fi for ac_header in stdarg.h varargs.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:15322: checking for $ac_header" >&5 +echo "$as_me:15363: 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 15328 "configure" +#line 15369 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:15332: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15373: \"$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:15338: \$? = $ac_status" >&5 + echo "$as_me:15379: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15354,7 +15395,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15357: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:15398: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -15364,14 +15405,14 @@ EOF fi done -echo "$as_me:15367: checking for standard varargs" >&5 +echo "$as_me:15408: checking for standard varargs" >&5 echo $ECHO_N "checking for standard varargs... $ECHO_C" >&6 if test "${cf_cv_ansi_varargs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15374 "configure" +#line 15415 "configure" #include "confdefs.h" #if HAVE_STDARG_H @@ -15391,16 +15432,16 @@ return 0;} int foo(char *fmt,...){va_list args;va_start(args,fmt);va_end(args) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15435: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15397: \$? = $ac_status" >&5 + echo "$as_me:15438: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15400: \"$ac_try\"") >&5 + { (eval echo "$as_me:15441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15403: \$? = $ac_status" >&5 + echo "$as_me:15444: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_varargs=yes else @@ -15412,19 +15453,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:15415: result: $cf_cv_ansi_varargs" >&5 +echo "$as_me:15456: result: $cf_cv_ansi_varargs" >&5 echo "${ECHO_T}$cf_cv_ansi_varargs" >&6 test $cf_cv_ansi_varargs = yes && cat >>confdefs.h <<\EOF #define ANSI_VARARGS 1 EOF -echo "$as_me:15421: checking for uid_t in sys/types.h" >&5 +echo "$as_me:15462: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15427 "configure" +#line 15468 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15438,7 +15479,7 @@ fi rm -f conftest* fi -echo "$as_me:15441: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:15482: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -15452,7 +15493,7 @@ EOF fi -echo "$as_me:15455: checking type of array argument to getgroups" >&5 +echo "$as_me:15496: checking type of array argument to getgroups" >&5 echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6 if test "${ac_cv_type_getgroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15461,7 +15502,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 15464 "configure" +#line 15505 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -15487,15 +15528,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:15490: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15531: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15493: \$? = $ac_status" >&5 + echo "$as_me:15534: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:15495: \"$ac_try\"") >&5 + { (eval echo "$as_me:15536: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15498: \$? = $ac_status" >&5 + echo "$as_me:15539: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -15508,7 +15549,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi if test $ac_cv_type_getgroups = cross; then cat >conftest.$ac_ext <<_ACEOF -#line 15511 "configure" +#line 15552 "configure" #include "confdefs.h" #include <unistd.h> @@ -15523,20 +15564,20 @@ rm -f conftest* fi fi -echo "$as_me:15526: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:15567: result: $ac_cv_type_getgroups" >&5 echo "${ECHO_T}$ac_cv_type_getgroups" >&6 cat >>confdefs.h <<EOF #define GETGROUPS_T $ac_cv_type_getgroups EOF -echo "$as_me:15533: checking for pid_t" >&5 +echo "$as_me:15574: 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 15539 "configure" +#line 15580 "configure" #include "confdefs.h" $ac_includes_default int @@ -15551,16 +15592,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15554: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15595: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15557: \$? = $ac_status" >&5 + echo "$as_me:15598: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15560: \"$ac_try\"") >&5 + { (eval echo "$as_me:15601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15563: \$? = $ac_status" >&5 + echo "$as_me:15604: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -15570,7 +15611,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:15573: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:15614: 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 : @@ -15582,13 +15623,13 @@ EOF fi -echo "$as_me:15585: checking for uid_t in sys/types.h" >&5 +echo "$as_me:15626: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15591 "configure" +#line 15632 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15602,7 +15643,7 @@ fi rm -f conftest* fi -echo "$as_me:15605: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:15646: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -15616,13 +15657,13 @@ EOF fi -echo "$as_me:15619: checking for mode_t" >&5 +echo "$as_me:15660: checking for mode_t" >&5 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6 if test "${ac_cv_type_mode_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15625 "configure" +#line 15666 "configure" #include "confdefs.h" $ac_includes_default int @@ -15637,16 +15678,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15640: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15681: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15643: \$? = $ac_status" >&5 + echo "$as_me:15684: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15646: \"$ac_try\"") >&5 + { (eval echo "$as_me:15687: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15649: \$? = $ac_status" >&5 + echo "$as_me:15690: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -15656,7 +15697,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:15659: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:15700: result: $ac_cv_type_mode_t" >&5 echo "${ECHO_T}$ac_cv_type_mode_t" >&6 if test $ac_cv_type_mode_t = yes; then : @@ -15668,13 +15709,13 @@ EOF fi - echo "$as_me:15671: checking for socklen_t" >&5 + echo "$as_me:15712: checking for socklen_t" >&5 echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6 if test "${ac_cv_type_socklen_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15677 "configure" +#line 15718 "configure" #include "confdefs.h" #include <sys/socket.h> @@ -15690,16 +15731,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15693: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15734: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15696: \$? = $ac_status" >&5 + echo "$as_me:15737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15699: \"$ac_try\"") >&5 + { (eval echo "$as_me:15740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15702: \$? = $ac_status" >&5 + echo "$as_me:15743: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -15709,7 +15750,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:15712: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:15753: result: $ac_cv_type_socklen_t" >&5 echo "${ECHO_T}$ac_cv_type_socklen_t" >&6 if test $ac_cv_type_socklen_t = yes; then ac_cv_type_socklen_t=yes @@ -15726,13 +15767,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:15729: checking for working alloca.h" >&5 +echo "$as_me:15770: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15735 "configure" +#line 15776 "configure" #include "confdefs.h" #include <alloca.h> int @@ -15744,16 +15785,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15747: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15788: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15750: \$? = $ac_status" >&5 + echo "$as_me:15791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15753: \"$ac_try\"") >&5 + { (eval echo "$as_me:15794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15756: \$? = $ac_status" >&5 + echo "$as_me:15797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -15763,7 +15804,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15766: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:15807: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -15773,13 +15814,13 @@ EOF fi -echo "$as_me:15776: checking for alloca" >&5 +echo "$as_me:15817: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15782 "configure" +#line 15823 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -15811,16 +15852,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15814: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15855: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15817: \$? = $ac_status" >&5 + echo "$as_me:15858: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15820: \"$ac_try\"") >&5 + { (eval echo "$as_me:15861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15823: \$? = $ac_status" >&5 + echo "$as_me:15864: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -15830,7 +15871,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15833: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:15874: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -15851,13 +15892,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:15854: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:15895: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15860 "configure" +#line 15901 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -15875,18 +15916,18 @@ fi rm -f conftest* fi -echo "$as_me:15878: result: $ac_cv_os_cray" >&5 +echo "$as_me:15919: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15883: checking for $ac_func" >&5 +echo "$as_me:15924: 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 15889 "configure" +#line 15930 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -15917,16 +15958,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15920: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15923: \$? = $ac_status" >&5 + echo "$as_me:15964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15926: \"$ac_try\"") >&5 + { (eval echo "$as_me:15967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15929: \$? = $ac_status" >&5 + echo "$as_me:15970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -15936,7 +15977,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15939: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:15980: 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 @@ -15950,7 +15991,7 @@ fi done fi -echo "$as_me:15953: checking stack direction for C alloca" >&5 +echo "$as_me:15994: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15959,7 +16000,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 15962 "configure" +#line 16003 "configure" #include "confdefs.h" int find_stack_direction () @@ -15982,15 +16023,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:15985: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16026: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15988: \$? = $ac_status" >&5 + echo "$as_me:16029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:15990: \"$ac_try\"") >&5 + { (eval echo "$as_me:16031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15993: \$? = $ac_status" >&5 + echo "$as_me:16034: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -16002,7 +16043,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:16005: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:16046: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -16014,23 +16055,23 @@ fi for ac_header in unistd.h vfork.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:16017: checking for $ac_header" >&5 +echo "$as_me:16058: 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 16023 "configure" +#line 16064 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:16027: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:16068: \"$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:16033: \$? = $ac_status" >&5 + echo "$as_me:16074: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -16049,7 +16090,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:16052: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:16093: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -16062,13 +16103,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:16065: checking for $ac_func" >&5 +echo "$as_me:16106: 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 16071 "configure" +#line 16112 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -16099,16 +16140,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16102: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16143: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16105: \$? = $ac_status" >&5 + echo "$as_me:16146: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16108: \"$ac_try\"") >&5 + { (eval echo "$as_me:16149: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16111: \$? = $ac_status" >&5 + echo "$as_me:16152: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -16118,7 +16159,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16121: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:16162: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -16130,7 +16171,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:16133: checking for working fork" >&5 + echo "$as_me:16174: 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 @@ -16153,15 +16194,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16156: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16197: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16159: \$? = $ac_status" >&5 + echo "$as_me:16200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16161: \"$ac_try\"") >&5 + { (eval echo "$as_me:16202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16164: \$? = $ac_status" >&5 + echo "$as_me:16205: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -16173,7 +16214,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:16176: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:16217: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -16187,12 +16228,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:16190: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:16231: 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:16195: checking for working vfork" >&5 + echo "$as_me:16236: 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 @@ -16201,7 +16242,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 16204 "configure" +#line 16245 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -16298,15 +16339,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16301: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16342: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16304: \$? = $ac_status" >&5 + echo "$as_me:16345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16306: \"$ac_try\"") >&5 + { (eval echo "$as_me:16347: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16309: \$? = $ac_status" >&5 + echo "$as_me:16350: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -16318,13 +16359,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:16321: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:16362: 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:16327: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:16368: 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 @@ -16349,14 +16390,14 @@ EOF fi -echo "$as_me:16352: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:16393: checking if we should use fcntl or ioctl" >&5 echo $ECHO_N "checking if we should use fcntl or ioctl... $ECHO_C" >&6 if test "${cf_cv_fionbio+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16359 "configure" +#line 16400 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16373,16 +16414,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16376: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16417: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16379: \$? = $ac_status" >&5 + echo "$as_me:16420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16382: \"$ac_try\"") >&5 + { (eval echo "$as_me:16423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16385: \$? = $ac_status" >&5 + echo "$as_me:16426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -16390,7 +16431,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 16393 "configure" +#line 16434 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16412,16 +16453,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16415: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16456: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16418: \$? = $ac_status" >&5 + echo "$as_me:16459: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16421: \"$ac_try\"") >&5 + { (eval echo "$as_me:16462: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16424: \$? = $ac_status" >&5 + echo "$as_me:16465: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -16434,20 +16475,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16437: result: $cf_cv_fionbio" >&5 +echo "$as_me:16478: result: $cf_cv_fionbio" >&5 echo "${ECHO_T}$cf_cv_fionbio" >&6 test "$cf_cv_fionbio" = "fcntl" && cat >>confdefs.h <<\EOF #define USE_FCNTL 1 EOF -echo "$as_me:16443: checking for broken/missing definition of remove" >&5 +echo "$as_me:16484: checking for broken/missing definition of remove" >&5 echo $ECHO_N "checking for broken/missing definition of remove... $ECHO_C" >&6 if test "${cf_cv_baddef_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16450 "configure" +#line 16491 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16459,23 +16500,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16462: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16503: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16465: \$? = $ac_status" >&5 + echo "$as_me:16506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16468: \"$ac_try\"") >&5 + { (eval echo "$as_me:16509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16471: \$? = $ac_status" >&5 + echo "$as_me:16512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 16478 "configure" +#line 16519 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -16488,16 +16529,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16491: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16532: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16494: \$? = $ac_status" >&5 + echo "$as_me:16535: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16497: \"$ac_try\"") >&5 + { (eval echo "$as_me:16538: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16500: \$? = $ac_status" >&5 + echo "$as_me:16541: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -16512,20 +16553,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16515: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:16556: result: $cf_cv_baddef_remove" >&5 echo "${ECHO_T}$cf_cv_baddef_remove" >&6 test "$cf_cv_baddef_remove" != no && cat >>confdefs.h <<\EOF #define NEED_REMOVE 1 EOF -echo "$as_me:16521: checking for lstat" >&5 +echo "$as_me:16562: checking for lstat" >&5 echo $ECHO_N "checking for lstat... $ECHO_C" >&6 if test "${ac_cv_func_lstat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16528 "configure" +#line 16569 "configure" #include "confdefs.h" #include <sys/types.h> @@ -16539,16 +16580,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16542: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16583: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16545: \$? = $ac_status" >&5 + echo "$as_me:16586: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16548: \"$ac_try\"") >&5 + { (eval echo "$as_me:16589: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16551: \$? = $ac_status" >&5 + echo "$as_me:16592: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -16560,7 +16601,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16563: result: $ac_cv_func_lstat " >&5 +echo "$as_me:16604: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then cat >>confdefs.h <<\EOF @@ -16593,13 +16634,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:16596: checking for $ac_func" >&5 +echo "$as_me:16637: 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 16602 "configure" +#line 16643 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -16630,16 +16671,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16633: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16674: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16636: \$? = $ac_status" >&5 + echo "$as_me:16677: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16639: \"$ac_try\"") >&5 + { (eval echo "$as_me:16680: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16642: \$? = $ac_status" >&5 + echo "$as_me:16683: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -16649,7 +16690,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16652: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:16693: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -16665,13 +16706,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:16668: checking for $ac_func" >&5 +echo "$as_me:16709: 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 16674 "configure" +#line 16715 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -16702,16 +16743,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16746: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16708: \$? = $ac_status" >&5 + echo "$as_me:16749: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16711: \"$ac_try\"") >&5 + { (eval echo "$as_me:16752: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16714: \$? = $ac_status" >&5 + echo "$as_me:16755: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -16721,7 +16762,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16724: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:16765: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -16733,7 +16774,7 @@ else fi done -echo "$as_me:16736: checking for random-integer functions" >&5 +echo "$as_me:16777: checking for random-integer functions" >&5 echo $ECHO_N "checking for random-integer functions... $ECHO_C" >&6 if test "${cf_cv_srand_func+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16745,7 +16786,7 @@ do cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'` cf_rand_func=`echo $cf_func | sed -e 's%.*/%%'` cat >conftest.$ac_ext <<_ACEOF -#line 16748 "configure" +#line 16789 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -16764,16 +16805,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16767: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16808: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16770: \$? = $ac_status" >&5 + echo "$as_me:16811: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16773: \"$ac_try\"") >&5 + { (eval echo "$as_me:16814: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16776: \$? = $ac_status" >&5 + echo "$as_me:16817: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -16785,10 +16826,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:16788: result: $cf_cv_srand_func" >&5 +echo "$as_me:16829: result: $cf_cv_srand_func" >&5 echo "${ECHO_T}$cf_cv_srand_func" >&6 if test "$cf_cv_srand_func" != unknown ; then - echo "$as_me:16791: checking for range of random-integers" >&5 + echo "$as_me:16832: checking for range of random-integers" >&5 echo $ECHO_N "checking for range of random-integers... $ECHO_C" >&6 if test "${cf_cv_rand_max+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16809,7 +16850,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 16812 "configure" +#line 16853 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -16828,16 +16869,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16831: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16872: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16834: \$? = $ac_status" >&5 + echo "$as_me:16875: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16837: \"$ac_try\"") >&5 + { (eval echo "$as_me:16878: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16840: \$? = $ac_status" >&5 + echo "$as_me:16881: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16848,7 +16889,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16851: result: $cf_cv_rand_max" >&5 +echo "$as_me:16892: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'` cf_rand_func=`echo $cf_func | sed -e 's%.*/%%'` @@ -16872,13 +16913,13 @@ fi for ac_func in strstr do -echo "$as_me:16875: checking for $ac_func declaration" >&5 +echo "$as_me:16916: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16881 "configure" +#line 16922 "configure" #include "confdefs.h" #include <string.h> int @@ -16892,20 +16933,20 @@ extern int ${ac_func}(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16895: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16936: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16898: \$? = $ac_status" >&5 + echo "$as_me:16939: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16901: \"$ac_try\"") >&5 + { (eval echo "$as_me:16942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16904: \$? = $ac_status" >&5 + echo "$as_me:16945: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 16908 "configure" +#line 16949 "configure" #include "confdefs.h" #include <string.h> int @@ -16919,16 +16960,16 @@ int (*p)() = ${ac_func}; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16922: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16963: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16925: \$? = $ac_status" >&5 + echo "$as_me:16966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16928: \"$ac_try\"") >&5 + { (eval echo "$as_me:16969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16931: \$? = $ac_status" >&5 + echo "$as_me:16972: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -16949,11 +16990,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:16952: result: yes" >&5 + echo "$as_me:16993: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:16956: result: no" >&5 + echo "$as_me:16997: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -16968,13 +17009,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:16971: checking for $ac_func declaration" >&5 +echo "$as_me:17012: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16977 "configure" +#line 17018 "configure" #include "confdefs.h" #include <stdio.h> @@ -16990,20 +17031,20 @@ extern int ${ac_func}(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16993: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17034: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16996: \$? = $ac_status" >&5 + echo "$as_me:17037: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16999: \"$ac_try\"") >&5 + { (eval echo "$as_me:17040: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17002: \$? = $ac_status" >&5 + echo "$as_me:17043: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 17006 "configure" +#line 17047 "configure" #include "confdefs.h" #include <stdio.h> @@ -17019,16 +17060,16 @@ int (*p)() = ${ac_func}; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17022: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17063: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17025: \$? = $ac_status" >&5 + echo "$as_me:17066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17028: \"$ac_try\"") >&5 + { (eval echo "$as_me:17069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17031: \$? = $ac_status" >&5 + echo "$as_me:17072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -17049,11 +17090,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:17052: result: yes" >&5 + echo "$as_me:17093: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:17056: result: no" >&5 + echo "$as_me:17097: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -17065,14 +17106,14 @@ EOF fi done -echo "$as_me:17068: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:17109: checking if TRUE/FALSE are defined" >&5 echo $ECHO_N "checking if TRUE/FALSE are defined... $ECHO_C" >&6 if test "${cf_cv_bool_defs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17075 "configure" +#line 17116 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17086,16 +17127,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17089: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17130: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17092: \$? = $ac_status" >&5 + echo "$as_me:17133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17095: \"$ac_try\"") >&5 + { (eval echo "$as_me:17136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17098: \$? = $ac_status" >&5 + echo "$as_me:17139: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -17106,7 +17147,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17109: result: $cf_cv_bool_defs" >&5 +echo "$as_me:17150: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then cat >>confdefs.h <<\EOF @@ -17119,14 +17160,14 @@ EOF fi -echo "$as_me:17122: checking if external errno is declared" >&5 +echo "$as_me:17163: 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 17129 "configure" +#line 17170 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -17144,16 +17185,16 @@ long x = (long) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17147: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17188: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17150: \$? = $ac_status" >&5 + echo "$as_me:17191: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17153: \"$ac_try\"") >&5 + { (eval echo "$as_me:17194: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17156: \$? = $ac_status" >&5 + echo "$as_me:17197: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -17164,7 +17205,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17167: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:17208: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -17179,14 +17220,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:17182: checking if external errno exists" >&5 +echo "$as_me:17223: 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 17189 "configure" +#line 17230 "configure" #include "confdefs.h" #undef errno @@ -17201,16 +17242,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17204: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17245: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17207: \$? = $ac_status" >&5 + echo "$as_me:17248: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17210: \"$ac_try\"") >&5 + { (eval echo "$as_me:17251: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17213: \$? = $ac_status" >&5 + echo "$as_me:17254: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -17221,7 +17262,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17224: result: $cf_cv_have_errno" >&5 +echo "$as_me:17265: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -17234,7 +17275,7 @@ EOF fi -echo "$as_me:17237: checking if we can set errno" >&5 +echo "$as_me:17278: checking if we can set errno" >&5 echo $ECHO_N "checking if we can set errno... $ECHO_C" >&6 if test "${cf_cv_set_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17242,7 +17283,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 17245 "configure" +#line 17286 "configure" #include "confdefs.h" #include <errno.h> int @@ -17254,16 +17295,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17257: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17260: \$? = $ac_status" >&5 + echo "$as_me:17301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17263: \"$ac_try\"") >&5 + { (eval echo "$as_me:17304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17266: \$? = $ac_status" >&5 + echo "$as_me:17307: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -17274,7 +17315,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 17277 "configure" +#line 17318 "configure" #include "confdefs.h" #include <errno.h> @@ -17285,15 +17326,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:17288: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17329: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17291: \$? = $ac_status" >&5 + echo "$as_me:17332: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:17293: \"$ac_try\"") >&5 + { (eval echo "$as_me:17334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17296: \$? = $ac_status" >&5 + echo "$as_me:17337: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -17306,20 +17347,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:17309: result: $cf_cv_set_errno" >&5 +echo "$as_me:17350: result: $cf_cv_set_errno" >&5 echo "${ECHO_T}$cf_cv_set_errno" >&6 test "$cf_cv_set_errno" != no && cat >>confdefs.h <<\EOF #define CAN_SET_ERRNO 1 EOF -echo "$as_me:17315: checking for setlocale()" >&5 +echo "$as_me:17356: checking for setlocale()" >&5 echo $ECHO_N "checking for setlocale()... $ECHO_C" >&6 if test "${cf_cv_locale+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17322 "configure" +#line 17363 "configure" #include "confdefs.h" #include <locale.h> int @@ -17331,16 +17372,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17334: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17375: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17337: \$? = $ac_status" >&5 + echo "$as_me:17378: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17340: \"$ac_try\"") >&5 + { (eval echo "$as_me:17381: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17343: \$? = $ac_status" >&5 + echo "$as_me:17384: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -17352,21 +17393,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17355: result: $cf_cv_locale" >&5 +echo "$as_me:17396: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF #define LOCALE 1 EOF } -echo "$as_me:17362: checking if NGROUPS is defined" >&5 +echo "$as_me:17403: checking if NGROUPS is defined" >&5 echo $ECHO_N "checking if NGROUPS is defined... $ECHO_C" >&6 if test "${cf_cv_ngroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17369 "configure" +#line 17410 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -17385,23 +17426,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17388: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17429: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17391: \$? = $ac_status" >&5 + echo "$as_me:17432: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17394: \"$ac_try\"") >&5 + { (eval echo "$as_me:17435: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17397: \$? = $ac_status" >&5 + echo "$as_me:17438: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 17404 "configure" +#line 17445 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -17420,16 +17461,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17423: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17464: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17426: \$? = $ac_status" >&5 + echo "$as_me:17467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17429: \"$ac_try\"") >&5 + { (eval echo "$as_me:17470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17432: \$? = $ac_status" >&5 + echo "$as_me:17473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -17441,7 +17482,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:17444: result: $cf_cv_ngroups" >&5 +echo "$as_me:17485: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -17458,14 +17499,14 @@ EOF fi -echo "$as_me:17461: checking if external sys_nerr is declared" >&5 +echo "$as_me:17502: checking if external sys_nerr is declared" >&5 echo $ECHO_N "checking if external sys_nerr is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17468 "configure" +#line 17509 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -17483,16 +17524,16 @@ long x = (long) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17486: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17527: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17489: \$? = $ac_status" >&5 + echo "$as_me:17530: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17492: \"$ac_try\"") >&5 + { (eval echo "$as_me:17533: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17495: \$? = $ac_status" >&5 + echo "$as_me:17536: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -17503,7 +17544,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17506: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:17547: result: $cf_cv_dcl_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_nerr" >&6 if test "$cf_cv_dcl_sys_nerr" = no ; then @@ -17518,14 +17559,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:17521: checking if external sys_nerr exists" >&5 +echo "$as_me:17562: checking if external sys_nerr exists" >&5 echo $ECHO_N "checking if external sys_nerr exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17528 "configure" +#line 17569 "configure" #include "confdefs.h" #undef sys_nerr @@ -17540,16 +17581,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17543: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17584: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17546: \$? = $ac_status" >&5 + echo "$as_me:17587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17549: \"$ac_try\"") >&5 + { (eval echo "$as_me:17590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17552: \$? = $ac_status" >&5 + echo "$as_me:17593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -17560,7 +17601,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17563: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:17604: result: $cf_cv_have_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_have_sys_nerr" >&6 if test "$cf_cv_have_sys_nerr" = yes ; then @@ -17573,14 +17614,14 @@ EOF fi -echo "$as_me:17576: checking if external sys_errlist is declared" >&5 +echo "$as_me:17617: checking if external sys_errlist is declared" >&5 echo $ECHO_N "checking if external sys_errlist is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17583 "configure" +#line 17624 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -17598,16 +17639,16 @@ long x = (long) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17601: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17642: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17604: \$? = $ac_status" >&5 + echo "$as_me:17645: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17607: \"$ac_try\"") >&5 + { (eval echo "$as_me:17648: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17610: \$? = $ac_status" >&5 + echo "$as_me:17651: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -17618,7 +17659,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17621: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:17662: result: $cf_cv_dcl_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_errlist" >&6 if test "$cf_cv_dcl_sys_errlist" = no ; then @@ -17633,14 +17674,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:17636: checking if external sys_errlist exists" >&5 +echo "$as_me:17677: checking if external sys_errlist exists" >&5 echo $ECHO_N "checking if external sys_errlist exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17643 "configure" +#line 17684 "configure" #include "confdefs.h" #undef sys_errlist @@ -17655,16 +17696,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17658: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17699: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17661: \$? = $ac_status" >&5 + echo "$as_me:17702: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17664: \"$ac_try\"") >&5 + { (eval echo "$as_me:17705: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17667: \$? = $ac_status" >&5 + echo "$as_me:17708: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -17675,7 +17716,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17678: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:17719: result: $cf_cv_have_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_have_sys_errlist" >&6 if test "$cf_cv_have_sys_errlist" = yes ; then @@ -17691,23 +17732,23 @@ fi for ac_header in lastlog.h paths.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:17694: checking for $ac_header" >&5 +echo "$as_me:17735: 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 17700 "configure" +#line 17741 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:17704: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:17745: \"$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:17710: \$? = $ac_status" >&5 + echo "$as_me:17751: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -17726,7 +17767,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:17729: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:17770: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -17736,14 +17777,14 @@ EOF fi done -echo "$as_me:17739: checking for lastlog path" >&5 +echo "$as_me:17780: checking for lastlog path" >&5 echo $ECHO_N "checking for lastlog path... $ECHO_C" >&6 if test "${cf_cv_path_lastlog+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17746 "configure" +#line 17787 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17763,16 +17804,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17766: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17807: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17769: \$? = $ac_status" >&5 + echo "$as_me:17810: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17772: \"$ac_try\"") >&5 + { (eval echo "$as_me:17813: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17775: \$? = $ac_status" >&5 + echo "$as_me:17816: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -17787,13 +17828,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17790: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:17831: result: $cf_cv_path_lastlog" >&5 echo "${ECHO_T}$cf_cv_path_lastlog" >&6 test $cf_cv_path_lastlog != no && cat >>confdefs.h <<\EOF #define USE_LASTLOG 1 EOF -echo "$as_me:17796: checking for utmp implementation" >&5 +echo "$as_me:17837: checking for utmp implementation" >&5 echo $ECHO_N "checking for utmp implementation... $ECHO_C" >&6 if test "${cf_cv_have_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17810,7 +17851,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 17813 "configure" +#line 17854 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -17824,16 +17865,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17827: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17868: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17830: \$? = $ac_status" >&5 + echo "$as_me:17871: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17833: \"$ac_try\"") >&5 + { (eval echo "$as_me:17874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17836: \$? = $ac_status" >&5 + echo "$as_me:17877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -17842,7 +17883,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 17845 "configure" +#line 17886 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -17856,16 +17897,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17859: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17900: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17862: \$? = $ac_status" >&5 + echo "$as_me:17903: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17865: \"$ac_try\"") >&5 + { (eval echo "$as_me:17906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17868: \$? = $ac_status" >&5 + echo "$as_me:17909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -17880,7 +17921,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17883: result: $cf_cv_have_utmp" >&5 +echo "$as_me:17924: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -17893,14 +17934,14 @@ EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:17896: checking if utmp.ut_host is declared" >&5 +echo "$as_me:17937: checking if utmp.ut_host is declared" >&5 echo $ECHO_N "checking if utmp.ut_host is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17903 "configure" +#line 17944 "configure" #include "confdefs.h" #include <sys/types.h> @@ -17914,16 +17955,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17917: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17958: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17920: \$? = $ac_status" >&5 + echo "$as_me:17961: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17923: \"$ac_try\"") >&5 + { (eval echo "$as_me:17964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17926: \$? = $ac_status" >&5 + echo "$as_me:17967: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -17935,7 +17976,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:17938: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:17979: result: $cf_cv_have_utmp_ut_host" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_host" >&6 test $cf_cv_have_utmp_ut_host != no && cat >>confdefs.h <<\EOF #define HAVE_UTMP_UT_HOST 1 @@ -17944,7 +17985,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:17947: checking if utmp.ut_name is declared" >&5 +echo "$as_me:17988: checking if utmp.ut_name is declared" >&5 echo $ECHO_N "checking if utmp.ut_name is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_name+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17961,7 +18002,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 17964 "configure" +#line 18005 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -17975,16 +18016,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17978: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18019: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17981: \$? = $ac_status" >&5 + echo "$as_me:18022: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17984: \"$ac_try\"") >&5 + { (eval echo "$as_me:18025: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17987: \$? = $ac_status" >&5 + echo "$as_me:18028: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -17996,12 +18037,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17999: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:18040: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in #(vi no) #(vi - { { echo "$as_me:18004: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:18045: error: Cannot find declaration for ut.ut_name" >&5 echo "$as_me: error: Cannot find declaration for ut.ut_name" >&2;} { (exit 1); exit 1; }; } ;; @@ -18015,7 +18056,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:18018: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:18059: checking for exit-status in $cf_cv_have_utmp" >&5 echo $ECHO_N "checking for exit-status in $cf_cv_have_utmp... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xstatus+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18028,7 +18069,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 18031 "configure" +#line 18072 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18042,16 +18083,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18045: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18086: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18048: \$? = $ac_status" >&5 + echo "$as_me:18089: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18051: \"$ac_try\"") >&5 + { (eval echo "$as_me:18092: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18054: \$? = $ac_status" >&5 + echo "$as_me:18095: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -18064,7 +18105,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18067: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:18108: result: $cf_cv_have_utmp_ut_xstatus" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xstatus" >&6 if test $cf_cv_have_utmp_ut_xstatus != no ; then cat >>confdefs.h <<\EOF @@ -18079,14 +18120,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:18082: checking if utmp.ut_xtime is declared" >&5 +echo "$as_me:18123: checking if utmp.ut_xtime is declared" >&5 echo $ECHO_N "checking if utmp.ut_xtime is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 18089 "configure" +#line 18130 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18100,23 +18141,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18103: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18144: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18106: \$? = $ac_status" >&5 + echo "$as_me:18147: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18109: \"$ac_try\"") >&5 + { (eval echo "$as_me:18150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18112: \$? = $ac_status" >&5 + echo "$as_me:18153: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 18119 "configure" +#line 18160 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18130,16 +18171,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18133: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18174: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18136: \$? = $ac_status" >&5 + echo "$as_me:18177: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18139: \"$ac_try\"") >&5 + { (eval echo "$as_me:18180: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18142: \$? = $ac_status" >&5 + echo "$as_me:18183: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -18153,7 +18194,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:18156: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:18197: result: $cf_cv_have_utmp_ut_xtime" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xtime" >&6 if test $cf_cv_have_utmp_ut_xtime != no ; then cat >>confdefs.h <<\EOF @@ -18170,14 +18211,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:18173: checking if utmp.ut_session is declared" >&5 +echo "$as_me:18214: checking if utmp.ut_session is declared" >&5 echo $ECHO_N "checking if utmp.ut_session is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_session+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 18180 "configure" +#line 18221 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18191,16 +18232,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18194: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18235: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18197: \$? = $ac_status" >&5 + echo "$as_me:18238: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18200: \"$ac_try\"") >&5 + { (eval echo "$as_me:18241: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18203: \$? = $ac_status" >&5 + echo "$as_me:18244: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -18211,7 +18252,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:18214: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:18255: result: $cf_cv_have_utmp_ut_session" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_session" >&6 if test $cf_cv_have_utmp_ut_session != no ; then cat >>confdefs.h <<\EOF @@ -18221,7 +18262,7 @@ EOF fi fi -echo "$as_me:18224: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:18265: checking if $cf_cv_have_utmp is SYSV flavor" >&5 echo $ECHO_N "checking if $cf_cv_have_utmp is SYSV flavor... $ECHO_C" >&6 if test "${cf_cv_sysv_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18229,7 +18270,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 18232 "configure" +#line 18273 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18248,16 +18289,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18251: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18292: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18254: \$? = $ac_status" >&5 + echo "$as_me:18295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18257: \"$ac_try\"") >&5 + { (eval echo "$as_me:18298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18260: \$? = $ac_status" >&5 + echo "$as_me:18301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -18268,7 +18309,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18271: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:18312: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF #define USE_SYSV_UTMP 1 @@ -18276,14 +18317,14 @@ EOF fi -echo "$as_me:18279: checking if external h_errno exists" >&5 +echo "$as_me:18320: checking if external h_errno exists" >&5 echo $ECHO_N "checking if external h_errno exists... $ECHO_C" >&6 if test "${cf_cv_have_h_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 18286 "configure" +#line 18327 "configure" #include "confdefs.h" #undef h_errno @@ -18298,16 +18339,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18301: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18342: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18304: \$? = $ac_status" >&5 + echo "$as_me:18345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18307: \"$ac_try\"") >&5 + { (eval echo "$as_me:18348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18310: \$? = $ac_status" >&5 + echo "$as_me:18351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -18318,7 +18359,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18321: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:18362: result: $cf_cv_have_h_errno" >&5 echo "${ECHO_T}$cf_cv_have_h_errno" >&6 if test "$cf_cv_have_h_errno" = yes ; then @@ -18331,7 +18372,7 @@ EOF fi -echo "$as_me:18334: checking if bibp: URLs should be supported" >&5 +echo "$as_me:18375: checking if bibp: URLs should be supported" >&5 echo $ECHO_N "checking if bibp: URLs should be supported... $ECHO_C" >&6 # Check whether --enable-bibp-urls or --disable-bibp-urls was given. @@ -18348,13 +18389,13 @@ else use_bibp_urls=yes fi; -echo "$as_me:18351: result: $use_bibp_urls" >&5 +echo "$as_me:18392: result: $use_bibp_urls" >&5 echo "${ECHO_T}$use_bibp_urls" >&6 test $use_bibp_urls = no && cat >>confdefs.h <<\EOF #define DISABLE_BIBP 1 EOF -echo "$as_me:18357: checking if configuration info should be browsable" >&5 +echo "$as_me:18398: checking if configuration info should be browsable" >&5 echo $ECHO_N "checking if configuration info should be browsable... $ECHO_C" >&6 # Check whether --enable-config-info or --disable-config-info was given. @@ -18371,13 +18412,13 @@ else use_config_info=yes fi; -echo "$as_me:18374: result: $use_config_info" >&5 +echo "$as_me:18415: result: $use_config_info" >&5 echo "${ECHO_T}$use_config_info" >&6 test $use_config_info = no && cat >>confdefs.h <<\EOF #define NO_CONFIG_INFO 1 EOF -echo "$as_me:18380: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:18421: checking if new-style forms-based options screen should be used" >&5 echo $ECHO_N "checking if new-style forms-based options screen should be used... $ECHO_C" >&6 # Check whether --enable-forms-options or --disable-forms-options was given. @@ -18394,13 +18435,13 @@ else use_forms_options=yes fi; -echo "$as_me:18397: result: $use_forms_options" >&5 +echo "$as_me:18438: result: $use_forms_options" >&5 echo "${ECHO_T}$use_forms_options" >&6 test $use_forms_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_FORMS 1 EOF -echo "$as_me:18403: checking if old-style options menu should be used" >&5 +echo "$as_me:18444: checking if old-style options menu should be used" >&5 echo $ECHO_N "checking if old-style options menu should be used... $ECHO_C" >&6 # Check whether --enable-menu-options or --disable-menu-options was given. @@ -18417,13 +18458,13 @@ else use_menu_options=yes fi; -echo "$as_me:18420: result: $use_menu_options" >&5 +echo "$as_me:18461: result: $use_menu_options" >&5 echo "${ECHO_T}$use_menu_options" >&6 test $use_menu_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_MENU 1 EOF -echo "$as_me:18426: checking if experimental address-list page should be used" >&5 +echo "$as_me:18467: checking if experimental address-list page should be used" >&5 echo $ECHO_N "checking if experimental address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -18440,13 +18481,13 @@ else use_addrlist_page=no fi; -echo "$as_me:18443: result: $use_addrlist_page" >&5 +echo "$as_me:18484: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF #define EXP_ADDRLIST_PAGE 1 EOF -echo "$as_me:18449: checking if experimental charset-selection logic should be used" >&5 +echo "$as_me:18490: checking if experimental charset-selection logic should be used" >&5 echo $ECHO_N "checking if experimental charset-selection logic should be used... $ECHO_C" >&6 # Check whether --enable-charset-choice or --disable-charset-choice was given. @@ -18463,13 +18504,13 @@ else use_charset_choice=no fi; -echo "$as_me:18466: result: $use_charset_choice" >&5 +echo "$as_me:18507: result: $use_charset_choice" >&5 echo "${ECHO_T}$use_charset_choice" >&6 test $use_charset_choice != no && cat >>confdefs.h <<\EOF #define EXP_CHARSET_CHOICE 1 EOF -echo "$as_me:18472: checking if experimental CJK logic should be used" >&5 +echo "$as_me:18513: checking if experimental CJK logic should be used" >&5 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6 # Check whether --enable-cjk or --disable-cjk was given. @@ -18486,13 +18527,13 @@ else use_cjk=no fi; -echo "$as_me:18489: result: $use_cjk" >&5 +echo "$as_me:18530: result: $use_cjk" >&5 echo "${ECHO_T}$use_cjk" >&6 test $use_cjk != no && cat >>confdefs.h <<\EOF #define CJK_EX 1 EOF -echo "$as_me:18495: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:18536: checking if experimental Japanese UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given. @@ -18509,14 +18550,14 @@ else use_ja_utf8=no fi; -echo "$as_me:18512: result: $use_ja_utf8" >&5 +echo "$as_me:18553: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then cat >>confdefs.h <<\EOF #define EXP_JAPANESEUTF8_SUPPORT 1 EOF -echo "$as_me:18519: checking for libiconv_open in -liconv" >&5 +echo "$as_me:18560: 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 @@ -18524,7 +18565,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-liconv $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18527 "configure" +#line 18568 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -18543,16 +18584,16 @@ libiconv_open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18546: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18587: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18549: \$? = $ac_status" >&5 + echo "$as_me:18590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18552: \"$ac_try\"") >&5 + { (eval echo "$as_me:18593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18555: \$? = $ac_status" >&5 + echo "$as_me:18596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_iconv_libiconv_open=yes else @@ -18563,7 +18604,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:18566: result: $ac_cv_lib_iconv_libiconv_open" >&5 +echo "$as_me:18607: 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 cat >>confdefs.h <<EOF @@ -18576,7 +18617,7 @@ fi fi -echo "$as_me:18579: checking if color-style code should be used" >&5 +echo "$as_me:18620: checking if color-style code should be used" >&5 echo $ECHO_N "checking if color-style code should be used... $ECHO_C" >&6 # Check whether --enable-color-style or --disable-color-style was given. @@ -18596,7 +18637,7 @@ fi; case $use_color_style in no) - echo "$as_me:18599: result: no" >&5 + echo "$as_me:18640: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -18605,10 +18646,10 @@ echo "${ECHO_T}no" >&6 #define USE_COLOR_STYLE 1 EOF - echo "$as_me:18608: result: yes" >&5 + echo "$as_me:18649: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:18611: checking for location of style-sheet file" >&5 + echo "$as_me:18652: checking for location of style-sheet file" >&5 echo $ECHO_N "checking for location of style-sheet file... $ECHO_C" >&6 # Check whether --with-lss-file or --without-lss-file was given. @@ -18616,8 +18657,14 @@ if test "${with_lss_file+set}" = set; then withval="$with_lss_file" else - withval="${LYNX_LSS_FILE-$libdir/lynx.lss}" + withval="${LYNX_LSS_FILE-$sysconfdir/lynx.lss}" fi; +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$withval" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -18629,15 +18676,15 @@ case ".$withval" in #(vi eval withval="$withval" case ".$withval" in #(vi .NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%` + withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:18640: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:18687: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -18645,7 +18692,7 @@ esac LYNX_LSS_FILE="$withval" - echo "$as_me:18648: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:18695: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -18665,7 +18712,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:18668: checking if you want to use default-colors" >&5 +echo "$as_me:18715: checking if you want to use default-colors" >&5 echo $ECHO_N "checking if you want to use default-colors... $ECHO_C" >&6 # Check whether --enable-default-colors or --disable-default-colors was given. @@ -18682,7 +18729,7 @@ else use_dft_colors=no fi; -echo "$as_me:18685: result: $use_dft_colors" >&5 +echo "$as_me:18732: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF #define USE_DEFAULT_COLORS 1 @@ -18690,7 +18737,7 @@ EOF fi -echo "$as_me:18693: checking if experimental htmlized lynx.cfg should be built" >&5 +echo "$as_me:18740: checking if experimental htmlized lynx.cfg should be built" >&5 echo $ECHO_N "checking if experimental htmlized lynx.cfg should be built... $ECHO_C" >&6 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given. @@ -18707,7 +18754,7 @@ else use_exp_htmlized_cfg=no fi; -echo "$as_me:18710: result: $use_exp_htmlized_cfg" >&5 +echo "$as_me:18757: result: $use_exp_htmlized_cfg" >&5 echo "${ECHO_T}$use_exp_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -18718,7 +18765,7 @@ if test $use_exp_htmlized_cfg = no ; then fi ### check for ipv6 support -echo "$as_me:18721: checking whether to enable ipv6" >&5 +echo "$as_me:18768: checking whether to enable ipv6" >&5 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6 # Check whether --enable-ipv6 or --disable-ipv6 was given. @@ -18734,11 +18781,11 @@ EOF else enableval=no fi; -echo "$as_me:18737: result: $enableval" >&5 +echo "$as_me:18784: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:18741: checking ipv6 stack type" >&5 +echo "$as_me:18788: checking ipv6 stack type" >&5 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6 if test "${cf_cv_ipv6type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18759,7 +18806,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 18762 "configure" +#line 18809 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -18776,7 +18823,7 @@ rm -f conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 18779 "configure" +#line 18826 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -18793,7 +18840,7 @@ rm -f conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 18796 "configure" +#line 18843 "configure" #include "confdefs.h" #include <features.h> @@ -18819,7 +18866,7 @@ rm -f conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 18822 "configure" +#line 18869 "configure" #include "confdefs.h" #include <sys/param.h> @@ -18836,7 +18883,7 @@ rm -f conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 18839 "configure" +#line 18886 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -18853,7 +18900,7 @@ rm -f conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 18856 "configure" +#line 18903 "configure" #include "confdefs.h" #include <sys/param.h> @@ -18875,13 +18922,13 @@ rm -f conftest* done fi -echo "$as_me:18878: result: $cf_cv_ipv6type" >&5 +echo "$as_me:18925: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:18884: checking for IPv6 library if required" >&5 +echo "$as_me:18931: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in #(vi solaris) #(vi @@ -18911,13 +18958,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:18914: result: $cf_ipv6lib" >&5 +echo "$as_me:18961: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 18920 "configure" +#line 18967 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18933,16 +18980,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18936: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18983: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18939: \$? = $ac_status" >&5 + echo "$as_me:18986: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18942: \"$ac_try\"") >&5 + { (eval echo "$as_me:18989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18945: \$? = $ac_status" >&5 + echo "$as_me:18992: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19036,13 +19083,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext eval 'cf_cv_have_lib_'$cf_ipv6lib'=no' cf_libdir="" - echo "$as_me:19039: checking for getaddrinfo" >&5 + echo "$as_me:19086: checking for getaddrinfo" >&5 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6 if test "${ac_cv_func_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19045 "configure" +#line 19092 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -19073,16 +19120,16 @@ f = getaddrinfo; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19076: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19123: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19079: \$? = $ac_status" >&5 + echo "$as_me:19126: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19082: \"$ac_try\"") >&5 + { (eval echo "$as_me:19129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19085: \$? = $ac_status" >&5 + echo "$as_me:19132: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -19092,18 +19139,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19095: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:19142: result: $ac_cv_func_getaddrinfo" >&5 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6 if test $ac_cv_func_getaddrinfo = yes; then eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:19102: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:19149: checking for getaddrinfo in -l$cf_ipv6lib" >&5 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6 LIBS="-l$cf_ipv6lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19106 "configure" +#line 19153 "configure" #include "confdefs.h" #include <sys/types.h> @@ -19119,25 +19166,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19122: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19169: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19125: \$? = $ac_status" >&5 + echo "$as_me:19172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19128: \"$ac_try\"") >&5 + { (eval echo "$as_me:19175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19131: \$? = $ac_status" >&5 + echo "$as_me:19178: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19133: result: yes" >&5 + echo "$as_me:19180: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19140: result: no" >&5 +echo "$as_me:19187: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search="" @@ -19197,11 +19244,11 @@ test -d /usr && { for cf_libdir in $cf_search do - echo "$as_me:19200: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:19247: checking for -l$cf_ipv6lib in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19204 "configure" +#line 19251 "configure" #include "confdefs.h" #include <sys/types.h> @@ -19217,25 +19264,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19220: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19267: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19223: \$? = $ac_status" >&5 + echo "$as_me:19270: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19226: \"$ac_try\"") >&5 + { (eval echo "$as_me:19273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19229: \$? = $ac_status" >&5 + echo "$as_me:19276: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19231: result: yes" >&5 + echo "$as_me:19278: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19238: result: no" >&5 +echo "$as_me:19285: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -19250,7 +19297,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:19253: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:19300: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&5 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&2;} @@ -19258,7 +19305,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:19261: checking working getaddrinfo" >&5 +echo "$as_me:19308: checking working getaddrinfo" >&5 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6 if test "${cf_cv_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19268,7 +19315,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 19271 "configure" +#line 19318 "configure" #include "confdefs.h" #include <sys/types.h> @@ -19348,15 +19395,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:19351: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19398: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19354: \$? = $ac_status" >&5 + echo "$as_me:19401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:19356: \"$ac_try\"") >&5 + { (eval echo "$as_me:19403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19359: \$? = $ac_status" >&5 + echo "$as_me:19406: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -19369,7 +19416,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:19372: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:19419: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then cat >>confdefs.h <<\EOF @@ -19384,12 +19431,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:19387: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:19434: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&5 echo "$as_me: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&2;} else - { echo "$as_me:19392: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:19439: WARNING: The getaddrinfo() implementation on your system seems be buggy. You should upgrade your system library to the newest version of GNU C library (aka glibc)." >&5 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy. @@ -19400,7 +19447,7 @@ fi fi -echo "$as_me:19403: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:19450: checking if experimental keyboard-layout logic should be used" >&5 echo $ECHO_N "checking if experimental keyboard-layout logic should be used... $ECHO_C" >&6 # Check whether --enable-kbd-layout or --disable-kbd-layout was given. @@ -19417,13 +19464,13 @@ else use_kbd_layout=no fi; -echo "$as_me:19420: result: $use_kbd_layout" >&5 +echo "$as_me:19467: result: $use_kbd_layout" >&5 echo "${ECHO_T}$use_kbd_layout" >&6 test $use_kbd_layout != no && cat >>confdefs.h <<\EOF #define EXP_KEYBOARD_LAYOUT 1 EOF -echo "$as_me:19426: checking if experimental locale-charset selection logic should be used" >&5 +echo "$as_me:19473: checking if experimental locale-charset selection logic should be used" >&5 echo $ECHO_N "checking if experimental locale-charset selection logic should be used... $ECHO_C" >&6 # Check whether --enable-locale-charset or --disable-locale-charset was given. @@ -19440,13 +19487,13 @@ else use_locale_charset=yes fi; -echo "$as_me:19443: result: $use_locale_charset" >&5 +echo "$as_me:19490: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF #define EXP_LOCALE_CHARSET 1 EOF -echo "$as_me:19449: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:19496: checking if experimental nested-table logic should be used" >&5 echo $ECHO_N "checking if experimental nested-table logic should be used... $ECHO_C" >&6 # Check whether --enable-nested-tables or --disable-nested-tables was given. @@ -19463,13 +19510,13 @@ else use_nested_tables=no fi; -echo "$as_me:19466: result: $use_nested_tables" >&5 +echo "$as_me:19513: result: $use_nested_tables" >&5 echo "${ECHO_T}$use_nested_tables" >&6 test $use_nested_tables != no && cat >>confdefs.h <<\EOF #define EXP_NESTED_TABLES 1 EOF -echo "$as_me:19472: checking if scrollbar code should be used" >&5 +echo "$as_me:19519: checking if scrollbar code should be used" >&5 echo $ECHO_N "checking if scrollbar code should be used... $ECHO_C" >&6 # Check whether --enable-scrollbar or --disable-scrollbar was given. @@ -19486,10 +19533,10 @@ else use_scrollbar=no fi; -echo "$as_me:19489: result: $use_scrollbar" >&5 +echo "$as_me:19536: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:19492: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:19539: checking if alternative line-edit bindings should be used" >&5 echo $ECHO_N "checking if alternative line-edit bindings should be used... $ECHO_C" >&6 # Check whether --enable-alt-bindings or --disable-alt-bindings was given. @@ -19506,13 +19553,13 @@ else use_alt_bindings=yes fi; -echo "$as_me:19509: result: $use_alt_bindings" >&5 +echo "$as_me:19556: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF #define EXP_ALT_BINDINGS 1 EOF -echo "$as_me:19515: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:19562: checking if you want to use extended HTML DTD logic" >&5 echo $ECHO_N "checking if you want to use extended HTML DTD logic... $ECHO_C" >&6 # Check whether --enable-extended-dtd or --disable-extended-dtd was given. @@ -19529,13 +19576,13 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:19532: result: $use_ext_htmldtd" >&5 +echo "$as_me:19579: result: $use_ext_htmldtd" >&5 echo "${ECHO_T}$use_ext_htmldtd" >&6 test $use_ext_htmldtd = "no" && cat >>confdefs.h <<\EOF #define NO_EXTENDED_HTMLDTD 1 EOF -echo "$as_me:19538: checking if file-upload logic should be used" >&5 +echo "$as_me:19585: checking if file-upload logic should be used" >&5 echo $ECHO_N "checking if file-upload logic should be used... $ECHO_C" >&6 # Check whether --enable-file-upload or --disable-file-upload was given. @@ -19552,13 +19599,13 @@ else use_file_upload=yes fi; -echo "$as_me:19555: result: $use_file_upload" >&5 +echo "$as_me:19602: result: $use_file_upload" >&5 echo "${ECHO_T}$use_file_upload" >&6 test $use_file_upload != no && cat >>confdefs.h <<\EOF #define USE_FILE_UPLOAD 1 EOF -echo "$as_me:19561: checking if element-justification logic should be used" >&5 +echo "$as_me:19608: checking if element-justification logic should be used" >&5 echo $ECHO_N "checking if element-justification logic should be used... $ECHO_C" >&6 # Check whether --enable-justify-elts or --disable-justify-elts was given. @@ -19575,13 +19622,13 @@ else use_justify_elts=yes fi; -echo "$as_me:19578: result: $use_justify_elts" >&5 +echo "$as_me:19625: result: $use_justify_elts" >&5 echo "${ECHO_T}$use_justify_elts" >&6 test $use_justify_elts != no && cat >>confdefs.h <<\EOF #define EXP_JUSTIFY_ELTS 1 EOF -echo "$as_me:19584: checking if partial-display should be used" >&5 +echo "$as_me:19631: checking if partial-display should be used" >&5 echo $ECHO_N "checking if partial-display should be used... $ECHO_C" >&6 # Check whether --enable-partial or --disable-partial was given. @@ -19598,13 +19645,13 @@ else use_partial_display=yes fi; -echo "$as_me:19601: result: $use_partial_display" >&5 +echo "$as_me:19648: result: $use_partial_display" >&5 echo "${ECHO_T}$use_partial_display" >&6 test $use_partial_display != no && cat >>confdefs.h <<\EOF #define DISP_PARTIAL 1 EOF -echo "$as_me:19607: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:19654: checking if persistent-cookie logic should be used" >&5 echo $ECHO_N "checking if persistent-cookie logic should be used... $ECHO_C" >&6 # Check whether --enable-persistent-cookies or --disable-persistent-cookies was given. @@ -19621,13 +19668,13 @@ else use_filed_cookies=yes fi; -echo "$as_me:19624: result: $use_filed_cookies" >&5 +echo "$as_me:19671: result: $use_filed_cookies" >&5 echo "${ECHO_T}$use_filed_cookies" >&6 test $use_filed_cookies != no && cat >>confdefs.h <<\EOF #define USE_PERSISTENT_COOKIES 1 EOF -echo "$as_me:19630: checking if html source should be colorized" >&5 +echo "$as_me:19677: checking if html source should be colorized" >&5 echo $ECHO_N "checking if html source should be colorized... $ECHO_C" >&6 # Check whether --enable-prettysrc or --disable-prettysrc was given. @@ -19644,13 +19691,13 @@ else use_prettysrc=yes fi; -echo "$as_me:19647: result: $use_prettysrc" >&5 +echo "$as_me:19694: result: $use_prettysrc" >&5 echo "${ECHO_T}$use_prettysrc" >&6 test $use_prettysrc != no && cat >>confdefs.h <<\EOF #define USE_PRETTYSRC 1 EOF -echo "$as_me:19653: checking if read-progress message should show ETA" >&5 +echo "$as_me:19700: checking if read-progress message should show ETA" >&5 echo $ECHO_N "checking if read-progress message should show ETA... $ECHO_C" >&6 # Check whether --enable-read-eta or --disable-read-eta was given. @@ -19667,13 +19714,13 @@ else use_read_eta=yes fi; -echo "$as_me:19670: result: $use_read_eta" >&5 +echo "$as_me:19717: result: $use_read_eta" >&5 echo "${ECHO_T}$use_read_eta" >&6 test $use_read_eta != no && cat >>confdefs.h <<\EOF #define USE_READPROGRESS 1 EOF -echo "$as_me:19676: checking if source caching should be used" >&5 +echo "$as_me:19723: checking if source caching should be used" >&5 echo $ECHO_N "checking if source caching should be used... $ECHO_C" >&6 # Check whether --enable-source-cache or --disable-source-cache was given. @@ -19690,13 +19737,13 @@ else use_source_cache=yes fi; -echo "$as_me:19693: result: $use_source_cache" >&5 +echo "$as_me:19740: result: $use_source_cache" >&5 echo "${ECHO_T}$use_source_cache" >&6 test $use_source_cache != no && cat >>confdefs.h <<\EOF #define USE_SOURCE_CACHE 1 EOF -echo "$as_me:19699: checking if you want to use external commands" >&5 +echo "$as_me:19746: checking if you want to use external commands" >&5 echo $ECHO_N "checking if you want to use external commands... $ECHO_C" >&6 # Check whether --enable-externs or --disable-externs was given. @@ -19713,7 +19760,7 @@ else use_externs=no fi; -echo "$as_me:19716: result: $use_externs" >&5 +echo "$as_me:19763: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then cat >>confdefs.h <<\EOF @@ -19723,7 +19770,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:19726: checking if you want to use setfont support" >&5 +echo "$as_me:19773: checking if you want to use setfont support" >&5 echo $ECHO_N "checking if you want to use setfont support... $ECHO_C" >&6 # Check whether --enable-font-switch or --disable-font-switch was given. @@ -19740,7 +19787,7 @@ else use_setfont=no fi; -echo "$as_me:19743: result: $use_setfont" >&5 +echo "$as_me:19790: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -19751,7 +19798,7 @@ for ac_prog in $SETFONT consolechars setfont do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:19754: checking for $ac_word" >&5 +echo "$as_me:19801: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_SETFONT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19768,7 +19815,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_SETFONT="$ac_dir/$ac_word" - echo "$as_me:19771: found $ac_dir/$ac_word" >&5 + echo "$as_me:19818: found $ac_dir/$ac_word" >&5 break fi done @@ -19779,10 +19826,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:19782: result: $SETFONT" >&5 + echo "$as_me:19829: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:19785: result: no" >&5 + echo "$as_me:19832: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -19807,6 +19854,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -19818,12 +19871,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -19844,7 +19897,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 19847) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 19900) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -19869,12 +19922,12 @@ fi EOF else - { echo "$as_me:19872: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:19925: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} fi fi -echo "$as_me:19877: checking if you want cgi-link support" >&5 +echo "$as_me:19930: checking if you want cgi-link support" >&5 echo $ECHO_N "checking if you want cgi-link support... $ECHO_C" >&6 # Check whether --enable-cgi-links or --disable-cgi-links was given. @@ -19890,10 +19943,10 @@ EOF else enableval=no fi; -echo "$as_me:19893: result: $enableval" >&5 +echo "$as_me:19946: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:19896: checking if you want change-exec support" >&5 +echo "$as_me:19949: checking if you want change-exec support" >&5 echo $ECHO_N "checking if you want change-exec support... $ECHO_C" >&6 # Check whether --enable-change-exec or --disable-change-exec was given. @@ -19910,13 +19963,13 @@ else use_change_exec=no fi; -echo "$as_me:19913: result: $use_change_exec" >&5 +echo "$as_me:19966: result: $use_change_exec" >&5 echo "${ECHO_T}$use_change_exec" >&6 test $use_change_exec = yes && cat >>confdefs.h <<\EOF #define ENABLE_OPTS_CHANGE_EXEC 1 EOF -echo "$as_me:19919: checking if you want exec-links support" >&5 +echo "$as_me:19972: checking if you want exec-links support" >&5 echo $ECHO_N "checking if you want exec-links support... $ECHO_C" >&6 # Check whether --enable-exec-links or --disable-exec-links was given. @@ -19933,13 +19986,13 @@ else use_exec_links=$enableval fi; -echo "$as_me:19936: result: $use_exec_links" >&5 +echo "$as_me:19989: result: $use_exec_links" >&5 echo "${ECHO_T}$use_exec_links" >&6 test $use_exec_links = yes && cat >>confdefs.h <<\EOF #define EXEC_LINKS 1 EOF -echo "$as_me:19942: checking if you want exec-scripts support" >&5 +echo "$as_me:19995: checking if you want exec-scripts support" >&5 echo $ECHO_N "checking if you want exec-scripts support... $ECHO_C" >&6 # Check whether --enable-exec-scripts or --disable-exec-scripts was given. @@ -19956,13 +20009,13 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:19959: result: $use_exec_scripts" >&5 +echo "$as_me:20012: result: $use_exec_scripts" >&5 echo "${ECHO_T}$use_exec_scripts" >&6 test $use_exec_scripts = yes && cat >>confdefs.h <<\EOF #define EXEC_SCRIPTS 1 EOF -echo "$as_me:19965: checking if you want internal-links feature" >&5 +echo "$as_me:20018: checking if you want internal-links feature" >&5 echo $ECHO_N "checking if you want internal-links feature... $ECHO_C" >&6 # Check whether --enable-internal-links or --disable-internal-links was given. @@ -19979,13 +20032,13 @@ else use_internal_links=no fi; -echo "$as_me:19982: result: $use_internal_links" >&5 +echo "$as_me:20035: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test $use_internal_links = no && cat >>confdefs.h <<\EOF #define DONT_TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:19988: checking if you want to fork NSL requests" >&5 +echo "$as_me:20041: checking if you want to fork NSL requests" >&5 echo $ECHO_N "checking if you want to fork NSL requests... $ECHO_C" >&6 # Check whether --enable-nsl-fork or --disable-nsl-fork was given. @@ -20002,13 +20055,13 @@ else use_nsl_fork=no fi; -echo "$as_me:20005: result: $use_nsl_fork" >&5 +echo "$as_me:20058: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 test $use_nsl_fork = yes && cat >>confdefs.h <<\EOF #define NSL_FORK 1 EOF -echo "$as_me:20011: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:20064: checking if you want to log URL requests via syslog" >&5 echo $ECHO_N "checking if you want to log URL requests via syslog... $ECHO_C" >&6 # Check whether --enable-syslog or --disable-syslog was given. @@ -20025,13 +20078,13 @@ else use_syslog=no fi; -echo "$as_me:20028: result: $use_syslog" >&5 +echo "$as_me:20081: result: $use_syslog" >&5 echo "${ECHO_T}$use_syslog" >&6 test $use_syslog = yes && cat >>confdefs.h <<\EOF #define SYSLOG_REQUESTED_URLS 1 EOF -echo "$as_me:20034: checking if you want to underline links" >&5 +echo "$as_me:20087: checking if you want to underline links" >&5 echo $ECHO_N "checking if you want to underline links... $ECHO_C" >&6 # Check whether --enable-underlines or --disable-underlines was given. @@ -20048,7 +20101,7 @@ else use_underline=no fi; -echo "$as_me:20051: result: $use_underline" >&5 +echo "$as_me:20104: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 1 @@ -20058,7 +20111,7 @@ test $use_underline = no && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:20061: checking if help files should be gzip'ed" >&5 +echo "$as_me:20114: checking if help files should be gzip'ed" >&5 echo $ECHO_N "checking if help files should be gzip'ed... $ECHO_C" >&6 # Check whether --enable-gzip-help or --disable-gzip-help was given. @@ -20075,10 +20128,10 @@ else use_gzip_help=no fi; -echo "$as_me:20078: result: $use_gzip_help" >&5 +echo "$as_me:20131: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:20081: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:20134: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 echo $ECHO_N "checking if you want to use libbz2 for decompression of some bzip2 files... $ECHO_C" >&6 # Check whether --with-bzlib or --without-bzlib was given. @@ -20088,15 +20141,15 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:20091: result: $use_bzlib" >&5 +echo "$as_me:20144: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then -echo "$as_me:20096: checking if we need to add -I option to get bzlib.h" >&5 +echo "$as_me:20149: checking if we need to add -I option to get bzlib.h" >&5 echo $ECHO_N "checking if we need to add -I option to get bzlib.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 20099 "configure" +#line 20152 "configure" #include "confdefs.h" #include <zlib.h> int @@ -20108,24 +20161,24 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20111: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20164: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20114: \$? = $ac_status" >&5 + echo "$as_me:20167: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20117: \"$ac_try\"") >&5 + { (eval echo "$as_me:20170: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20120: \$? = $ac_status" >&5 + echo "$as_me:20173: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20122: result: no" >&5 + echo "$as_me:20175: result: no" >&5 echo "${ECHO_T}no" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20128: result: yes" >&5 +echo "$as_me:20181: result: yes" >&5 echo "${ECHO_T}yes" >&6 cf_search="" @@ -20282,13 +20335,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext eval 'cf_cv_have_lib_'bz2'=no' cf_libdir="" - echo "$as_me:20285: checking for BZ2_bzopen" >&5 + echo "$as_me:20338: checking for BZ2_bzopen" >&5 echo $ECHO_N "checking for BZ2_bzopen... $ECHO_C" >&6 if test "${ac_cv_func_BZ2_bzopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20291 "configure" +#line 20344 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char BZ2_bzopen (); below. */ @@ -20319,16 +20372,16 @@ f = BZ2_bzopen; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20322: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20375: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20325: \$? = $ac_status" >&5 + echo "$as_me:20378: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20328: \"$ac_try\"") >&5 + { (eval echo "$as_me:20381: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20331: \$? = $ac_status" >&5 + echo "$as_me:20384: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_BZ2_bzopen=yes else @@ -20338,18 +20391,18 @@ ac_cv_func_BZ2_bzopen=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20341: result: $ac_cv_func_BZ2_bzopen" >&5 +echo "$as_me:20394: result: $ac_cv_func_BZ2_bzopen" >&5 echo "${ECHO_T}$ac_cv_func_BZ2_bzopen" >&6 if test $ac_cv_func_BZ2_bzopen = yes; then eval 'cf_cv_have_lib_'bz2'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:20348: checking for BZ2_bzopen in -lbz2" >&5 + echo "$as_me:20401: checking for BZ2_bzopen in -lbz2" >&5 echo $ECHO_N "checking for BZ2_bzopen in -lbz2... $ECHO_C" >&6 LIBS="-lbz2 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20352 "configure" +#line 20405 "configure" #include "confdefs.h" #include <stdio.h> @@ -20363,25 +20416,25 @@ BZ2_bzopen("name","mode") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20366: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20419: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20369: \$? = $ac_status" >&5 + echo "$as_me:20422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20372: \"$ac_try\"") >&5 + { (eval echo "$as_me:20425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20375: \$? = $ac_status" >&5 + echo "$as_me:20428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20377: result: yes" >&5 + echo "$as_me:20430: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'bz2'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20384: result: no" >&5 +echo "$as_me:20437: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search="" @@ -20441,11 +20494,11 @@ test -d /usr && { for cf_libdir in $cf_search do - echo "$as_me:20444: checking for -lbz2 in $cf_libdir" >&5 + echo "$as_me:20497: checking for -lbz2 in $cf_libdir" >&5 echo $ECHO_N "checking for -lbz2 in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20448 "configure" +#line 20501 "configure" #include "confdefs.h" #include <stdio.h> @@ -20459,25 +20512,25 @@ BZ2_bzopen("name","mode") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20462: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20515: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20465: \$? = $ac_status" >&5 + echo "$as_me:20518: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20468: \"$ac_try\"") >&5 + { (eval echo "$as_me:20521: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20471: \$? = $ac_status" >&5 + echo "$as_me:20524: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20473: result: yes" >&5 + echo "$as_me:20526: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'bz2'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20480: result: no" >&5 +echo "$as_me:20533: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20492,7 +20545,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'bz2 if test $cf_found_library = no ; then - { { echo "$as_me:20495: error: Cannot link bz2 library" >&5 + { { echo "$as_me:20548: error: Cannot link bz2 library" >&5 echo "$as_me: error: Cannot link bz2 library" >&2;} { (exit 1); exit 1; }; } fi @@ -20503,7 +20556,7 @@ EOF fi -echo "$as_me:20506: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:20559: checking if you want to use zlib for decompression of some gzip files" >&5 echo $ECHO_N "checking if you want to use zlib for decompression of some gzip files... $ECHO_C" >&6 # Check whether --with-zlib or --without-zlib was given. @@ -20513,15 +20566,15 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:20516: result: $use_zlib" >&5 +echo "$as_me:20569: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then -echo "$as_me:20521: checking if we need to add -I option to get zlib.h" >&5 +echo "$as_me:20574: checking if we need to add -I option to get zlib.h" >&5 echo $ECHO_N "checking if we need to add -I option to get zlib.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 20524 "configure" +#line 20577 "configure" #include "confdefs.h" #include <zlib.h> int @@ -20533,24 +20586,24 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20536: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20589: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20539: \$? = $ac_status" >&5 + echo "$as_me:20592: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20542: \"$ac_try\"") >&5 + { (eval echo "$as_me:20595: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20545: \$? = $ac_status" >&5 + echo "$as_me:20598: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20547: result: no" >&5 + echo "$as_me:20600: result: no" >&5 echo "${ECHO_T}no" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20553: result: yes" >&5 +echo "$as_me:20606: result: yes" >&5 echo "${ECHO_T}yes" >&6 cf_search="" @@ -20707,13 +20760,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext eval 'cf_cv_have_lib_'z'=no' cf_libdir="" - echo "$as_me:20710: checking for gzopen" >&5 + echo "$as_me:20763: checking for gzopen" >&5 echo $ECHO_N "checking for gzopen... $ECHO_C" >&6 if test "${ac_cv_func_gzopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20716 "configure" +#line 20769 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gzopen (); below. */ @@ -20744,16 +20797,16 @@ f = gzopen; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20747: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20800: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20750: \$? = $ac_status" >&5 + echo "$as_me:20803: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20753: \"$ac_try\"") >&5 + { (eval echo "$as_me:20806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20756: \$? = $ac_status" >&5 + echo "$as_me:20809: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gzopen=yes else @@ -20763,18 +20816,18 @@ ac_cv_func_gzopen=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20766: result: $ac_cv_func_gzopen" >&5 +echo "$as_me:20819: result: $ac_cv_func_gzopen" >&5 echo "${ECHO_T}$ac_cv_func_gzopen" >&6 if test $ac_cv_func_gzopen = yes; then eval 'cf_cv_have_lib_'z'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:20773: checking for gzopen in -lz" >&5 + echo "$as_me:20826: checking for gzopen in -lz" >&5 echo $ECHO_N "checking for gzopen in -lz... $ECHO_C" >&6 LIBS="-lz $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20777 "configure" +#line 20830 "configure" #include "confdefs.h" #include <zlib.h> int @@ -20786,25 +20839,25 @@ gzopen("name","mode") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20789: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20842: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20792: \$? = $ac_status" >&5 + echo "$as_me:20845: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20795: \"$ac_try\"") >&5 + { (eval echo "$as_me:20848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20798: \$? = $ac_status" >&5 + echo "$as_me:20851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20800: result: yes" >&5 + echo "$as_me:20853: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'z'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20807: result: no" >&5 +echo "$as_me:20860: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search="" @@ -20864,11 +20917,11 @@ test -d /usr && { for cf_libdir in $cf_search do - echo "$as_me:20867: checking for -lz in $cf_libdir" >&5 + echo "$as_me:20920: checking for -lz in $cf_libdir" >&5 echo $ECHO_N "checking for -lz in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20871 "configure" +#line 20924 "configure" #include "confdefs.h" #include <zlib.h> int @@ -20880,25 +20933,25 @@ gzopen("name","mode") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20883: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20936: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20886: \$? = $ac_status" >&5 + echo "$as_me:20939: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20889: \"$ac_try\"") >&5 + { (eval echo "$as_me:20942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20892: \$? = $ac_status" >&5 + echo "$as_me:20945: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20894: result: yes" >&5 + echo "$as_me:20947: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'z'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20901: result: no" >&5 +echo "$as_me:20954: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20913,7 +20966,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'z if test $cf_found_library = no ; then - { { echo "$as_me:20916: error: Cannot link z library" >&5 + { { echo "$as_me:20969: error: Cannot link z library" >&5 echo "$as_me: error: Cannot link z library" >&2;} { (exit 1); exit 1; }; } fi @@ -20924,7 +20977,7 @@ EOF fi -echo "$as_me:20927: checking if you want to exclude FINGER code" >&5 +echo "$as_me:20980: checking if you want to exclude FINGER code" >&5 echo $ECHO_N "checking if you want to exclude FINGER code... $ECHO_C" >&6 # Check whether --enable-finger or --disable-finger was given. @@ -20941,13 +20994,13 @@ else use_finger=no fi; -echo "$as_me:20944: result: $use_finger" >&5 +echo "$as_me:20997: result: $use_finger" >&5 echo "${ECHO_T}$use_finger" >&6 test $use_finger != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FINGER 1 EOF -echo "$as_me:20950: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:21003: checking if you want to exclude GOPHER code" >&5 echo $ECHO_N "checking if you want to exclude GOPHER code... $ECHO_C" >&6 # Check whether --enable-gopher or --disable-gopher was given. @@ -20964,13 +21017,13 @@ else use_gopher=no fi; -echo "$as_me:20967: result: $use_gopher" >&5 +echo "$as_me:21020: result: $use_gopher" >&5 echo "${ECHO_T}$use_gopher" >&6 test $use_gopher != "no" && cat >>confdefs.h <<\EOF #define DISABLE_GOPHER 1 EOF -echo "$as_me:20973: checking if you want to exclude NEWS code" >&5 +echo "$as_me:21026: checking if you want to exclude NEWS code" >&5 echo $ECHO_N "checking if you want to exclude NEWS code... $ECHO_C" >&6 # Check whether --enable-news or --disable-news was given. @@ -20987,13 +21040,13 @@ else use_news=no fi; -echo "$as_me:20990: result: $use_news" >&5 +echo "$as_me:21043: result: $use_news" >&5 echo "${ECHO_T}$use_news" >&6 test $use_news != "no" && cat >>confdefs.h <<\EOF #define DISABLE_NEWS 1 EOF -echo "$as_me:20996: checking if you want to exclude FTP code" >&5 +echo "$as_me:21049: checking if you want to exclude FTP code" >&5 echo $ECHO_N "checking if you want to exclude FTP code... $ECHO_C" >&6 # Check whether --enable-ftp or --disable-ftp was given. @@ -21010,7 +21063,7 @@ else use_ftp=no fi; -echo "$as_me:21013: result: $use_ftp" >&5 +echo "$as_me:21066: result: $use_ftp" >&5 echo "${ECHO_T}$use_ftp" >&6 test $use_ftp != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FTP 1 @@ -21018,7 +21071,7 @@ EOF # All DirEd functions that were enabled on compilation can be disabled # or modified at run time via DIRED_MENU symbols in lynx.cfg. -echo "$as_me:21021: checking if directory-editor code should be used" >&5 +echo "$as_me:21074: checking if directory-editor code should be used" >&5 echo $ECHO_N "checking if directory-editor code should be used... $ECHO_C" >&6 # Check whether --enable-dired or --disable-dired was given. @@ -21035,7 +21088,7 @@ else use_dired=yes fi; -echo "$as_me:21038: result: $use_dired" >&5 +echo "$as_me:21091: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -21044,7 +21097,7 @@ if test ".$use_dired" != ".no" ; then #define DIRED_SUPPORT 1 EOF - echo "$as_me:21047: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:21100: checking if you wish to allow extracting from archives via DirEd" >&5 echo $ECHO_N "checking if you wish to allow extracting from archives via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-dearchive or --disable-dired-dearchive was given. @@ -21060,10 +21113,10 @@ EOF else enableval=yes fi; - echo "$as_me:21063: result: $enableval" >&5 + echo "$as_me:21116: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:21066: checking if DirEd mode should override keys" >&5 + echo "$as_me:21119: checking if DirEd mode should override keys" >&5 echo $ECHO_N "checking if DirEd mode should override keys... $ECHO_C" >&6 # Check whether --enable-dired-override or --disable-dired-override was given. @@ -21085,10 +21138,10 @@ else EOF fi; - echo "$as_me:21088: result: $enableval" >&5 + echo "$as_me:21141: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:21091: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:21144: checking if you wish to allow permissions commands via DirEd" >&5 echo $ECHO_N "checking if you wish to allow permissions commands via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-permit or --disable-dired-permit was given. @@ -21110,10 +21163,10 @@ else EOF fi; - echo "$as_me:21113: result: $enableval" >&5 + echo "$as_me:21166: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:21116: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:21169: checking if you wish to allow executable-permission commands via DirEd" >&5 echo $ECHO_N "checking if you wish to allow executable-permission commands via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-xpermit or --disable-dired-xpermit was given. @@ -21129,10 +21182,10 @@ EOF else enableval=yes fi; - echo "$as_me:21132: result: $enableval" >&5 + echo "$as_me:21185: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:21135: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:21188: checking if you wish to allow \"tar\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"tar\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-tar or --disable-dired-tar was given. @@ -21154,10 +21207,10 @@ else EOF fi; - echo "$as_me:21157: result: $enableval" >&5 + echo "$as_me:21210: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:21160: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:21213: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"uudecode\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-uudecode or --disable-dired-uudecode was given. @@ -21179,10 +21232,10 @@ else EOF fi; - echo "$as_me:21182: result: $enableval" >&5 + echo "$as_me:21235: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:21185: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:21238: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-zip or --disable-dired-zip was given. @@ -21204,10 +21257,10 @@ else EOF fi; - echo "$as_me:21207: result: $enableval" >&5 + echo "$as_me:21260: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:21210: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:21263: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-gzip or --disable-dired-gzip was given. @@ -21229,11 +21282,11 @@ else EOF fi; - echo "$as_me:21232: result: $enableval" >&5 + echo "$as_me:21285: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:21236: checking if you want long-directory listings" >&5 +echo "$as_me:21289: checking if you want long-directory listings" >&5 echo $ECHO_N "checking if you want long-directory listings... $ECHO_C" >&6 # Check whether --enable-long-list or --disable-long-list was given. @@ -21255,10 +21308,10 @@ else EOF fi; -echo "$as_me:21258: result: $enableval" >&5 +echo "$as_me:21311: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:21261: checking if parent-directory references are permitted" >&5 +echo "$as_me:21314: checking if parent-directory references are permitted" >&5 echo $ECHO_N "checking if parent-directory references are permitted... $ECHO_C" >&6 # Check whether --enable-parent-dir-refs or --disable-parent-dir-refs was given. @@ -21274,7 +21327,7 @@ EOF else enableval=yes fi; -echo "$as_me:21277: result: $enableval" >&5 +echo "$as_me:21330: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -21282,7 +21335,7 @@ for ac_prog in $TELNET telnet do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21285: checking for $ac_word" >&5 +echo "$as_me:21338: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TELNET+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21299,7 +21352,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TELNET="$ac_dir/$ac_word" - echo "$as_me:21302: found $ac_dir/$ac_word" >&5 + echo "$as_me:21355: found $ac_dir/$ac_word" >&5 break fi done @@ -21310,10 +21363,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:21313: result: $TELNET" >&5 + echo "$as_me:21366: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:21316: result: no" >&5 + echo "$as_me:21369: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21338,6 +21391,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -21349,12 +21408,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -21375,7 +21434,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 21378) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 21437) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -21392,7 +21451,7 @@ for ac_prog in $TN3270 tn3270 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21395: checking for $ac_word" >&5 +echo "$as_me:21454: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TN3270+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21409,7 +21468,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TN3270="$ac_dir/$ac_word" - echo "$as_me:21412: found $ac_dir/$ac_word" >&5 + echo "$as_me:21471: found $ac_dir/$ac_word" >&5 break fi done @@ -21420,10 +21479,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:21423: result: $TN3270" >&5 + echo "$as_me:21482: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:21426: result: no" >&5 + echo "$as_me:21485: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21448,6 +21507,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -21459,12 +21524,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -21485,7 +21550,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 21488) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 21553) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -21502,7 +21567,7 @@ for ac_prog in $RLOGIN rlogin do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21505: checking for $ac_word" >&5 +echo "$as_me:21570: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_RLOGIN+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21519,7 +21584,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_RLOGIN="$ac_dir/$ac_word" - echo "$as_me:21522: found $ac_dir/$ac_word" >&5 + echo "$as_me:21587: found $ac_dir/$ac_word" >&5 break fi done @@ -21530,10 +21595,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:21533: result: $RLOGIN" >&5 + echo "$as_me:21598: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:21536: result: no" >&5 + echo "$as_me:21601: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21558,6 +21623,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -21569,12 +21640,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -21595,7 +21666,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 21598) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 21669) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -21612,7 +21683,7 @@ for ac_prog in $MV mv do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21615: checking for $ac_word" >&5 +echo "$as_me:21686: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MV+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21629,7 +21700,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_MV="$ac_dir/$ac_word" - echo "$as_me:21632: found $ac_dir/$ac_word" >&5 + echo "$as_me:21703: found $ac_dir/$ac_word" >&5 break fi done @@ -21640,10 +21711,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:21643: result: $MV" >&5 + echo "$as_me:21714: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:21646: result: no" >&5 + echo "$as_me:21717: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21668,6 +21739,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -21679,12 +21756,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -21705,7 +21782,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 21708) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 21785) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -21722,7 +21799,7 @@ for ac_prog in $GZIP gzip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21725: checking for $ac_word" >&5 +echo "$as_me:21802: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21739,7 +21816,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GZIP="$ac_dir/$ac_word" - echo "$as_me:21742: found $ac_dir/$ac_word" >&5 + echo "$as_me:21819: found $ac_dir/$ac_word" >&5 break fi done @@ -21750,10 +21827,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:21753: result: $GZIP" >&5 + echo "$as_me:21830: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:21756: result: no" >&5 + echo "$as_me:21833: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21778,6 +21855,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -21789,12 +21872,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -21815,7 +21898,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 21818) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 21901) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -21832,7 +21915,7 @@ for ac_prog in $UNCOMPRESS gunzip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21835: checking for $ac_word" >&5 +echo "$as_me:21918: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UNCOMPRESS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21849,7 +21932,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UNCOMPRESS="$ac_dir/$ac_word" - echo "$as_me:21852: found $ac_dir/$ac_word" >&5 + echo "$as_me:21935: found $ac_dir/$ac_word" >&5 break fi done @@ -21860,10 +21943,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:21863: result: $UNCOMPRESS" >&5 + echo "$as_me:21946: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:21866: result: no" >&5 + echo "$as_me:21949: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21888,6 +21971,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -21899,12 +21988,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -21925,7 +22014,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 21928) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22017) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -21942,7 +22031,7 @@ for ac_prog in $UNZIP unzip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:21945: checking for $ac_word" >&5 +echo "$as_me:22034: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UNZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21959,7 +22048,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UNZIP="$ac_dir/$ac_word" - echo "$as_me:21962: found $ac_dir/$ac_word" >&5 + echo "$as_me:22051: found $ac_dir/$ac_word" >&5 break fi done @@ -21970,10 +22059,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:21973: result: $UNZIP" >&5 + echo "$as_me:22062: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:21976: result: no" >&5 + echo "$as_me:22065: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -21998,6 +22087,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22009,12 +22104,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22035,7 +22130,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22038) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22133) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -22052,7 +22147,7 @@ for ac_prog in $BZIP2 bzip2 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22055: checking for $ac_word" >&5 +echo "$as_me:22150: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_BZIP2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22069,7 +22164,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_BZIP2="$ac_dir/$ac_word" - echo "$as_me:22072: found $ac_dir/$ac_word" >&5 + echo "$as_me:22167: found $ac_dir/$ac_word" >&5 break fi done @@ -22080,10 +22175,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:22083: result: $BZIP2" >&5 + echo "$as_me:22178: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:22086: result: no" >&5 + echo "$as_me:22181: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22108,6 +22203,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22119,12 +22220,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22145,7 +22246,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22148) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22249) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -22162,7 +22263,7 @@ for ac_prog in $TAR tar pax gtar gnutar bsdtar star do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22165: checking for $ac_word" >&5 +echo "$as_me:22266: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TAR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22179,7 +22280,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TAR="$ac_dir/$ac_word" - echo "$as_me:22182: found $ac_dir/$ac_word" >&5 + echo "$as_me:22283: found $ac_dir/$ac_word" >&5 break fi done @@ -22190,10 +22291,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:22193: result: $TAR" >&5 + echo "$as_me:22294: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:22196: result: no" >&5 + echo "$as_me:22297: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22218,6 +22319,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22229,12 +22336,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22255,7 +22362,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22258) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22365) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -22312,7 +22419,7 @@ for ac_prog in $COMPRESS compress do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22315: checking for $ac_word" >&5 +echo "$as_me:22422: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_COMPRESS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22329,7 +22436,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_COMPRESS="$ac_dir/$ac_word" - echo "$as_me:22332: found $ac_dir/$ac_word" >&5 + echo "$as_me:22439: found $ac_dir/$ac_word" >&5 break fi done @@ -22340,10 +22447,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:22343: result: $COMPRESS" >&5 + echo "$as_me:22450: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:22346: result: no" >&5 + echo "$as_me:22453: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22368,6 +22475,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22379,12 +22492,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22405,7 +22518,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22408) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22521) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -22422,7 +22535,7 @@ for ac_prog in $RM rm do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22425: checking for $ac_word" >&5 +echo "$as_me:22538: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_RM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22439,7 +22552,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_RM="$ac_dir/$ac_word" - echo "$as_me:22442: found $ac_dir/$ac_word" >&5 + echo "$as_me:22555: found $ac_dir/$ac_word" >&5 break fi done @@ -22450,10 +22563,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:22453: result: $RM" >&5 + echo "$as_me:22566: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:22456: result: no" >&5 + echo "$as_me:22569: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22478,6 +22591,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22489,12 +22608,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22515,7 +22634,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22518) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22637) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -22532,7 +22651,7 @@ for ac_prog in $UUDECODE uudecode do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22535: checking for $ac_word" >&5 +echo "$as_me:22654: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UUDECODE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22549,7 +22668,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UUDECODE="$ac_dir/$ac_word" - echo "$as_me:22552: found $ac_dir/$ac_word" >&5 + echo "$as_me:22671: found $ac_dir/$ac_word" >&5 break fi done @@ -22560,10 +22679,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:22563: result: $UUDECODE" >&5 + echo "$as_me:22682: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:22566: result: no" >&5 + echo "$as_me:22685: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22588,6 +22707,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22599,12 +22724,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22625,7 +22750,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22628) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22753) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -22642,7 +22767,7 @@ for ac_prog in $ZCAT zcat do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22645: checking for $ac_word" >&5 +echo "$as_me:22770: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ZCAT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22659,7 +22784,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ZCAT="$ac_dir/$ac_word" - echo "$as_me:22662: found $ac_dir/$ac_word" >&5 + echo "$as_me:22787: found $ac_dir/$ac_word" >&5 break fi done @@ -22670,10 +22795,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:22673: result: $ZCAT" >&5 + echo "$as_me:22798: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:22676: result: no" >&5 + echo "$as_me:22801: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22698,6 +22823,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22709,12 +22840,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22735,7 +22866,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22738) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22869) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -22752,7 +22883,7 @@ for ac_prog in $ZIP zip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22755: checking for $ac_word" >&5 +echo "$as_me:22886: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22769,7 +22900,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ZIP="$ac_dir/$ac_word" - echo "$as_me:22772: found $ac_dir/$ac_word" >&5 + echo "$as_me:22903: found $ac_dir/$ac_word" >&5 break fi done @@ -22780,10 +22911,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:22783: result: $ZIP" >&5 + echo "$as_me:22914: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:22786: result: no" >&5 + echo "$as_me:22917: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22808,6 +22939,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22819,12 +22956,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22845,7 +22982,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22848) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 22985) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -22872,7 +23009,7 @@ for ac_prog in $INSTALL install do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22875: checking for $ac_word" >&5 +echo "$as_me:23012: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_INSTALL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22889,7 +23026,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_INSTALL="$ac_dir/$ac_word" - echo "$as_me:22892: found $ac_dir/$ac_word" >&5 + echo "$as_me:23029: found $ac_dir/$ac_word" >&5 break fi done @@ -22900,10 +23037,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:22903: result: $INSTALL" >&5 + echo "$as_me:23040: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:22906: result: no" >&5 + echo "$as_me:23043: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22928,6 +23065,12 @@ do if test -z "$cf_path_prog" ; then if test "$with_full_paths" = yes ; then +if test "x$prefix" != xNONE; then + cf_path_syntax="$prefix" +else + cf_path_syntax="$ac_default_prefix" +fi + case ".$cf_temp" in #(vi .\$\(*\)*|.\'*\'*) #(vi ;; @@ -22939,12 +23082,12 @@ case ".$cf_temp" in #(vi eval cf_temp="$cf_temp" case ".$cf_temp" in #(vi .NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; esac ;; #(vi .no|.NONE/*) - cf_temp=`echo $cf_temp | sed -e s%NONE%$ac_default_prefix%` + cf_temp=`echo $cf_temp | sed -e s%NONE%$cf_path_syntax%` ;; *) break @@ -22965,7 +23108,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "(line 22968) testing defining path for ${cf_path_prog} ..." 1>&5 +echo "(line 23111) testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -22991,7 +23134,7 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:22994: checking for X" >&5 + echo "$as_me:23137: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -23088,17 +23231,17 @@ if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Intrinsic.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF -#line 23091 "configure" +#line 23234 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:23095: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:23238: \"$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:23101: \$? = $ac_status" >&5 + echo "$as_me:23244: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23131,7 +23274,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23134 "configure" +#line 23277 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -23143,16 +23286,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23146: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23289: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23149: \$? = $ac_status" >&5 + echo "$as_me:23292: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23152: \"$ac_try\"") >&5 + { (eval echo "$as_me:23295: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23155: \$? = $ac_status" >&5 + echo "$as_me:23298: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -23190,7 +23333,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:23193: result: $have_x" >&5 + echo "$as_me:23336: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -23200,7 +23343,7 @@ else # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" - echo "$as_me:23203: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:23346: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -23224,11 +23367,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:23227: checking whether -R must be followed by a space" >&5 + echo "$as_me:23370: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 23231 "configure" +#line 23374 "configure" #include "confdefs.h" int @@ -23240,16 +23383,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23243: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23386: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23246: \$? = $ac_status" >&5 + echo "$as_me:23389: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23249: \"$ac_try\"") >&5 + { (eval echo "$as_me:23392: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23252: \$? = $ac_status" >&5 + echo "$as_me:23395: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -23259,13 +23402,13 @@ ac_R_nospace=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then - echo "$as_me:23262: result: no" >&5 + echo "$as_me:23405: result: no" >&5 echo "${ECHO_T}no" >&6 X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 23268 "configure" +#line 23411 "configure" #include "confdefs.h" int @@ -23277,16 +23420,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23280: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23423: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23283: \$? = $ac_status" >&5 + echo "$as_me:23426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23286: \"$ac_try\"") >&5 + { (eval echo "$as_me:23429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23289: \$? = $ac_status" >&5 + echo "$as_me:23432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -23296,11 +23439,11 @@ ac_R_space=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then - echo "$as_me:23299: result: yes" >&5 + echo "$as_me:23442: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:23303: result: neither works" >&5 + echo "$as_me:23446: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -23320,7 +23463,7 @@ echo "${ECHO_T}neither works" >&6 # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF -#line 23323 "configure" +#line 23466 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23339,22 +23482,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23342: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23485: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23345: \$? = $ac_status" >&5 + echo "$as_me:23488: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23348: \"$ac_try\"") >&5 + { (eval echo "$as_me:23491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23351: \$? = $ac_status" >&5 + echo "$as_me:23494: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:23357: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:23500: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23362,7 +23505,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23365 "configure" +#line 23508 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23381,16 +23524,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23384: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23527: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23387: \$? = $ac_status" >&5 + echo "$as_me:23530: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23390: \"$ac_try\"") >&5 + { (eval echo "$as_me:23533: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23393: \$? = $ac_status" >&5 + echo "$as_me:23536: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -23401,14 +23544,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23404: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:23547: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then - echo "$as_me:23411: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:23554: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23416,7 +23559,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23419 "configure" +#line 23562 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23435,16 +23578,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23438: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23581: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23441: \$? = $ac_status" >&5 + echo "$as_me:23584: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23444: \"$ac_try\"") >&5 + { (eval echo "$as_me:23587: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23447: \$? = $ac_status" >&5 + echo "$as_me:23590: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -23455,7 +23598,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23458: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:23601: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" @@ -23474,13 +23617,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. - echo "$as_me:23477: checking for gethostbyname" >&5 + echo "$as_me:23620: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6 if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23483 "configure" +#line 23626 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -23511,16 +23654,16 @@ f = gethostbyname; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23514: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23657: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23517: \$? = $ac_status" >&5 + echo "$as_me:23660: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23520: \"$ac_try\"") >&5 + { (eval echo "$as_me:23663: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23523: \$? = $ac_status" >&5 + echo "$as_me:23666: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -23530,11 +23673,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23533: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:23676: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6 if test $ac_cv_func_gethostbyname = no; then - echo "$as_me:23537: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:23680: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23542,7 +23685,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23545 "configure" +#line 23688 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23561,16 +23704,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23564: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23707: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23567: \$? = $ac_status" >&5 + echo "$as_me:23710: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23570: \"$ac_try\"") >&5 + { (eval echo "$as_me:23713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23573: \$? = $ac_status" >&5 + echo "$as_me:23716: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -23581,14 +23724,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23584: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:23727: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then - echo "$as_me:23591: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:23734: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23596,7 +23739,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23599 "configure" +#line 23742 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23615,16 +23758,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23618: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23761: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23621: \$? = $ac_status" >&5 + echo "$as_me:23764: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23624: \"$ac_try\"") >&5 + { (eval echo "$as_me:23767: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23627: \$? = $ac_status" >&5 + echo "$as_me:23770: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -23635,7 +23778,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23638: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:23781: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6 if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" @@ -23651,13 +23794,13 @@ fi # variants that don't use the nameserver (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. - echo "$as_me:23654: checking for connect" >&5 + echo "$as_me:23797: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6 if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23660 "configure" +#line 23803 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -23688,16 +23831,16 @@ f = connect; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23691: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23834: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23694: \$? = $ac_status" >&5 + echo "$as_me:23837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23697: \"$ac_try\"") >&5 + { (eval echo "$as_me:23840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23700: \$? = $ac_status" >&5 + echo "$as_me:23843: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -23707,11 +23850,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23710: result: $ac_cv_func_connect" >&5 +echo "$as_me:23853: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6 if test $ac_cv_func_connect = no; then - echo "$as_me:23714: checking for connect in -lsocket" >&5 + echo "$as_me:23857: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23719,7 +23862,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23722 "configure" +#line 23865 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23738,16 +23881,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23741: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23884: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23744: \$? = $ac_status" >&5 + echo "$as_me:23887: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23747: \"$ac_try\"") >&5 + { (eval echo "$as_me:23890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23750: \$? = $ac_status" >&5 + echo "$as_me:23893: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -23758,7 +23901,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23761: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:23904: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6 if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" @@ -23767,13 +23910,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:23770: checking for remove" >&5 + echo "$as_me:23913: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6 if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23776 "configure" +#line 23919 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -23804,16 +23947,16 @@ f = remove; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23807: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23950: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23810: \$? = $ac_status" >&5 + echo "$as_me:23953: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23813: \"$ac_try\"") >&5 + { (eval echo "$as_me:23956: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23816: \$? = $ac_status" >&5 + echo "$as_me:23959: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -23823,11 +23966,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23826: result: $ac_cv_func_remove" >&5 +echo "$as_me:23969: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6 if test $ac_cv_func_remove = no; then - echo "$as_me:23830: checking for remove in -lposix" >&5 + echo "$as_me:23973: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6 if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23835,7 +23978,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23838 "configure" +#line 23981 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23854,16 +23997,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23857: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24000: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23860: \$? = $ac_status" >&5 + echo "$as_me:24003: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23863: \"$ac_try\"") >&5 + { (eval echo "$as_me:24006: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23866: \$? = $ac_status" >&5 + echo "$as_me:24009: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -23874,7 +24017,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23877: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:24020: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6 if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" @@ -23883,13 +24026,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:23886: checking for shmat" >&5 + echo "$as_me:24029: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6 if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23892 "configure" +#line 24035 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -23920,16 +24063,16 @@ f = shmat; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23923: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24066: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23926: \$? = $ac_status" >&5 + echo "$as_me:24069: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23929: \"$ac_try\"") >&5 + { (eval echo "$as_me:24072: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23932: \$? = $ac_status" >&5 + echo "$as_me:24075: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -23939,11 +24082,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23942: result: $ac_cv_func_shmat" >&5 +echo "$as_me:24085: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6 if test $ac_cv_func_shmat = no; then - echo "$as_me:23946: checking for shmat in -lipc" >&5 + echo "$as_me:24089: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6 if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23951,7 +24094,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23954 "configure" +#line 24097 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23970,16 +24113,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23973: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24116: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23976: \$? = $ac_status" >&5 + echo "$as_me:24119: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23979: \"$ac_try\"") >&5 + { (eval echo "$as_me:24122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23982: \$? = $ac_status" >&5 + echo "$as_me:24125: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -23990,7 +24133,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23993: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:24136: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6 if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" @@ -24008,7 +24151,7 @@ fi # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry - echo "$as_me:24011: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:24154: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24016,7 +24159,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24019 "configure" +#line 24162 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24035,16 +24178,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24181: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24041: \$? = $ac_status" >&5 + echo "$as_me:24184: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24044: \"$ac_try\"") >&5 + { (eval echo "$as_me:24187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24047: \$? = $ac_status" >&5 + echo "$as_me:24190: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -24055,7 +24198,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24058: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:24201: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" @@ -24149,7 +24292,7 @@ fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 24152 "configure" +#line 24295 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24161,16 +24304,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24164: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24307: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24167: \$? = $ac_status" >&5 + echo "$as_me:24310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24170: \"$ac_try\"") >&5 + { (eval echo "$as_me:24313: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24173: \$? = $ac_status" >&5 + echo "$as_me:24316: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24187,13 +24330,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24190: checking for XOpenDisplay" >&5 +echo "$as_me:24333: checking for XOpenDisplay" >&5 echo $ECHO_N "checking for XOpenDisplay... $ECHO_C" >&6 if test "${ac_cv_func_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24196 "configure" +#line 24339 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -24224,16 +24367,16 @@ f = XOpenDisplay; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24227: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24370: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24230: \$? = $ac_status" >&5 + echo "$as_me:24373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24233: \"$ac_try\"") >&5 + { (eval echo "$as_me:24376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24236: \$? = $ac_status" >&5 + echo "$as_me:24379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -24243,13 +24386,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24246: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:24389: result: $ac_cv_func_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_func_XOpenDisplay" >&6 if test $ac_cv_func_XOpenDisplay = yes; then : else -echo "$as_me:24252: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:24395: checking for XOpenDisplay in -lX11" >&5 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24257,7 +24400,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24260 "configure" +#line 24403 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24276,16 +24419,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24279: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24422: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24282: \$? = $ac_status" >&5 + echo "$as_me:24425: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24285: \"$ac_try\"") >&5 + { (eval echo "$as_me:24428: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24288: \$? = $ac_status" >&5 + echo "$as_me:24431: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -24296,7 +24439,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24299: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:24442: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" @@ -24304,13 +24447,13 @@ fi fi -echo "$as_me:24307: checking for XtAppInitialize" >&5 +echo "$as_me:24450: checking for XtAppInitialize" >&5 echo $ECHO_N "checking for XtAppInitialize... $ECHO_C" >&6 if test "${ac_cv_func_XtAppInitialize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24313 "configure" +#line 24456 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -24341,16 +24484,16 @@ f = XtAppInitialize; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24344: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24347: \$? = $ac_status" >&5 + echo "$as_me:24490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24350: \"$ac_try\"") >&5 + { (eval echo "$as_me:24493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24353: \$? = $ac_status" >&5 + echo "$as_me:24496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -24360,13 +24503,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24363: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:24506: result: $ac_cv_func_XtAppInitialize" >&5 echo "${ECHO_T}$ac_cv_func_XtAppInitialize" >&6 if test $ac_cv_func_XtAppInitialize = yes; then : else -echo "$as_me:24369: checking for XtAppInitialize in -lXt" >&5 +echo "$as_me:24512: checking for XtAppInitialize in -lXt" >&5 echo $ECHO_N "checking for XtAppInitialize in -lXt... $ECHO_C" >&6 if test "${ac_cv_lib_Xt_XtAppInitialize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24374,7 +24517,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24377 "configure" +#line 24520 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24393,16 +24536,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24396: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24539: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24399: \$? = $ac_status" >&5 + echo "$as_me:24542: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24402: \"$ac_try\"") >&5 + { (eval echo "$as_me:24545: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24405: \$? = $ac_status" >&5 + echo "$as_me:24548: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -24413,7 +24556,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24416: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:24559: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6 if test $ac_cv_lib_Xt_XtAppInitialize = yes; then cat >>confdefs.h <<\EOF @@ -24427,7 +24570,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:24430: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:24573: WARNING: Unable to successfully link X Toolkit library (-lXt) with test program. You will have to check and add the proper libraries by hand to makefile." >&5 echo "$as_me: WARNING: Unable to successfully link X Toolkit library (-lXt) with @@ -24437,7 +24580,7 @@ fi cf_x_athena=${cf_x_athena-Xaw} -echo "$as_me:24440: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:24583: checking if you want to link with Xaw 3d library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d library... $ECHO_C" >&6 withval= @@ -24448,14 +24591,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:24451: result: yes" >&5 + echo "$as_me:24594: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:24454: result: no" >&5 + echo "$as_me:24597: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:24458: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:24601: checking if you want to link with neXT Athena library" >&5 echo $ECHO_N "checking if you want to link with neXT Athena library... $ECHO_C" >&6 withval= @@ -24466,14 +24609,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:24469: result: yes" >&5 + echo "$as_me:24612: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:24472: result: no" >&5 + echo "$as_me:24615: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:24476: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:24619: checking if you want to link with Athena-Plus library" >&5 echo $ECHO_N "checking if you want to link with Athena-Plus library... $ECHO_C" >&6 withval= @@ -24484,14 +24627,14 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:24487: result: yes" >&5 + echo "$as_me:24630: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:24490: result: no" >&5 + echo "$as_me:24633: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:24494: checking for XextCreateExtension in -lXext" >&5 +echo "$as_me:24637: checking for XextCreateExtension in -lXext" >&5 echo $ECHO_N "checking for XextCreateExtension in -lXext... $ECHO_C" >&6 if test "${ac_cv_lib_Xext_XextCreateExtension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24499,7 +24642,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24502 "configure" +#line 24645 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24518,16 +24661,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24521: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24664: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24524: \$? = $ac_status" >&5 + echo "$as_me:24667: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24527: \"$ac_try\"") >&5 + { (eval echo "$as_me:24670: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24530: \$? = $ac_status" >&5 + echo "$as_me:24673: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -24538,7 +24681,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24541: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:24684: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then LIBS="-lXext $LIBS" @@ -24560,14 +24703,14 @@ do cf_test=X11/$cf_x_athena_root/SimpleMenu.h if test $cf_path != default ; then CPPFLAGS="-I$cf_path/include $cf_save" - echo "$as_me:24563: checking for $cf_test in $cf_path" >&5 + echo "$as_me:24706: checking for $cf_test in $cf_path" >&5 echo $ECHO_N "checking for $cf_test in $cf_path... $ECHO_C" >&6 else - echo "$as_me:24566: checking for $cf_test" >&5 + echo "$as_me:24709: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 24570 "configure" +#line 24713 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -24581,16 +24724,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24584: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24727: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24587: \$? = $ac_status" >&5 + echo "$as_me:24730: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24590: \"$ac_try\"") >&5 + { (eval echo "$as_me:24733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24593: \$? = $ac_status" >&5 + echo "$as_me:24736: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24599,7 +24742,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:24602: result: $cf_result" >&5 + echo "$as_me:24745: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_include=$cf_path @@ -24611,7 +24754,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_include" ; then - { echo "$as_me:24614: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:24757: WARNING: Unable to successfully find Athena header files with test program" >&5 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;} elif test "$cf_x_athena_include" != default ; then CPPFLAGS="$CPPFLAGS -I$cf_x_athena_include" @@ -24636,17 +24779,17 @@ do cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_lib $LIBS" - echo "$as_me:24639: checking for $cf_lib in $cf_path" >&5 + echo "$as_me:24782: checking for $cf_lib in $cf_path" >&5 echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6 else LIBS="$cf_lib $LIBS" - echo "$as_me:24643: checking for $cf_test in $cf_lib" >&5 + echo "$as_me:24786: checking for $cf_test in $cf_lib" >&5 echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6 fi cf_SAVE="$LIBS" LIBS="$X_PRE_LIBS $LIBS $X_EXTRA_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24649 "configure" +#line 24792 "configure" #include "confdefs.h" int @@ -24658,16 +24801,16 @@ $cf_test() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24661: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24804: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24664: \$? = $ac_status" >&5 + echo "$as_me:24807: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24667: \"$ac_try\"") >&5 + { (eval echo "$as_me:24810: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24670: \$? = $ac_status" >&5 + echo "$as_me:24813: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24676,7 +24819,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:24679: result: $cf_result" >&5 + echo "$as_me:24822: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_lib" @@ -24690,7 +24833,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:24693: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:24836: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 echo "$as_me: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&2;} { (exit 1); exit 1; }; } fi @@ -24781,7 +24924,7 @@ fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 24784 "configure" +#line 24927 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24793,16 +24936,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24939: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24799: \$? = $ac_status" >&5 + echo "$as_me:24942: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24802: \"$ac_try\"") >&5 + { (eval echo "$as_me:24945: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24805: \$? = $ac_status" >&5 + echo "$as_me:24948: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24819,7 +24962,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24822: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:24965: checking for XOpenDisplay in -lX11" >&5 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24827,7 +24970,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24830 "configure" +#line 24973 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24846,16 +24989,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24849: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24992: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24852: \$? = $ac_status" >&5 + echo "$as_me:24995: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24855: \"$ac_try\"") >&5 + { (eval echo "$as_me:24998: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24858: \$? = $ac_status" >&5 + echo "$as_me:25001: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -24866,13 +25009,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24869: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:25012: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" fi -echo "$as_me:24875: checking for XCurses library" >&5 +echo "$as_me:25018: checking for XCurses library" >&5 echo $ECHO_N "checking for XCurses library... $ECHO_C" >&6 if test "${cf_cv_lib_XCurses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24880,7 +25023,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24883 "configure" +#line 25026 "configure" #include "confdefs.h" #include <xcurses.h> @@ -24895,16 +25038,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24898: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25041: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24901: \$? = $ac_status" >&5 + echo "$as_me:25044: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24904: \"$ac_try\"") >&5 + { (eval echo "$as_me:25047: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24907: \$? = $ac_status" >&5 + echo "$as_me:25050: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -24915,7 +25058,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24918: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:25061: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 if test $cf_cv_lib_XCurses = yes ; then cat >>confdefs.h <<\EOF @@ -24931,14 +25074,14 @@ EOF EOF else - { { echo "$as_me:24934: error: Cannot link with XCurses" >&5 + { { echo "$as_me:25077: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi else -echo "$as_me:24941: checking if we can include termio.h with curses" >&5 +echo "$as_me:25084: checking if we can include termio.h with curses" >&5 echo $ECHO_N "checking if we can include termio.h with curses... $ECHO_C" >&6 if test "${cf_cv_termio_and_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24948,7 +25091,7 @@ else CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation" touch lynx_cfg.h cat >conftest.$ac_ext <<_ACEOF -#line 24951 "configure" +#line 25094 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -24962,16 +25105,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24965: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24968: \$? = $ac_status" >&5 + echo "$as_me:25111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24971: \"$ac_try\"") >&5 + { (eval echo "$as_me:25114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24974: \$? = $ac_status" >&5 + echo "$as_me:25117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -24984,7 +25127,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:24987: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:25130: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && cat >>confdefs.h <<\EOF @@ -24999,23 +25142,23 @@ if test $cf_cv_screen != slang ; then for ac_header in $cf_cv_screen/term.h term.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25002: checking for $ac_header" >&5 +echo "$as_me:25145: 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 25008 "configure" +#line 25151 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25012: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25155: \"$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:25018: \$? = $ac_status" >&5 + echo "$as_me:25161: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25034,7 +25177,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25037: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25180: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -25044,7 +25187,7 @@ EOF fi done -echo "$as_me:25047: checking if curses supports alternate-character set" >&5 +echo "$as_me:25190: checking if curses supports alternate-character set" >&5 echo $ECHO_N "checking if curses supports alternate-character set... $ECHO_C" >&6 if test "${cf_cv_alt_char_set+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25053,7 +25196,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 25056 "configure" +#line 25199 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25067,16 +25210,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25070: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25213: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25073: \$? = $ac_status" >&5 + echo "$as_me:25216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25076: \"$ac_try\"") >&5 + { (eval echo "$as_me:25219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25079: \$? = $ac_status" >&5 + echo "$as_me:25222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -25090,20 +25233,20 @@ done fi -echo "$as_me:25093: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:25236: result: $cf_cv_alt_char_set" >&5 echo "${ECHO_T}$cf_cv_alt_char_set" >&6 test $cf_cv_alt_char_set != no && cat >>confdefs.h <<EOF #define ALT_CHAR_SET $cf_cv_alt_char_set EOF -echo "$as_me:25099: checking if curses supports fancy attributes" >&5 +echo "$as_me:25242: checking if curses supports fancy attributes" >&5 echo $ECHO_N "checking if curses supports fancy attributes... $ECHO_C" >&6 if test "${cf_cv_fancy_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25106 "configure" +#line 25249 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25121,16 +25264,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25124: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25267: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25127: \$? = $ac_status" >&5 + echo "$as_me:25270: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25130: \"$ac_try\"") >&5 + { (eval echo "$as_me:25273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25133: \$? = $ac_status" >&5 + echo "$as_me:25276: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -25142,13 +25285,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25145: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:25288: result: $cf_cv_fancy_curses" >&5 echo "${ECHO_T}$cf_cv_fancy_curses" >&6 test $cf_cv_fancy_curses = yes && cat >>confdefs.h <<\EOF #define FANCY_CURSES 1 EOF -echo "$as_me:25151: checking for function curses_version" >&5 +echo "$as_me:25294: checking for function curses_version" >&5 echo $ECHO_N "checking for function curses_version... $ECHO_C" >&6 if test "${cf_cv_func_curses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25158,7 +25301,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 25161 "configure" +#line 25304 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25171,15 +25314,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25174: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25317: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25177: \$? = $ac_status" >&5 + echo "$as_me:25320: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25179: \"$ac_try\"") >&5 + { (eval echo "$as_me:25322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25182: \$? = $ac_status" >&5 + echo "$as_me:25325: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -25194,21 +25337,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:25197: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:25340: result: $cf_cv_func_curses_version" >&5 echo "${ECHO_T}$cf_cv_func_curses_version" >&6 test "$cf_cv_func_curses_version" = yes && cat >>confdefs.h <<\EOF #define HAVE_CURSES_VERSION 1 EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:25204: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:25347: checking for obsolete/broken version of ncurses" >&5 echo $ECHO_N "checking for obsolete/broken version of ncurses... $ECHO_C" >&6 if test "${cf_cv_ncurses_broken+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25211 "configure" +#line 25354 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25227,16 +25370,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25230: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25373: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25233: \$? = $ac_status" >&5 + echo "$as_me:25376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25236: \"$ac_try\"") >&5 + { (eval echo "$as_me:25379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25239: \$? = $ac_status" >&5 + echo "$as_me:25382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -25248,10 +25391,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25251: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:25394: result: $cf_cv_ncurses_broken" >&5 echo "${ECHO_T}$cf_cv_ncurses_broken" >&6 if test "$cf_cv_ncurses_broken" = yes ; then - { echo "$as_me:25254: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:25397: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 echo "$as_me: WARNING: hmm... you should get an up-to-date version of ncurses" >&2;} cat >>confdefs.h <<\EOF #define NCURSES_BROKEN 1 @@ -25260,14 +25403,14 @@ EOF fi fi -echo "$as_me:25263: checking if curses supports color attributes" >&5 +echo "$as_me:25406: checking if curses supports color attributes" >&5 echo $ECHO_N "checking if curses supports color attributes... $ECHO_C" >&6 if test "${cf_cv_color_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25270 "configure" +#line 25413 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25287,16 +25430,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25290: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25433: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25293: \$? = $ac_status" >&5 + echo "$as_me:25436: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25296: \"$ac_try\"") >&5 + { (eval echo "$as_me:25439: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25299: \$? = $ac_status" >&5 + echo "$as_me:25442: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -25308,7 +25451,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25311: result: $cf_cv_color_curses" >&5 +echo "$as_me:25454: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then cat >>confdefs.h <<\EOF @@ -25328,23 +25471,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25331: checking for $ac_header" >&5 +echo "$as_me:25474: 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 25337 "configure" +#line 25480 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25341: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25484: \"$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:25347: \$? = $ac_status" >&5 + echo "$as_me:25490: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25363,7 +25506,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25366: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25509: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -25378,23 +25521,23 @@ if test "$ISC" = yes ; then for ac_header in sys/termio.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25381: checking for $ac_header" >&5 +echo "$as_me:25524: 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 25387 "configure" +#line 25530 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25391: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25534: \"$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:25397: \$? = $ac_status" >&5 + echo "$as_me:25540: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25413,7 +25556,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25416: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25559: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -25431,10 +25574,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:25434: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:25577: 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 25437 "configure" +#line 25580 "configure" #include "confdefs.h" #include <termios.h> int @@ -25446,16 +25589,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25449: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25592: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25452: \$? = $ac_status" >&5 + echo "$as_me:25595: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25455: \"$ac_try\"") >&5 + { (eval echo "$as_me:25598: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25458: \$? = $ac_status" >&5 + echo "$as_me:25601: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -25463,7 +25606,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25466 "configure" +#line 25609 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -25477,16 +25620,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25480: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25623: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25483: \$? = $ac_status" >&5 + echo "$as_me:25626: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25486: \"$ac_try\"") >&5 + { (eval echo "$as_me:25629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25489: \$? = $ac_status" >&5 + echo "$as_me:25632: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -25501,12 +25644,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:25504: result: $termios_bad" >&5 + echo "$as_me:25647: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:25509: checking declaration of size-change" >&5 +echo "$as_me:25652: 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 @@ -25521,7 +25664,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 25524 "configure" +#line 25667 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -25565,16 +25708,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25568: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25711: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25571: \$? = $ac_status" >&5 + echo "$as_me:25714: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25574: \"$ac_try\"") >&5 + { (eval echo "$as_me:25717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25577: \$? = $ac_status" >&5 + echo "$as_me:25720: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -25593,7 +25736,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25596: result: $cf_cv_sizechange" >&5 +echo "$as_me:25739: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then cat >>confdefs.h <<\EOF @@ -25610,14 +25753,14 @@ EOF esac fi -echo "$as_me:25613: checking if ttytype is declared in curses library" >&5 +echo "$as_me:25756: checking if ttytype is declared in curses library" >&5 echo $ECHO_N "checking if ttytype is declared in curses library... $ECHO_C" >&6 if test "${cf_cv_have_ttytype+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25620 "configure" +#line 25763 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -25629,16 +25772,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25632: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25775: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25635: \$? = $ac_status" >&5 + echo "$as_me:25778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25638: \"$ac_try\"") >&5 + { (eval echo "$as_me:25781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25641: \$? = $ac_status" >&5 + echo "$as_me:25784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -25650,20 +25793,22 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25653: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:25796: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF #define HAVE_TTYTYPE 1 EOF -echo "$as_me:25659: checking if curses supports wide characters" >&5 + if test "$use_wide_curses" = yes ; then + +echo "$as_me:25804: checking if curses supports wide characters" >&5 echo $ECHO_N "checking if curses supports wide characters... $ECHO_C" >&6 if test "${cf_cv_widec_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25666 "configure" +#line 25811 "configure" #include "confdefs.h" #include <stdlib.h> @@ -25682,16 +25827,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25685: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25830: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25688: \$? = $ac_status" >&5 + echo "$as_me:25833: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25691: \"$ac_try\"") >&5 + { (eval echo "$as_me:25836: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25694: \$? = $ac_status" >&5 + echo "$as_me:25839: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -25702,7 +25847,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25705: result: $cf_cv_widec_curses" >&5 +echo "$as_me:25850: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -25711,14 +25856,14 @@ if test "$cf_cv_widec_curses" = yes ; then EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:25714: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:25859: checking if we must include wchar.h to declare mbstate_t" >&5 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6 if test "${cf_cv_widec_mbstate+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25721 "configure" +#line 25866 "configure" #include "confdefs.h" #include <stdlib.h> @@ -25732,23 +25877,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25735: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25880: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25738: \$? = $ac_status" >&5 + echo "$as_me:25883: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25741: \"$ac_try\"") >&5 + { (eval echo "$as_me:25886: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25744: \$? = $ac_status" >&5 + echo "$as_me:25889: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25751 "configure" +#line 25896 "configure" #include "confdefs.h" #include <stdlib.h> @@ -25763,16 +25908,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25766: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25911: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25769: \$? = $ac_status" >&5 + echo "$as_me:25914: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25772: \"$ac_try\"") >&5 + { (eval echo "$as_me:25917: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25775: \$? = $ac_status" >&5 + echo "$as_me:25920: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -25784,7 +25929,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25787: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:25932: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -25803,14 +25948,16 @@ fi fi -echo "$as_me:25806: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 + fi + +echo "$as_me:25953: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25813 "configure" +#line 25960 "configure" #include "confdefs.h" #include <stdlib.h> @@ -25827,23 +25974,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25830: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25977: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25833: \$? = $ac_status" >&5 + echo "$as_me:25980: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25836: \"$ac_try\"") >&5 + { (eval echo "$as_me:25983: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25839: \$? = $ac_status" >&5 + echo "$as_me:25986: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25846 "configure" +#line 25993 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -25861,16 +26008,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25864: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26011: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25867: \$? = $ac_status" >&5 + echo "$as_me:26014: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25870: \"$ac_try\"") >&5 + { (eval echo "$as_me:26017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25873: \$? = $ac_status" >&5 + echo "$as_me:26020: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -25882,11 +26029,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25885: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:26032: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" -echo "$as_me:25889: checking for term.h" >&5 +echo "$as_me:26036: checking for term.h" >&5 echo $ECHO_N "checking for term.h... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25899,7 +26046,7 @@ for cf_header in \ term.h do cat >conftest.$ac_ext <<_ACEOF -#line 25902 "configure" +#line 26049 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25913,16 +26060,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25916: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26063: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25919: \$? = $ac_status" >&5 + echo "$as_me:26066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25922: \"$ac_try\"") >&5 + { (eval echo "$as_me:26069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25925: \$? = $ac_status" >&5 + echo "$as_me:26072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -25935,7 +26082,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25938: result: $cf_cv_term_header" >&5 +echo "$as_me:26085: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -25986,10 +26133,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:25989: checking for ${cf_func}" >&5 + echo "$as_me:26136: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "(line 25992) testing ${cf_func} ..." 1>&5 +echo "(line 26139) testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25998,7 +26145,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 26001 "configure" +#line 26148 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -26032,16 +26179,16 @@ exit(foo == 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26035: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26182: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26038: \$? = $ac_status" >&5 + echo "$as_me:26185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26041: \"$ac_try\"") >&5 + { (eval echo "$as_me:26188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26044: \$? = $ac_status" >&5 + echo "$as_me:26191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -26057,7 +26204,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:26060: result: $cf_result" >&5 + echo "$as_me:26207: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -26071,12 +26218,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:26074: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:26221: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi if test $cf_cv_screen = slang ; then - { { echo "$as_me:26079: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:26226: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -26084,7 +26231,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:26087: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:26234: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else cat >>confdefs.h <<\EOF @@ -26189,7 +26336,7 @@ DEFS=-DHAVE_CONFIG_H : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:26192: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:26339: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -26365,7 +26512,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:26368: error: ambiguous option: $1 + { { echo "$as_me:26515: 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;} @@ -26384,7 +26531,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:26387: error: unrecognized option: $1 + -*) { { echo "$as_me:26534: 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;} @@ -26437,7 +26584,7 @@ do "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; "$CONFIG_H" ) CONFIG_HEADERS="$CONFIG_HEADERS $CONFIG_H:config.hin" ;; - *) { { echo "$as_me:26440: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:26587: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -26751,7 +26898,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:26754: creating $ac_file" >&5 + { echo "$as_me:26901: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -26769,7 +26916,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:26772: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:26919: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -26782,7 +26929,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:26785: error: cannot find input file: $f" >&5 + { { echo "$as_me:26932: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -26848,7 +26995,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:26851: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:26998: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -26859,7 +27006,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:26862: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:27009: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -26872,7 +27019,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:26875: error: cannot find input file: $f" >&5 + { { echo "$as_me:27022: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -26990,7 +27137,7 @@ cat >>$CONFIG_STATUS <<\EOF rm -f $tmp/in if test x"$ac_file" != x-; then if cmp -s $ac_file $tmp/config.h 2>/dev/null; then - { echo "$as_me:26993: $ac_file is unchanged" >&5 + { echo "$as_me:27140: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index 05334d53..659103a1 100644 --- a/configure.in +++ b/configure.in @@ -25,7 +25,7 @@ dnl --------------------------------------------------------------------------- dnl dnl ask PRCS to plug-in the project-version for the configure-script. dnl $Format: "AC_REVISION($ProjectVersion$)"$ -AC_REVISION(2.8.6dev.19) +AC_REVISION(2.8.6pre.2) # Save the original $CFLAGS so we can distinguish whether the user set those # in the environment, or whether autoconf added -O and -g options: @@ -57,7 +57,7 @@ AC_ARG_WITH(system-type, PACKAGE=lynx dnl ask PRCS to plug-in the project-version for the packages. # $Format: "VERSION=$ProjectVersion$"$ -VERSION=2.8.6dev.19 +VERSION=2.8.6pre.2 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_SUBST(DESTDIR) @@ -500,8 +500,8 @@ CF_WITH_PATH(cfg-file, [ --with-cfg-file{=path} specify the default configuration file ], LYNX_CFG_FILE, -LIBDIR/lynx.cfg, -$libdir/lynx.cfg) +SYSCONFDIR/lynx.cfg, +$sysconfdir/lynx.cfg) AC_MSG_RESULT($LYNX_CFG_FILE) @@ -748,8 +748,8 @@ CF_WITH_PATH(lss-file, [ --with-lss-file{=path} specify the default style-sheet file ], LYNX_LSS_FILE, -LIBDIR/lynx.lss, -$libdir/lynx.lss) +SYSCONFDIR/lynx.lss, +$sysconfdir/lynx.lss) AC_MSG_RESULT($LYNX_LSS_FILE) diff --git a/docs/OS-390.announce b/docs/OS-390.announce index d6086978..e28767de 100644 --- a/docs/OS-390.announce +++ b/docs/OS-390.announce @@ -43,7 +43,7 @@ o Run the configure script: The definitions select the ANSI C compiler (c89) and options to select the right header file directories. You may also find it useful to set the installation directories with - the --prefix=, --libdir=, and --exec_prefix= options. + the --prefix=, --sysconfdir=, and --exec_prefix= options. ======================================================================== o Build Lynx diff --git a/lynx.cfg b/lynx.cfg index a3e3f28c..5e0cc97d 100644 --- a/lynx.cfg +++ b/lynx.cfg @@ -3,10 +3,10 @@ # or Lynx_Dir:lynx.cfg (VMS) # # $Format: "#PRCS LYNX_VERSION \"$ProjectVersion$\""$ -#PRCS LYNX_VERSION "2.8.6dev.19" +#PRCS LYNX_VERSION "2.8.6pre.2" # # $Format: "#PRCS LYNX_DATE \"$ProjectDate$\""$ -#PRCS LYNX_DATE "Thu, 31 Aug 2006 16:37:53 -0700" +#PRCS LYNX_DATE "Sun, 03 Sep 2006 16:25:39 -0700" # # Definition pairs are of the form VARIABLE:DEFINITION # NO spaces are allowed between the pair items. diff --git a/makefile.in b/makefile.in index 819bc3f1..e83c11dc 100644 --- a/makefile.in +++ b/makefile.in @@ -56,15 +56,15 @@ mandir= @mandir@/man1 MANDIR= $(DESTDIR)$(mandir) ## Where you want the lynx.cfg file installed -libdir= @libdir@ -LIBDIR= $(DESTDIR)$(libdir) +sysconfdir= @sysconfdir@ +SYSCONFDIR= $(DESTDIR)$(sysconfdir) ## Where you want the doc-files installed -docdir= @libdir@/lynx_doc +docdir= @datadir@/lynx_doc DOCDIR= $(DESTDIR)$(docdir) ## Where you want the help-files installed -helpdir= @libdir@/lynx_help +helpdir= @datadir@/lynx_help HELPDIR= $(DESTDIR)$(helpdir) ##set the relative location of the WWW library Implementation directory, @@ -360,23 +360,23 @@ install-help : help_files.sed $(HELPDIR) if test "$(COMPRESS_PROG)" != "" ; then \ (cd $(HELPDIR) && $(COMPRESS_PROG) $$files ) \ fi' - @echo Updating $(libdir)/lynx.cfg - @ECHO_CC@$(SHELL) -c 'if test -f $(LIBDIR)/lynx.cfg ; then \ - mv $(LIBDIR)/lynx.cfg $(LIBDIR)/lynx.tmp ; \ + @echo Updating $(sysconfdir)/lynx.cfg + @ECHO_CC@$(SHELL) -c 'if test -f $(SYSCONFDIR)/lynx.cfg ; then \ + mv $(SYSCONFDIR)/lynx.cfg $(SYSCONFDIR)/lynx.tmp ; \ else \ - cp $(srcdir)/lynx.cfg $(LIBDIR)/lynx.tmp ; \ + cp $(srcdir)/lynx.cfg $(SYSCONFDIR)/lynx.tmp ; \ fi' - @echo Updating $(libdir)/lynx.cfg to point to installed help-files + @echo Updating $(sysconfdir)/lynx.cfg to point to installed help-files @ECHO_CC@sed -e '/^HELPFILE:http/s!^!#!' \ -e '/^#HELPFILE:file/s!#!!' \ - $(LIBDIR)/lynx.tmp | \ + $(SYSCONFDIR)/lynx.tmp | \ $(SHELL) $(scripts_dir)/cfg_path.sh lynx_help $(helpdir) | \ $(SHELL) $(scripts_dir)/cfg_path.sh lynx_doc $(helpdir) | \ sed -e '/^HELPFILE:file/s!$$!$(COMPRESS_EXT)!' \ -e '/^HELPFILE:file/s!$(COMPRESS_EXT)$(COMPRESS_EXT)$$!$(COMPRESS_EXT)!' \ - >$(LIBDIR)/lynx.cfg - chmod 644 $(LIBDIR)/lynx.cfg - -rm -f $(LIBDIR)/lynx.tmp + >$(SYSCONFDIR)/lynx.cfg + chmod 644 $(SYSCONFDIR)/lynx.cfg + -rm -f $(SYSCONFDIR)/lynx.tmp LYHelp.h : help_files.sed LYHelp.hin @echo Creating $@ @@ -397,19 +397,19 @@ cfg_defs.h : $(scripts_dir)/cfg_defs.sh $(scripts_dir)/cfg_edit.sh config.cache @rm -f $@ $(SHELL) -c 'SHELL=$(SHELL) $(SHELL) $(scripts_dir)/cfg_defs.sh $(srcdir)' -install-cfg : $(LIBDIR) - @$(SHELL) $(scripts_dir)/install-cfg.sh "$(INSTALL_DATA)" $(srcdir)/lynx.cfg $(LIBDIR)/lynx.cfg +install-cfg : $(SYSCONFDIR) + @$(SHELL) $(scripts_dir)/install-cfg.sh "$(INSTALL_DATA)" $(srcdir)/lynx.cfg $(SYSCONFDIR)/lynx.cfg -install-lss : $(LIBDIR) - -mv -f $(LIBDIR)/lynx.lss $(LIBDIR)/lynx.oldlss - $(INSTALL_DATA) $(srcdir)/samples/lynx.lss $(LIBDIR)/lynx.lss +install-lss : $(SYSCONFDIR) + -mv -f $(SYSCONFDIR)/lynx.lss $(SYSCONFDIR)/lynx.oldlss + $(INSTALL_DATA) $(srcdir)/samples/lynx.lss $(SYSCONFDIR)/lynx.lss uninstall :: @MSG_DIR_MAKE@ cd po && $(MAKE) CC="$(CC)" uninstall -rm -f $(BINDIR)/lynx$x -rm -f $(MANDIR)/lynx.1 - -rm -f $(LIBDIR)/lynx.cfg - -rm -f $(LIBDIR)/lynx.lss + -rm -f $(SYSCONFDIR)/lynx.cfg + -rm -f $(SYSCONFDIR)/lynx.lss uninstall \ uninstall-help :: @@ -422,7 +422,7 @@ uninstall-doc :: $(BINDIR) \ $(MANDIR) \ -$(LIBDIR) \ +$(SYSCONFDIR) \ $(HELPDIR) \ $(DOCDIR) : $(SHELL) $(MKINSTALLDIRS) $@ diff --git a/src/GridText.c b/src/GridText.c index bbf1b8a2..c1b93045 100644 --- a/src/GridText.c +++ b/src/GridText.c @@ -1378,7 +1378,7 @@ static int display_line(HTLine *line, * the output line wraps, foiling our attempt to just use newlines to * advance to the next page. */ - wmove(LYwin, scrline + TITLE_LINES - 1, 0); + LYmove(scrline + TITLE_LINES - 1, 0); #endif /* diff --git a/src/LYCgi.c b/src/LYCgi.c index 1969b227..1d078025 100644 --- a/src/LYCgi.c +++ b/src/LYCgi.c @@ -728,6 +728,12 @@ static int LYLoadCGI(const char *arg, HTUserMsg(CGI_NOT_COMPILED); status = HT_NOT_LOADED; #endif /* LYNXCGI_LINKS */ + + (void) arg; + (void) anAnchor; + (void) format_out; + (void) sink; + return (status); } #endif /* __MINGW32__ */ diff --git a/src/LYCurses.c b/src/LYCurses.c index 9a7532fc..cbe949e1 100644 --- a/src/LYCurses.c +++ b/src/LYCurses.c @@ -80,7 +80,8 @@ static void make_blink_boldbg(void); #endif #if defined(USE_COLOR_TABLE) || defined(USE_SLANG) -static int Current_Attr, Masked_Attr; +int Current_Attr; +static int Masked_Attr; #endif #ifdef USE_SLANG @@ -1418,46 +1419,43 @@ void stop_curses(void) #if defined(PDCURSES) && defined(PDC_BUILD) && PDC_BUILD >= 2401 resetty(); #endif + #ifdef __DJGPP__ _eth_release(); #endif /* __DJGPP__ */ #if defined(DOSPATH) && !(defined(USE_SLANG) || defined(_WIN_CC)) +#if defined(PDCURSES) + endwin(); +#else /* !PDCURSES */ #ifdef __DJGPP__ ScreenClear(); -#else +#else /* some flavor of win32? */ #ifdef __MINGW32__ clear(); #else clrscr(); #endif -#endif +#endif /* win32 */ +#endif /* PDCURSES */ #else if (LYCursesON == TRUE) { lynx_nl2crlf(TRUE); lynx_enable_mouse(0); -#if 1 /* (!defined(WIN_EX) || defined(__CYGWIN__)) */ /* @@@ */ -#ifdef WIN_EX - if (system_is_NT) -#endif - if (LYscreen || lynx_called_initscr) { - endwin(); /* stop curses */ - LYDELSCR(); - } -#endif - } + if (LYscreen || lynx_called_initscr) { + endwin(); /* stop curses */ + LYDELSCR(); + } + } else { #ifdef SH_EX - { int i; for (i = 0; i <= 3; i++) { printf("\r\n"); } - } -#else - printf("\r"); /* PDCurses may leave the cursor randomly */ #endif + } fflush(stdout); #endif /* defined(DOSPATH) && !(defined(USE_SLANG) || defined(_WIN_CC)) */ diff --git a/src/LYCurses.h b/src/LYCurses.h index b84ba4ba..ab181f5d 100644 --- a/src/LYCurses.h +++ b/src/LYCurses.h @@ -465,6 +465,10 @@ extern "C" { extern unsigned Lynx_Color_Flags; #endif +#if defined(USE_COLOR_TABLE) || defined(USE_SLANG) + extern int Current_Attr; +#endif + #ifdef USE_SLANG #define SHOW_WHEREIS_TARGETS 1 diff --git a/src/LYStrings.c b/src/LYStrings.c index 2b1e29bb..cb8aa198 100644 --- a/src/LYStrings.c +++ b/src/LYStrings.c @@ -111,10 +111,6 @@ int fancy_mouse(WINDOW * win, int row, { int cmd = LYK_DO_NOTHING; - (void) win; - (void) row; - (void) position; - #ifdef USE_MOUSE /*********************************************************************/ @@ -251,6 +247,10 @@ int fancy_mouse(WINDOW * win, int row, /************************************************************************/ #endif /* USE_MOUSE */ + (void) win; + (void) row; + (void) position; + return cmd; } @@ -739,14 +739,19 @@ static int myGetChar(void) } while (!done); /* PDCurses - until version 2.7 in 2005 - defined ERR as 0, unlike other - * versions of curses. Generally both EOF and ERR are defined as -1's, - * making lynx's code work nicely when mixing curses and stdio functions. - * Accommodate PDCurses by making it follow that convention. + * versions of curses. Generally both EOF and ERR are defined as -1's. + * However, there is a special case (see HTCheckForInterrupt()) to handle + * a case where no select() function in used the win32 environment. + * + * HTCheckForInterrupt() uses nodelay() in this special case to check for + * pending input. That normally returns ERR. But LYgetch_for() checks + * the return value of this function for EOF (to handle some antique + * runtime libraries which did not set the state for feof/ferror). + * Returning a zero (0) is safer since normally that is not mapped to any + * commands, and will be ignored by lynx. */ -#if defined(ERR) && ((ERR) != -1) - if (c == ERR) - c = -1; -#endif + if (c == -1) + c = 0; return c; } @@ -4924,7 +4929,7 @@ int LYgetstr(char *inputline, _statusline(": "); reinsertEdit(&MyEdit, data[cur_choice]); } - wmove(LYwin, old_y, old_x); + LYmove(old_y, old_x); FREE(data); } } else { diff --git a/src/LYUtils.c b/src/LYUtils.c index 61a2a45f..0cfd1340 100644 --- a/src/LYUtils.c +++ b/src/LYUtils.c @@ -6,7 +6,7 @@ #include <HTAlert.h> #ifdef __MINGW32__ -int kbhit(void); +int kbhit(void); /* FIXME: use conio.h */ #ifdef UNIX #undef UNIX @@ -1673,13 +1673,6 @@ int HTCheckForInterrupt(void) int c; int cmd; -#ifndef VMS /* UNIX stuff: */ -#if !defined(USE_SLANG) - struct timeval socket_timeout; - int ret = 0; - fd_set readfds; -#endif /* !USE_SLANG */ - if (fake_zap > 0) { fake_zap--; CTRACE((tfp, "\r *** Got simulated 'Z' ***\n")); @@ -1692,7 +1685,13 @@ int HTCheckForInterrupt(void) if (DontCheck()) return ((int) FALSE); +#ifndef VMS /* UNIX stuff: */ + #if !defined(_WINDOWS) || defined(__MINGW32__) + + /* + * First, check if there is a character. + */ #ifdef USE_SLANG /** No keystroke was entered Note that this isn't taking possible SOCKSification @@ -1700,69 +1699,61 @@ int HTCheckForInterrupt(void) slang library's select() when SOCKSified. - FM **/ #ifdef DJGPP_KEYHANDLER if (0 == _bios_keybrd(_NKEYBRD_READY)) + return (FALSE); #else if (0 == SLang_input_pending(0)) -#endif /* DJGPP_KEYHANDLER */ return (FALSE); +#endif /* DJGPP_KEYHANDLER */ #else /* Unix curses: */ - - socket_timeout.tv_sec = 0; - socket_timeout.tv_usec = 0; - FD_ZERO(&readfds); - FD_SET(0, &readfds); + { + struct timeval socket_timeout; + int ret = 0; + fd_set readfds; + + socket_timeout.tv_sec = 0; + socket_timeout.tv_usec = 0; + FD_ZERO(&readfds); + FD_SET(0, &readfds); #ifdef SOCKS - if (socks_flag) - ret = Rselect(1, &readfds, NULL, NULL, &socket_timeout); - else + if (socks_flag) + ret = Rselect(1, &readfds, NULL, NULL, &socket_timeout); + else #endif /* SOCKS */ - ret = select(1, &readfds, NULL, NULL, &socket_timeout); + ret = select(1, &readfds, NULL, NULL, &socket_timeout); - /** Suspended? **/ - if ((ret == -1) && (SOCKET_ERRNO == EINTR)) - return ((int) FALSE); + /** Suspended? **/ + if ((ret == -1) && (SOCKET_ERRNO == EINTR)) + return ((int) FALSE); - /** No keystroke was entered? **/ - if (!FD_ISSET(0, &readfds)) - return ((int) FALSE); + /** No keystroke was entered? **/ + if (!FD_ISSET(0, &readfds)) + return ((int) FALSE); + } #endif /* USE_SLANG */ + #endif /* !_WINDOWS */ -#if defined(PDCURSES) - nodelay(LYwin, TRUE); -#endif /* PDCURSES */ /* - * 'c' contains whatever character we're able to read from keyboard + * Now, read the character. */ - c = LYgetch(); #if defined(PDCURSES) + nodelay(LYwin, TRUE); + c = LYgetch(); nodelay(LYwin, FALSE); -#endif /* PDCURSES */ +#else + c = LYgetch(); +#endif #else /* VMS: */ extern int typeahead(void); - if (fake_zap > 0) { - fake_zap--; - CTRACE((tfp, "\r *** Got simulated 'Z' ***\n")); - CTRACE_FLUSH(tfp); - CTRACE_SLEEP(AlertSecs); - return ((int) TRUE); - } - - /** Curses or slang setup was not invoked **/ - if (DontCheck()) - return ((int) FALSE); - /** Control-C or Control-Y and a 'N'o reply to exit query **/ if (HadVMSInterrupt) { HadVMSInterrupt = FALSE; return ((int) TRUE); } - /* - * 'c' contains whatever character we're able to read from keyboard - */ c = typeahead(); #endif /* !VMS */ @@ -1771,7 +1762,7 @@ int HTCheckForInterrupt(void) * 'c' contains whatever character we're able to read from keyboard */ - /** Keyboard 'Z' or 'z', or Control-G or Control-C **/ + /** Keyboard 'Z' or 'z', or Control-G or Control-C **/ if (LYCharIsINTERRUPT(c)) return ((int) TRUE); diff --git a/userdefs.h b/userdefs.h index 35535e8b..be1dbfe8 100644 --- a/userdefs.h +++ b/userdefs.h @@ -1360,11 +1360,11 @@ * the version definition with the Project Version on checkout. Just * ignore it. - kw */ /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */ -#define LYNX_VERSION "2.8.6dev.19" +#define LYNX_VERSION "2.8.6pre.2" #define LYNX_WWW_HOME "http://lynx.isc.org/" #define LYNX_WWW_DIST "http://lynx.isc.org/current/" /* $Format: "#define LYNX_DATE \"$ProjectDate$\""$ */ -#define LYNX_DATE "Thu, 31 Aug 2006 16:37:53 -0700" +#define LYNX_DATE "Sun, 03 Sep 2006 16:25:39 -0700" #define LYNX_DATE_OFF 5 /* truncate the automatically-generated date */ #define LYNX_DATE_LEN 11 /* truncate the automatically-generated date */ |