diff options
-rw-r--r-- | CHANGES | 8 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTString.c | 4 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 12 | ||||
-rw-r--r-- | build.bat | 169 | ||||
-rwxr-xr-x | configure | 6961 | ||||
-rw-r--r-- | configure.in | 7 | ||||
-rw-r--r-- | lib/dirent.c | 6 | ||||
-rw-r--r-- | make-msc.bat | 7 | ||||
-rw-r--r-- | makefile.msc | 16 | ||||
-rw-r--r-- | src/GridText.c | 48 | ||||
-rw-r--r-- | src/LYExtern.c | 6 | ||||
-rw-r--r-- | src/LYMain.c | 6 | ||||
-rw-r--r-- | src/LYMainLoop.c | 4 | ||||
-rw-r--r-- | src/LYStrings.c | 6 | ||||
-rw-r--r-- | src/LYUtils.c | 8 | ||||
-rw-r--r-- | src/Xsystem.c | 43 | ||||
-rw-r--r-- | src/chrtrans/makefile.msc | 3 | ||||
-rw-r--r-- | src/parsdate.c | 102 |
18 files changed, 3815 insertions, 3601 deletions
diff --git a/CHANGES b/CHANGES index fd2a7a26..97ff8457 100644 --- a/CHANGES +++ b/CHANGES @@ -1,16 +1,18 @@ --- $LynxId: CHANGES,v 1.925 2018/02/05 09:54:38 tom Exp $ +-- $LynxId: CHANGES,v 1.927 2018/02/20 00:44:42 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2018-02-05 (2.8.9dev.17) +2018-02-19 (2.8.9dev.17) +* update makefile/batch-scripts to allow building with newer Visual Studio + versions, e.g., 2010, 2012, so that a 64-bit executable can be built -TD * repair link in lynx_help_main.html to HTML 3.2 documentation (Savannah #47803). * update eo.po, fr.po from http://translationproject.org/latest/lynx * improved several configure macros: CF_BUILD_CC, CF_CC_ENV_FLAGS, CF_CURSES_FUNCS, CF_CURSES_LIBS, - CF_NCURSES_CONFIG + CF_NCURSES_CONFIG -D * updated ftp-site url -TD * update config.guess (2018-01-26), config.sub (2018-01-15) diff --git a/WWW/Library/Implementation/HTString.c b/WWW/Library/Implementation/HTString.c index 187f1b1b..4a1ab43a 100644 --- a/WWW/Library/Implementation/HTString.c +++ b/WWW/Library/Implementation/HTString.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTString.c,v 1.73 2016/11/24 15:29:50 tom Exp $ + * $LynxId: HTString.c,v 1.74 2018/02/15 01:54:27 tom Exp $ * * Case-independent string comparison HTString.c * @@ -795,7 +795,7 @@ PUBLIC_IF_FIND_LEAKS char *StrAllocVsprintf(char **pstr, VA_POINT(char *); if (prec < 0) - prec = strlen(pval); + prec = (int) strlen(pval); used = 's'; break; case 'p': diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index 4f2c4670..9f49d92c 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.125 2017/07/07 20:49:16 Martijn.Dekker Exp $ + * $LynxId: HTUtils.h,v 1.126 2018/02/19 21:37:37 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -625,6 +625,16 @@ extern int WWW_TraceMask; #endif /* + * MinGW-32 uses only 32-bit DLL, which limits printing. + */ +#if defined(__MINGW32__) +#undef PRI_off_t +#undef CAST_off_t +#define PRI_off_t "ld" +#define CAST_off_t(n) (long)(n) +#endif + +/* * Printing-format for "time_t", as well as cast needed to fit. */ #if defined(HAVE_LONG_LONG) && defined(HAVE_INTTYPES_H) && defined(SIZEOF_TIME_T) diff --git a/build.bat b/build.bat new file mode 100644 index 00000000..cff8e6d1 --- /dev/null +++ b/build.bat @@ -0,0 +1,169 @@ +@echo off +@rem $LynxId: build.bat,v 1.1 2018/02/19 14:54:26 tom Exp $ + setlocal + set SSL_DIR=C:\OpenSSL-%TARGET_ARCH% + +if not exist lynx.man goto :not_lynx +if not exist lynx.cfg goto :not_lynx +if not exist makefile.msc goto :not_lynx +if not exist make-msc.bat goto :not_lynx + +if "x"=="x%PARTITION%" goto :no_build + +rem The locally-built libraries are in a directory tree which has subfolders +rem for each version of Visual Studio. The OpenSSL directories are in +rem a separate location. Simplify building Lynx by copying the link-libraries +rem and DLLs to the build-tree. + + call :copybin \project\all\%PARTITION% + call :copylib \project\all\%PARTITION% + + xcopy /f/q lynx.cfg bin + xcopy /f/q samples\lynx.lss bin + + call :clean + call :build %1 + + goto :eof + +:no_build + echo The build-tools were not setup + goto :eof + +:not_lynx + echo This is not the Lynx build-directory + goto :eof + +rem Copy configuration and OpenSSL DLLs to bin-directory to simplify +rem ad hoc testing. The "\com" has some GnuWin32 executables which can be +rem used for decompressing temporary files. Copy those here as well to +rem simplify packaging. + +:copybin + setlocal + echo ** Copying files to bin-directory + if not exist bin mkdir bin + cd bin + del /f /q lynx*.* + del /f /q *.dll + del /f /q *.exe + copy %1\dynamic\*.dll . + copy c:\com\bzip2.exe . + copy c:\com\gzip.exe . + call :copy_ssl libeay + call :copy_ssl ssleay + call :copy_ssl libcrypto + call :copy_ssl libssl + call :copy_ssl msvcr + endlocal + goto :eof + +:copy_ssl + setlocal + set DESTDIR=%CD% + cd %SSL_DIR% + for /f "usebackq" %%i in (`dir /b /s bin`) do xcopy /s /c /f /y %%i\%1*.dll %DESTDIR% + endlocal + goto :eof + +rem We could link with locally-built DLLs, but it would complicate +rem things unnecessarily, and in the case of the slang library, more +rem than double the size of an installer since its DLL is larger than all +rem of the other parts of Lynx combined. + +:copylib + setlocal + echo ** Copying files to lib-directory + if not exist lib mkdir lib + cd lib + del /f /q *.lib + del /f /q bzip*.h + del /f /q curs*.h + del /f /q slang*.h + del /f /q z*.h + copy %1\include\* . + copy %1\static\* . + endlocal + goto :eof + +:clean + setlocal + call make-msc.bat clean + endlocal + goto :eof + +:build + setlocal + if "x%1"=="x" call :do_default + if not "x%1"=="x" call :do_%1 + endlocal + goto :eof + +:do_all + call :do_default + call :do_sock + call :do_oldssl + call :do_newssl + call :do_cs + call :do_slang + call make-msc clean + goto :eof + +@rem just for testing +:do_default + call :doit bin\lynx-default.exe + goto :eof + +:do_sock + call :doit bin\lynx-sock.exe "OPT_SOCK=yes" + goto :eof + +rem The "with-openssl" batch-file simplifies some of the task of linking +rem with OpenSSL DLLs by setting SSL_LIBS for the appropriate old/new +rem filenames. + +:do_oldssl + setlocal + call with-openssl 1.0.2n 0 + call :doit bin\lynx-oldssl.exe "OPT_SSL=yes" "OPT_SOCK=yes" + endlocal + goto :eof + +:do_newssl + setlocal + call with-openssl 1.1.0g 1 + call :doit bin\lynx-newssl.exe "OPT_SSL=yes" "OPT_SOCK=yes" + endlocal + goto :eof + +@rem for packages +:do_cs + call :doit bin\lynx-cs.exe "OPT_SOCK=yes" "OPT_CS=yes" + goto :eof + +:do_slang + call :doit bin\lynx-slang.exe "OPT_SOCK=yes" "SCREEN=slang" + goto :eof + +:do_none + goto :eof + +:doit + setlocal + echo ** START BUILD: %* + set progname=%1 + shift + call make-msc clean + echo on + call make-msc "PROGNAME=%progname%" %1 %2 %3 %4 %5 %6 %7 %8 %9 + if errorlevel 1 goto :failed + echo ** BUILD-SUCCESS %progname% + echo. + %progname% -version + echo. + endlocal + goto :eof +:failed + echo ?? BUILD-FAILURE %progname% + endlocal + goto :eof diff --git a/configure b/configure index 0d2257ec..def74c85 100755 --- a/configure +++ b/configure @@ -4485,12 +4485,13 @@ cf_new_cppflags= cf_new_extra_cppflags= for cf_add_cflags in \ - -DWIN32_LEAN_AND_MEAN \ -DDOSPATH \ -DNOSIGHUP \ -DNOUSERS \ + -DWIN32_LEAN_AND_MEAN \ -DWIN_EX \ -D_CONSOLE \ + -D_GNU_SOURCE \ -D_MBCS \ -D_WINDOWS \ -D_WIN_CC \ @@ -4616,14 +4617,14 @@ fi # SCO's cc (which is reported to have broken const/volatile). case "$CC" in (cc|*/cc) - { echo "$as_me:4619: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:4620: 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:4626: checking for $ac_word" >&5 +echo "$as_me:4627: 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 @@ -4638,7 +4639,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:4641: found $ac_dir/$ac_word" >&5 +echo "$as_me:4642: found $ac_dir/$ac_word" >&5 break done @@ -4646,10 +4647,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:4649: result: $CC" >&5 + echo "$as_me:4650: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:4652: result: no" >&5 + echo "$as_me:4653: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4672,23 +4673,23 @@ test -n "$CC" || CC="$CC" for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4675: checking for $ac_header" >&5 +echo "$as_me:4676: 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 4681 "configure" +#line 4682 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4685: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4686: \"$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:4691: \$? = $ac_status" >&5 + echo "$as_me:4692: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4707,7 +4708,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4710: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4711: 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 @@ -4735,23 +4736,23 @@ done for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4738: checking for $ac_header" >&5 +echo "$as_me:4739: 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 4744 "configure" +#line 4745 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4748: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4749: \"$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:4754: \$? = $ac_status" >&5 + echo "$as_me:4755: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4770,7 +4771,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4773: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4774: 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 @@ -4797,13 +4798,13 @@ esac # This should have been defined by AC_PROG_CC : ${CC:=cc} -echo "$as_me:4800: checking \$CC variable" >&5 +echo "$as_me:4801: checking \$CC variable" >&5 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 case "$CC" in (*[\ \ ]-*) - echo "$as_me:4804: result: broken" >&5 + echo "$as_me:4805: result: broken" >&5 echo "${ECHO_T}broken" >&6 - { echo "$as_me:4806: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 + { echo "$as_me:4807: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} # humor him... cf_prog=`echo "$CC" | sed -e 's/ / /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'` @@ -4920,24 +4921,24 @@ fi done test -n "$verbose" && echo " resulting CC: '$CC'" 1>&6 -echo "${as_me:-configure}:4923: testing resulting CC: '$CC' ..." 1>&5 +echo "${as_me:-configure}:4924: testing resulting CC: '$CC' ..." 1>&5 test -n "$verbose" && echo " resulting CFLAGS: '$CFLAGS'" 1>&6 -echo "${as_me:-configure}:4927: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 +echo "${as_me:-configure}:4928: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5 test -n "$verbose" && echo " resulting CPPFLAGS: '$CPPFLAGS'" 1>&6 -echo "${as_me:-configure}:4931: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 +echo "${as_me:-configure}:4932: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5 ;; (*) - echo "$as_me:4935: result: ok" >&5 + echo "$as_me:4936: result: ok" >&5 echo "${ECHO_T}ok" >&6 ;; esac -echo "$as_me:4940: checking for ${CC:-cc} option to accept ANSI C" >&5 +echo "$as_me:4941: 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 @@ -5061,7 +5062,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 5064 "configure" +#line 5065 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -5082,16 +5083,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5085: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5086: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5088: \$? = $ac_status" >&5 + echo "$as_me:5089: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5091: \"$ac_try\"") >&5 + { (eval echo "$as_me:5092: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5094: \$? = $ac_status" >&5 + echo "$as_me:5095: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -5104,7 +5105,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:5107: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:5108: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -5218,7 +5219,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:5221: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:5222: 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 @@ -5238,7 +5239,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:5241: checking for special C compiler options needed for large files" >&5 + echo "$as_me:5242: 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 @@ -5250,7 +5251,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 5253 "configure" +#line 5254 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -5270,16 +5271,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5273: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5274: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5276: \$? = $ac_status" >&5 + echo "$as_me:5277: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5279: \"$ac_try\"") >&5 + { (eval echo "$as_me:5280: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5282: \$? = $ac_status" >&5 + echo "$as_me:5283: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -5289,16 +5290,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:5292: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5293: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5295: \$? = $ac_status" >&5 + echo "$as_me:5296: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5298: \"$ac_try\"") >&5 + { (eval echo "$as_me:5299: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5301: \$? = $ac_status" >&5 + echo "$as_me:5302: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -5312,13 +5313,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:5315: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:5316: 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:5321: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:5322: 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 @@ -5326,7 +5327,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 5329 "configure" +#line 5330 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -5346,16 +5347,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5349: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5350: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5352: \$? = $ac_status" >&5 + echo "$as_me:5353: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5355: \"$ac_try\"") >&5 + { (eval echo "$as_me:5356: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5358: \$? = $ac_status" >&5 + echo "$as_me:5359: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -5364,7 +5365,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 5367 "configure" +#line 5368 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -5385,16 +5386,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5388: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5389: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5391: \$? = $ac_status" >&5 + echo "$as_me:5392: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5394: \"$ac_try\"") >&5 + { (eval echo "$as_me:5395: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5397: \$? = $ac_status" >&5 + echo "$as_me:5398: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -5405,7 +5406,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:5408: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:5409: 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 @@ -5415,7 +5416,7 @@ EOF fi rm -rf conftest* - echo "$as_me:5418: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:5419: 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 @@ -5423,7 +5424,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 5426 "configure" +#line 5427 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -5443,16 +5444,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5446: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5447: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5449: \$? = $ac_status" >&5 + echo "$as_me:5450: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5452: \"$ac_try\"") >&5 + { (eval echo "$as_me:5453: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5455: \$? = $ac_status" >&5 + echo "$as_me:5456: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -5461,7 +5462,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 5464 "configure" +#line 5465 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -5482,16 +5483,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5485: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5486: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5488: \$? = $ac_status" >&5 + echo "$as_me:5489: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5491: \"$ac_try\"") >&5 + { (eval echo "$as_me:5492: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5494: \$? = $ac_status" >&5 + echo "$as_me:5495: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -5502,7 +5503,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:5505: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:5506: 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 @@ -5515,7 +5516,7 @@ rm -rf conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:5518: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:5519: 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 @@ -5523,7 +5524,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 5526 "configure" +#line 5527 "configure" #include "confdefs.h" #include <stdio.h> int @@ -5535,16 +5536,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5538: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5539: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5541: \$? = $ac_status" >&5 + echo "$as_me:5542: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5544: \"$ac_try\"") >&5 + { (eval echo "$as_me:5545: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5547: \$? = $ac_status" >&5 + echo "$as_me:5548: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -5553,7 +5554,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 5556 "configure" +#line 5557 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -5566,16 +5567,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5569: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5570: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5572: \$? = $ac_status" >&5 + echo "$as_me:5573: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5575: \"$ac_try\"") >&5 + { (eval echo "$as_me:5576: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5578: \$? = $ac_status" >&5 + echo "$as_me:5579: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -5586,7 +5587,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:5589: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:5590: 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 @@ -5600,13 +5601,13 @@ rm -rf conftest* # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:5603: checking for fseeko" >&5 +echo "$as_me:5604: 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 5609 "configure" +#line 5610 "configure" #include "confdefs.h" #include <stdio.h> int @@ -5618,16 +5619,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5622: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5624: \$? = $ac_status" >&5 + echo "$as_me:5625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5627: \"$ac_try\"") >&5 + { (eval echo "$as_me:5628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5630: \$? = $ac_status" >&5 + echo "$as_me:5631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -5637,7 +5638,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5640: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:5641: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -5658,14 +5659,14 @@ fi test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits " - echo "$as_me:5661: checking whether to use struct dirent64" >&5 + echo "$as_me:5662: 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 5668 "configure" +#line 5669 "configure" #include "confdefs.h" #pragma GCC diagnostic error "-Wincompatible-pointer-types" @@ -5687,16 +5688,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5690: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5693: \$? = $ac_status" >&5 + echo "$as_me:5694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5696: \"$ac_try\"") >&5 + { (eval echo "$as_me:5697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5699: \$? = $ac_status" >&5 + echo "$as_me:5700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -5707,7 +5708,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5710: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:5711: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF @@ -5719,20 +5720,20 @@ EOF if test -z "$ALL_LINGUAS" ; then ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && echo *.po|sed -e 's/\.po//g' -e 's/*//'` - echo "$as_me:5722: checking for PATH separator" >&5 + echo "$as_me:5723: checking for PATH separator" >&5 echo $ECHO_N "checking for PATH separator... $ECHO_C" >&6 case $cf_cv_system_name in (os2*) PATH_SEPARATOR=';' ;; (*) ${PATH_SEPARATOR:=':'} ;; esac - echo "$as_me:5729: result: $PATH_SEPARATOR" >&5 + echo "$as_me:5730: result: $PATH_SEPARATOR" >&5 echo "${ECHO_T}$PATH_SEPARATOR" >&6 # Extract the first word of "msginit", so it can be a program name with args. set dummy msginit; ac_word=$2 -echo "$as_me:5735: checking for $ac_word" >&5 +echo "$as_me:5736: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGINIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5759,17 +5760,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:5762: result: $MSGINIT" >&5 + echo "$as_me:5763: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:5765: result: no" >&5 + echo "$as_me:5766: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$MSGINIT" != ":" ; then test -n "$verbose" && echo " adding en.po" 1>&6 -echo "${as_me:-configure}:5772: testing adding en.po ..." 1>&5 +echo "${as_me:-configure}:5773: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -5778,7 +5779,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:5781: checking for $ac_word" >&5 +echo "$as_me:5782: 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 @@ -5793,7 +5794,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:5796: found $ac_dir/$ac_word" >&5 +echo "$as_me:5797: found $ac_dir/$ac_word" >&5 break done @@ -5801,10 +5802,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:5804: result: $RANLIB" >&5 + echo "$as_me:5805: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:5807: result: no" >&5 + echo "$as_me:5808: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5813,7 +5814,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:5816: checking for $ac_word" >&5 +echo "$as_me:5817: 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 @@ -5828,7 +5829,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:5831: found $ac_dir/$ac_word" >&5 +echo "$as_me:5832: found $ac_dir/$ac_word" >&5 break done @@ -5837,10 +5838,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:5840: result: $ac_ct_RANLIB" >&5 + echo "$as_me:5841: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:5843: result: no" >&5 + echo "$as_me:5844: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5849,13 +5850,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:5852: checking for ANSI C header files" >&5 +echo "$as_me:5853: 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 5858 "configure" +#line 5859 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -5863,13 +5864,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:5866: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5867: \"$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:5872: \$? = $ac_status" >&5 + echo "$as_me:5873: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5891,7 +5892,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 5894 "configure" +#line 5895 "configure" #include "confdefs.h" #include <string.h> @@ -5909,7 +5910,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 5912 "configure" +#line 5913 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5930,7 +5931,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 5933 "configure" +#line 5934 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -5956,15 +5957,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5959: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5960: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5962: \$? = $ac_status" >&5 + echo "$as_me:5963: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5964: \"$ac_try\"") >&5 + { (eval echo "$as_me:5965: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5967: \$? = $ac_status" >&5 + echo "$as_me:5968: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -5977,7 +5978,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:5980: result: $ac_cv_header_stdc" >&5 +echo "$as_me:5981: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -5987,7 +5988,7 @@ EOF fi -echo "$as_me:5990: checking for inline" >&5 +echo "$as_me:5991: 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 @@ -5995,7 +5996,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 5998 "configure" +#line 5999 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -6004,16 +6005,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6007: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6008: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6010: \$? = $ac_status" >&5 + echo "$as_me:6011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6013: \"$ac_try\"") >&5 + { (eval echo "$as_me:6014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6016: \$? = $ac_status" >&5 + echo "$as_me:6017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -6024,7 +6025,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:6027: result: $ac_cv_c_inline" >&5 +echo "$as_me:6028: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -6045,28 +6046,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:6048: checking for $ac_header" >&5 +echo "$as_me:6049: 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 6054 "configure" +#line 6055 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6060: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6061: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6063: \$? = $ac_status" >&5 + echo "$as_me:6064: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6066: \"$ac_try\"") >&5 + { (eval echo "$as_me:6067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6069: \$? = $ac_status" >&5 + echo "$as_me:6070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -6076,7 +6077,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6079: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6080: 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 @@ -6086,13 +6087,13 @@ EOF fi done -echo "$as_me:6089: checking for off_t" >&5 +echo "$as_me:6090: 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 6095 "configure" +#line 6096 "configure" #include "confdefs.h" $ac_includes_default int @@ -6107,16 +6108,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6110: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6111: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6113: \$? = $ac_status" >&5 + echo "$as_me:6114: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6116: \"$ac_try\"") >&5 + { (eval echo "$as_me:6117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6119: \$? = $ac_status" >&5 + echo "$as_me:6120: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -6126,7 +6127,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6129: result: $ac_cv_type_off_t" >&5 +echo "$as_me:6130: 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 : @@ -6138,13 +6139,13 @@ EOF fi -echo "$as_me:6141: checking for size_t" >&5 +echo "$as_me:6142: 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 6147 "configure" +#line 6148 "configure" #include "confdefs.h" $ac_includes_default int @@ -6159,16 +6160,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6162: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6163: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6165: \$? = $ac_status" >&5 + echo "$as_me:6166: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6168: \"$ac_try\"") >&5 + { (eval echo "$as_me:6169: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6171: \$? = $ac_status" >&5 + echo "$as_me:6172: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -6178,7 +6179,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6181: result: $ac_cv_type_size_t" >&5 +echo "$as_me:6182: 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 : @@ -6192,13 +6193,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:6195: checking for working alloca.h" >&5 +echo "$as_me:6196: 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 6201 "configure" +#line 6202 "configure" #include "confdefs.h" #include <alloca.h> int @@ -6210,16 +6211,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6213: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6214: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6216: \$? = $ac_status" >&5 + echo "$as_me:6217: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6219: \"$ac_try\"") >&5 + { (eval echo "$as_me:6220: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6222: \$? = $ac_status" >&5 + echo "$as_me:6223: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -6229,7 +6230,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6232: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:6233: 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 @@ -6239,13 +6240,13 @@ EOF fi -echo "$as_me:6242: checking for alloca" >&5 +echo "$as_me:6243: 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 6248 "configure" +#line 6249 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -6277,16 +6278,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6280: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6281: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6283: \$? = $ac_status" >&5 + echo "$as_me:6284: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6286: \"$ac_try\"") >&5 + { (eval echo "$as_me:6287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6289: \$? = $ac_status" >&5 + echo "$as_me:6290: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -6296,7 +6297,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6299: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:6300: 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 @@ -6317,13 +6318,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:6320: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:6321: 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 6326 "configure" +#line 6327 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -6341,18 +6342,18 @@ fi rm -rf conftest* fi -echo "$as_me:6344: result: $ac_cv_os_cray" >&5 +echo "$as_me:6345: 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:6349: checking for $ac_func" >&5 +echo "$as_me:6350: 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 6355 "configure" +#line 6356 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6383,16 +6384,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6386: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6387: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6389: \$? = $ac_status" >&5 + echo "$as_me:6390: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6392: \"$ac_try\"") >&5 + { (eval echo "$as_me:6393: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6395: \$? = $ac_status" >&5 + echo "$as_me:6396: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6402,7 +6403,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6405: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6406: 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 @@ -6416,7 +6417,7 @@ fi done fi -echo "$as_me:6419: checking stack direction for C alloca" >&5 +echo "$as_me:6420: 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 @@ -6425,7 +6426,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 6428 "configure" +#line 6429 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -6448,15 +6449,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6451: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6452: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6454: \$? = $ac_status" >&5 + echo "$as_me:6455: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6456: \"$ac_try\"") >&5 + { (eval echo "$as_me:6457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6459: \$? = $ac_status" >&5 + echo "$as_me:6460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -6468,7 +6469,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6471: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:6472: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -6480,23 +6481,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:6483: checking for $ac_header" >&5 +echo "$as_me:6484: 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 6489 "configure" +#line 6490 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6493: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6494: \"$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:6499: \$? = $ac_status" >&5 + echo "$as_me:6500: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6515,7 +6516,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6518: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6519: 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 @@ -6528,13 +6529,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6531: checking for $ac_func" >&5 +echo "$as_me:6532: 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 6537 "configure" +#line 6538 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6565,16 +6566,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6568: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6569: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6571: \$? = $ac_status" >&5 + echo "$as_me:6572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6574: \"$ac_try\"") >&5 + { (eval echo "$as_me:6575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6577: \$? = $ac_status" >&5 + echo "$as_me:6578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6584,7 +6585,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6587: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6588: 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 @@ -6594,7 +6595,7 @@ EOF fi done -echo "$as_me:6597: checking for working mmap" >&5 +echo "$as_me:6598: 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 @@ -6603,7 +6604,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 6606 "configure" +#line 6607 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -6730,15 +6731,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6733: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6736: \$? = $ac_status" >&5 + echo "$as_me:6737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6738: \"$ac_try\"") >&5 + { (eval echo "$as_me:6739: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6741: \$? = $ac_status" >&5 + echo "$as_me:6742: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -6750,7 +6751,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6753: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:6754: 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 @@ -6761,13 +6762,13 @@ EOF fi rm -f conftest.mmap -echo "$as_me:6764: checking whether we are using the GNU C Library 2.1 or newer" >&5 +echo "$as_me:6765: 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 6770 "configure" +#line 6771 "configure" #include "confdefs.h" #include <features.h> @@ -6787,7 +6788,7 @@ fi rm -rf conftest* fi -echo "$as_me:6790: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:6791: 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" @@ -6800,7 +6801,7 @@ test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && ec : ${CONFIG_H:=config.h} if test -z "$PACKAGE" ; then - { { echo "$as_me:6803: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 + { { echo "$as_me:6804: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5 echo "$as_me: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&2;} { (exit 1); exit 1; }; } fi @@ -6817,23 +6818,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:6820: checking for $ac_header" >&5 +echo "$as_me:6821: 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 6826 "configure" +#line 6827 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6830: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6831: \"$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:6836: \$? = $ac_status" >&5 + echo "$as_me:6837: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6852,7 +6853,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6855: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6856: 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 @@ -6867,13 +6868,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:6870: checking for $ac_func" >&5 +echo "$as_me:6871: 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 6876 "configure" +#line 6877 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6904,16 +6905,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6907: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6908: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6910: \$? = $ac_status" >&5 + echo "$as_me:6911: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6913: \"$ac_try\"") >&5 + { (eval echo "$as_me:6914: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6916: \$? = $ac_status" >&5 + echo "$as_me:6917: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6923,7 +6924,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6926: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6927: 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 @@ -6971,7 +6972,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6974 "configure" +#line 6975 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6983,16 +6984,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6986: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6987: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6989: \$? = $ac_status" >&5 + echo "$as_me:6990: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6992: \"$ac_try\"") >&5 + { (eval echo "$as_me:6993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6995: \$? = $ac_status" >&5 + echo "$as_me:6996: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7009,7 +7010,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:7012: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:7013: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7052,7 +7053,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7055 "configure" +#line 7056 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7064,16 +7065,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7067: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7068: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7070: \$? = $ac_status" >&5 + echo "$as_me:7071: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7073: \"$ac_try\"") >&5 + { (eval echo "$as_me:7074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7076: \$? = $ac_status" >&5 + echo "$as_me:7077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7090,7 +7091,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:7093: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:7094: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7108,7 +7109,7 @@ echo "${as_me:-configure}:7093: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:7111: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:7112: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -7133,7 +7134,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:7136: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:7137: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -7162,7 +7163,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:7165: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:7166: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -7171,7 +7172,7 @@ echo "${as_me:-configure}:7165: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:7174: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:7175: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -7182,7 +7183,7 @@ esac fi; - echo "$as_me:7185: checking for iconv" >&5 + echo "$as_me:7186: 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 @@ -7193,12 +7194,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:7196: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:7197: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7201 "configure" +#line 7202 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7217,16 +7218,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7220: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7221: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7223: \$? = $ac_status" >&5 + echo "$as_me:7224: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7226: \"$ac_try\"") >&5 + { (eval echo "$as_me:7227: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7229: \$? = $ac_status" >&5 + echo "$as_me:7230: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -7240,7 +7241,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7243 "configure" +#line 7244 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7259,16 +7260,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7262: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7263: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7265: \$? = $ac_status" >&5 + echo "$as_me:7266: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7268: \"$ac_try\"") >&5 + { (eval echo "$as_me:7269: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7271: \$? = $ac_status" >&5 + echo "$as_me:7272: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -7285,9 +7286,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:7288: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:7289: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:7290: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:7291: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -7378,11 +7379,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me:-configure}:7381: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7382: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 7385 "configure" +#line 7386 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7401,21 +7402,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7404: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7405: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7407: \$? = $ac_status" >&5 + echo "$as_me:7408: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7410: \"$ac_try\"") >&5 + { (eval echo "$as_me:7411: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7413: \$? = $ac_status" >&5 + echo "$as_me:7414: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me:-configure}:7418: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7419: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -7433,7 +7434,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:7436: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:7437: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -7508,13 +7509,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me:-configure}:7511: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7512: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 7517 "configure" +#line 7518 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7533,21 +7534,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7536: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7537: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7539: \$? = $ac_status" >&5 + echo "$as_me:7540: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7542: \"$ac_try\"") >&5 + { (eval echo "$as_me:7543: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7545: \$? = $ac_status" >&5 + echo "$as_me:7546: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me:-configure}:7550: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:7551: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -7587,7 +7588,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:7590: result: $am_cv_func_iconv" >&5 +echo "$as_me:7591: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -7596,14 +7597,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:7599: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:7600: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7606 "configure" +#line 7607 "configure" #include "confdefs.h" #include <stdlib.h> @@ -7628,16 +7629,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7631: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7632: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7634: \$? = $ac_status" >&5 + echo "$as_me:7635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7637: \"$ac_try\"") >&5 + { (eval echo "$as_me:7638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7640: \$? = $ac_status" >&5 + echo "$as_me:7641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -7647,7 +7648,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7650: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:7651: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -7689,7 +7690,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7692 "configure" +#line 7693 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7701,16 +7702,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7704: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7705: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7707: \$? = $ac_status" >&5 + echo "$as_me:7708: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7710: \"$ac_try\"") >&5 + { (eval echo "$as_me:7711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7713: \$? = $ac_status" >&5 + echo "$as_me:7714: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7727,7 +7728,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:7730: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:7731: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7766,7 +7767,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:7769: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:7770: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -7777,13 +7778,13 @@ fi fi fi -echo "$as_me:7780: checking for nl_langinfo and CODESET" >&5 +echo "$as_me:7781: 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 7786 "configure" +#line 7787 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -7795,16 +7796,16 @@ char* cs = nl_langinfo(CODESET); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7798: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7799: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7801: \$? = $ac_status" >&5 + echo "$as_me:7802: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7804: \"$ac_try\"") >&5 + { (eval echo "$as_me:7805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7807: \$? = $ac_status" >&5 + echo "$as_me:7808: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -7815,7 +7816,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7818: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:7819: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -7826,13 +7827,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:7829: checking for LC_MESSAGES" >&5 + echo "$as_me:7830: 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 7835 "configure" +#line 7836 "configure" #include "confdefs.h" #include <locale.h> int @@ -7844,16 +7845,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7848: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7850: \$? = $ac_status" >&5 + echo "$as_me:7851: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7853: \"$ac_try\"") >&5 + { (eval echo "$as_me:7854: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7856: \$? = $ac_status" >&5 + echo "$as_me:7857: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -7863,7 +7864,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7866: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:7867: 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 @@ -7873,7 +7874,7 @@ EOF fi fi - echo "$as_me:7876: checking whether NLS is requested" >&5 + echo "$as_me:7877: 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. @@ -7883,7 +7884,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:7886: result: $USE_NLS" >&5 + echo "$as_me:7887: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -7897,7 +7898,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:7900: checking whether included gettext is requested" >&5 + echo "$as_me:7901: 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. @@ -7907,7 +7908,7 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:7910: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:7911: 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" @@ -7920,7 +7921,7 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:7923: checking for $ac_word" >&5 +echo "$as_me:7924: 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 @@ -7947,16 +7948,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:7950: result: $MSGFMT" >&5 + echo "$as_me:7951: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:7953: result: no" >&5 + echo "$as_me:7954: 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:7959: checking for $ac_word" >&5 +echo "$as_me:7960: 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 @@ -7973,7 +7974,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:7976: found $ac_dir/$ac_word" >&5 + echo "$as_me:7977: found $ac_dir/$ac_word" >&5 break fi done @@ -7985,17 +7986,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:7988: result: $GMSGFMT" >&5 + echo "$as_me:7989: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:7991: result: no" >&5 + echo "$as_me:7992: 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:7998: checking for $ac_word" >&5 +echo "$as_me:7999: 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 @@ -8022,10 +8023,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:8025: result: $XGETTEXT" >&5 + echo "$as_me:8026: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:8028: result: no" >&5 + echo "$as_me:8029: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8156,12 +8157,12 @@ LIBS="$cf_add_libs" cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me:-configure}:8159: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:8160: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8164 "configure" +#line 8165 "configure" #include "confdefs.h" #include <libintl.h> @@ -8183,16 +8184,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8186: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8187: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8189: \$? = $ac_status" >&5 + echo "$as_me:8190: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8192: \"$ac_try\"") >&5 + { (eval echo "$as_me:8193: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8195: \$? = $ac_status" >&5 + echo "$as_me:8196: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -8206,7 +8207,7 @@ cat conftest.$ac_ext >&5 LIBS="-lintl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8209 "configure" +#line 8210 "configure" #include "confdefs.h" #include <libintl.h> @@ -8228,16 +8229,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8231: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8232: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8234: \$? = $ac_status" >&5 + echo "$as_me:8235: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8237: \"$ac_try\"") >&5 + { (eval echo "$as_me:8238: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8240: \$? = $ac_status" >&5 + echo "$as_me:8241: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes @@ -8254,9 +8255,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me:-configure}:8257: testing find linkage for intl library ..." 1>&5 +echo "${as_me:-configure}:8258: testing find linkage for intl library ..." 1>&5 -echo "${as_me:-configure}:8259: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:8260: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -8347,11 +8348,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_intl" 1>&6 -echo "${as_me:-configure}:8350: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:8351: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 8354 "configure" +#line 8355 "configure" #include "confdefs.h" #include <libintl.h> @@ -8373,21 +8374,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8376: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8377: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8379: \$? = $ac_status" >&5 + echo "$as_me:8380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8382: \"$ac_try\"") >&5 + { (eval echo "$as_me:8383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8385: \$? = $ac_status" >&5 + echo "$as_me:8386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl headers in $cf_cv_header_path_intl" 1>&6 -echo "${as_me:-configure}:8390: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me:-configure}:8391: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -8405,7 +8406,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me:-configure}:8408: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me:-configure}:8409: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -8480,13 +8481,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_intl" 1>&6 -echo "${as_me:-configure}:8483: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:8484: testing ... testing $cf_cv_library_path_intl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lintl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 8489 "configure" +#line 8490 "configure" #include "confdefs.h" #include <libintl.h> @@ -8508,21 +8509,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8511: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8512: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8514: \$? = $ac_status" >&5 + echo "$as_me:8515: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8517: \"$ac_try\"") >&5 + { (eval echo "$as_me:8518: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8520: \$? = $ac_status" >&5 + echo "$as_me:8521: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl library in $cf_cv_library_path_intl" 1>&6 -echo "${as_me:-configure}:8525: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me:-configure}:8526: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -8561,9 +8562,9 @@ else cf_cv_func_gettext=no fi - echo "$as_me:8564: checking for libintl.h and gettext()" >&5 + echo "$as_me:8565: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 - echo "$as_me:8566: result: $cf_cv_func_gettext" >&5 + echo "$as_me:8567: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -8605,7 +8606,7 @@ if test -n "$cf_cv_header_path_intl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 8608 "configure" +#line 8609 "configure" #include "confdefs.h" #include <stdio.h> int @@ -8617,16 +8618,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8620: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8621: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8623: \$? = $ac_status" >&5 + echo "$as_me:8624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8626: \"$ac_try\"") >&5 + { (eval echo "$as_me:8627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8629: \$? = $ac_status" >&5 + echo "$as_me:8630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8643,7 +8644,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:8646: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:8647: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -8682,7 +8683,7 @@ if test -n "$cf_cv_library_path_intl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:8685: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:8686: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -8698,13 +8699,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8701: checking for $ac_func" >&5 +echo "$as_me:8702: 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 8707 "configure" +#line 8708 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8735,16 +8736,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8738: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8739: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8741: \$? = $ac_status" >&5 + echo "$as_me:8742: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8744: \"$ac_try\"") >&5 + { (eval echo "$as_me:8745: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8747: \$? = $ac_status" >&5 + echo "$as_me:8748: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8754,7 +8755,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8757: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8758: 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 @@ -8769,7 +8770,7 @@ done CATOBJEXT=.gmo fi elif test -z "$MSGFMT" || test -z "$XGETTEXT" ; then - { echo "$as_me:8772: WARNING: disabling NLS feature" >&5 + { echo "$as_me:8773: WARNING: disabling NLS feature" >&5 echo "$as_me: WARNING: disabling NLS feature" >&2;} sed -e /ENABLE_NLS/d confdefs.h >confdefs.tmp mv confdefs.tmp confdefs.h @@ -8800,7 +8801,7 @@ echo "$as_me: WARNING: disabling NLS feature" >&2;} LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` elif test "$nls_cv_use_gnu_gettext" = "yes"; then nls_cv_use_gnu_gettext=no - { echo "$as_me:8803: WARNING: no NLS library is packaged with this application" >&5 + { echo "$as_me:8804: WARNING: no NLS library is packaged with this application" >&5 echo "$as_me: WARNING: no NLS library is packaged with this application" >&2;} fi fi @@ -8809,7 +8810,7 @@ echo "$as_me: WARNING: no NLS library is packaged with this application" >&2;} if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - { echo "$as_me:8812: WARNING: found msgfmt program is not GNU msgfmt" >&5 + { echo "$as_me:8813: WARNING: found msgfmt program is not GNU msgfmt" >&5 echo "$as_me: WARNING: found msgfmt program is not GNU msgfmt" >&2;} fi fi @@ -8818,7 +8819,7 @@ echo "$as_me: WARNING: found msgfmt program is not GNU msgfmt" >&2;} if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - { echo "$as_me:8821: WARNING: found xgettext program is not GNU xgettext" >&5 + { echo "$as_me:8822: WARNING: found xgettext program is not GNU xgettext" >&5 echo "$as_me: WARNING: found xgettext program is not GNU xgettext" >&2;} fi fi @@ -8836,7 +8837,7 @@ echo "$as_me: WARNING: found xgettext program is not GNU xgettext" >&2;} do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:8839: checking for $ac_word" >&5 +echo "$as_me:8840: 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 @@ -8851,7 +8852,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:8854: found $ac_dir/$ac_word" >&5 +echo "$as_me:8855: found $ac_dir/$ac_word" >&5 break done @@ -8859,10 +8860,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:8862: result: $INTLBISON" >&5 + echo "$as_me:8863: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:8865: result: no" >&5 + echo "$as_me:8866: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8872,7 +8873,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:8875: checking version of bison" >&5 + echo "$as_me:8876: 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 @@ -8881,7 +8882,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:8884: result: $ac_prog_version" >&5 + echo "$as_me:8885: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -8908,7 +8909,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:8911: checking for catalogs to be installed" >&5 + echo "$as_me:8912: 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 @@ -8928,7 +8929,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:8931: result: $LINGUAS" >&5 + echo "$as_me:8932: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -8964,7 +8965,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:8967: checking if we should use included message-library" >&5 +echo "$as_me:8968: 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. @@ -8975,7 +8976,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:8978: result: $use_our_messages" >&5 +echo "$as_me:8979: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -9017,23 +9018,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:9020: checking for $ac_header" >&5 +echo "$as_me:9021: 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 9026 "configure" +#line 9027 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:9030: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:9031: \"$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:9036: \$? = $ac_status" >&5 + echo "$as_me:9037: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -9052,7 +9053,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:9055: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:9056: 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 @@ -9138,7 +9139,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:9141: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:9142: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -9147,7 +9148,7 @@ esac fi eval NLS_DATADIR="$withval" -echo "$as_me:9150: checking if you want full utility pathnames" >&5 +echo "$as_me:9151: 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. @@ -9164,14 +9165,14 @@ else with_full_paths=yes fi; -echo "$as_me:9167: result: $with_full_paths" >&5 +echo "$as_me:9168: 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:9174: checking for system mailer" >&5 +echo "$as_me:9175: 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 @@ -9191,14 +9192,14 @@ else fi -echo "$as_me:9194: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:9195: 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:9201: checking system mail flags" >&5 +echo "$as_me:9202: 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 @@ -9214,7 +9215,7 @@ else fi -echo "$as_me:9217: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:9218: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF @@ -9265,14 +9266,14 @@ case $host_os in ;; (linux*|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin) -echo "$as_me:9268: checking if we must define _GNU_SOURCE" >&5 +echo "$as_me:9269: 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 9275 "configure" +#line 9276 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9287,16 +9288,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9290: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9291: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9293: \$? = $ac_status" >&5 + echo "$as_me:9294: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9296: \"$ac_try\"") >&5 + { (eval echo "$as_me:9297: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9299: \$? = $ac_status" >&5 + echo "$as_me:9300: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -9305,7 +9306,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 9308 "configure" +#line 9309 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9320,16 +9321,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9323: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9324: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9326: \$? = $ac_status" >&5 + echo "$as_me:9327: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9329: \"$ac_try\"") >&5 + { (eval echo "$as_me:9330: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9332: \$? = $ac_status" >&5 + echo "$as_me:9333: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -9344,12 +9345,12 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9347: result: $cf_cv_gnu_source" >&5 +echo "$as_me:9348: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 if test "$cf_cv_gnu_source" = yes then -echo "$as_me:9352: checking if we should also define _DEFAULT_SOURCE" >&5 +echo "$as_me:9353: checking if we should also define _DEFAULT_SOURCE" >&5 echo $ECHO_N "checking if we should also define _DEFAULT_SOURCE... $ECHO_C" >&6 if test "${cf_cv_default_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9357,7 +9358,7 @@ else CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 9360 "configure" +#line 9361 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9372,16 +9373,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9375: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9376: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9378: \$? = $ac_status" >&5 + echo "$as_me:9379: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9381: \"$ac_try\"") >&5 + { (eval echo "$as_me:9382: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9384: \$? = $ac_status" >&5 + echo "$as_me:9385: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_default_source=no else @@ -9392,7 +9393,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9395: result: $cf_cv_default_source" >&5 +echo "$as_me:9396: result: $cf_cv_default_source" >&5 echo "${ECHO_T}$cf_cv_default_source" >&6 test "$cf_cv_default_source" = yes && CPPFLAGS="$CPPFLAGS -D_DEFAULT_SOURCE" fi @@ -9418,16 +9419,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:9421: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:9422: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me:-configure}:9427: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:9428: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9430 "configure" +#line 9431 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9442,16 +9443,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9445: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9446: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9448: \$? = $ac_status" >&5 + echo "$as_me:9449: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9451: \"$ac_try\"") >&5 + { (eval echo "$as_me:9452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9454: \$? = $ac_status" >&5 + echo "$as_me:9455: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -9472,7 +9473,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 9475 "configure" +#line 9476 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9487,16 +9488,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9490: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9491: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9493: \$? = $ac_status" >&5 + echo "$as_me:9494: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9496: \"$ac_try\"") >&5 + { (eval echo "$as_me:9497: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9499: \$? = $ac_status" >&5 + echo "$as_me:9500: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9507,15 +9508,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me:-configure}:9510: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:9511: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "${as_me:-configure}:9515: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:9516: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9518 "configure" +#line 9519 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9530,16 +9531,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9533: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9534: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9536: \$? = $ac_status" >&5 + echo "$as_me:9537: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9539: \"$ac_try\"") >&5 + { (eval echo "$as_me:9540: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9542: \$? = $ac_status" >&5 + echo "$as_me:9543: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9555,7 +9556,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9558: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:9559: 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 @@ -9693,14 +9694,14 @@ fi ;; (*) -echo "$as_me:9696: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:9697: 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 9703 "configure" +#line 9704 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9719,16 +9720,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9722: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9723: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9725: \$? = $ac_status" >&5 + echo "$as_me:9726: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9728: \"$ac_try\"") >&5 + { (eval echo "$as_me:9729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9731: \$? = $ac_status" >&5 + echo "$as_me:9732: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -9737,7 +9738,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 9740 "configure" +#line 9741 "configure" #include "confdefs.h" #include <stdlib.h> @@ -9756,16 +9757,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9759: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9760: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9762: \$? = $ac_status" >&5 + echo "$as_me:9763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9765: \"$ac_try\"") >&5 + { (eval echo "$as_me:9766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9768: \$? = $ac_status" >&5 + echo "$as_me:9769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -9780,7 +9781,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9783: result: $cf_cv_xopen_source" >&5 +echo "$as_me:9784: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -9908,16 +9909,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:9911: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:9912: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me:-configure}:9917: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me:-configure}:9918: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9920 "configure" +#line 9921 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9932,16 +9933,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9935: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9936: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9938: \$? = $ac_status" >&5 + echo "$as_me:9939: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9941: \"$ac_try\"") >&5 + { (eval echo "$as_me:9942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9944: \$? = $ac_status" >&5 + echo "$as_me:9945: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -9962,7 +9963,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 9965 "configure" +#line 9966 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -9977,16 +9978,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9980: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9981: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9983: \$? = $ac_status" >&5 + echo "$as_me:9984: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9986: \"$ac_try\"") >&5 + { (eval echo "$as_me:9987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9989: \$? = $ac_status" >&5 + echo "$as_me:9990: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9997,15 +9998,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me:-configure}:10000: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me:-configure}:10001: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "${as_me:-configure}:10005: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me:-configure}:10006: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 10008 "configure" +#line 10009 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -10020,16 +10021,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10023: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10024: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10026: \$? = $ac_status" >&5 + echo "$as_me:10027: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10029: \"$ac_try\"") >&5 + { (eval echo "$as_me:10030: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10032: \$? = $ac_status" >&5 + echo "$as_me:10033: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10045,7 +10046,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10048: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:10049: 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 @@ -10237,7 +10238,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:10240: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:10241: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -10247,7 +10248,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:10250: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:10251: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -10257,7 +10258,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:10260: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:10261: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -10267,10 +10268,10 @@ fi fi if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then - echo "$as_me:10270: checking if _XOPEN_SOURCE really is set" >&5 + echo "$as_me:10271: checking if _XOPEN_SOURCE really is set" >&5 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10273 "configure" +#line 10274 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -10285,16 +10286,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10288: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10289: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10291: \$? = $ac_status" >&5 + echo "$as_me:10292: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10294: \"$ac_try\"") >&5 + { (eval echo "$as_me:10295: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10297: \$? = $ac_status" >&5 + echo "$as_me:10298: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_XOPEN_SOURCE_set=yes else @@ -10303,12 +10304,12 @@ cat conftest.$ac_ext >&5 cf_XOPEN_SOURCE_set=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:10306: result: $cf_XOPEN_SOURCE_set" >&5 + echo "$as_me:10307: result: $cf_XOPEN_SOURCE_set" >&5 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 if test $cf_XOPEN_SOURCE_set = yes then cat >conftest.$ac_ext <<_ACEOF -#line 10311 "configure" +#line 10312 "configure" #include "confdefs.h" #include <stdlib.h> int @@ -10323,16 +10324,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10326: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10327: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10329: \$? = $ac_status" >&5 + echo "$as_me:10330: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10332: \"$ac_try\"") >&5 + { (eval echo "$as_me:10333: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10335: \$? = $ac_status" >&5 + echo "$as_me:10336: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_XOPEN_SOURCE_set_ok=yes else @@ -10343,19 +10344,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext if test $cf_XOPEN_SOURCE_set_ok = no then - { echo "$as_me:10346: WARNING: _XOPEN_SOURCE is lower than requested" >&5 + { echo "$as_me:10347: WARNING: _XOPEN_SOURCE is lower than requested" >&5 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} fi else -echo "$as_me:10351: checking if we should define _XOPEN_SOURCE" >&5 +echo "$as_me:10352: 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 10358 "configure" +#line 10359 "configure" #include "confdefs.h" #include <stdlib.h> @@ -10374,16 +10375,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10377: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10378: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10380: \$? = $ac_status" >&5 + echo "$as_me:10381: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10383: \"$ac_try\"") >&5 + { (eval echo "$as_me:10384: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10386: \$? = $ac_status" >&5 + echo "$as_me:10387: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -10392,7 +10393,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 10395 "configure" +#line 10396 "configure" #include "confdefs.h" #include <stdlib.h> @@ -10411,16 +10412,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10414: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10415: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10417: \$? = $ac_status" >&5 + echo "$as_me:10418: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10420: \"$ac_try\"") >&5 + { (eval echo "$as_me:10421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10423: \$? = $ac_status" >&5 + echo "$as_me:10424: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -10435,7 +10436,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10438: result: $cf_cv_xopen_source" >&5 +echo "$as_me:10439: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -10553,14 +10554,14 @@ fi fi fi -echo "$as_me:10556: checking if SIGWINCH is defined" >&5 +echo "$as_me:10557: 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 10563 "configure" +#line 10564 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10575,23 +10576,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10578: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10579: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10581: \$? = $ac_status" >&5 + echo "$as_me:10582: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10584: \"$ac_try\"") >&5 + { (eval echo "$as_me:10585: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10587: \$? = $ac_status" >&5 + echo "$as_me:10588: \$? = $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 10594 "configure" +#line 10595 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -10609,16 +10610,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10612: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10613: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10615: \$? = $ac_status" >&5 + echo "$as_me:10616: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10618: \"$ac_try\"") >&5 + { (eval echo "$as_me:10619: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10621: \$? = $ac_status" >&5 + echo "$as_me:10622: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -10632,11 +10633,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10635: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:10636: 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:10639: checking for actual SIGWINCH definition" >&5 +echo "$as_me:10640: 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 @@ -10647,7 +10648,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 10650 "configure" +#line 10651 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -10669,16 +10670,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10672: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10673: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10675: \$? = $ac_status" >&5 + echo "$as_me:10676: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10678: \"$ac_try\"") >&5 + { (eval echo "$as_me:10679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10681: \$? = $ac_status" >&5 + echo "$as_me:10682: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -10692,7 +10693,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:10695: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:10696: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -10704,7 +10705,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:10707: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:10708: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -10789,7 +10790,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:10792: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:10793: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -10799,7 +10800,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:10802: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:10803: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -10809,7 +10810,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:10812: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:10813: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -10818,7 +10819,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 10821 "configure" +#line 10822 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10830,16 +10831,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10833: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10834: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10836: \$? = $ac_status" >&5 + echo "$as_me:10837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10839: \"$ac_try\"") >&5 + { (eval echo "$as_me:10840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10842: \$? = $ac_status" >&5 + echo "$as_me:10843: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10847,12 +10848,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:10850: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:10851: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:10855: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:10856: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -10864,7 +10865,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:10867: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:10868: checking if you want NSS compatible SSL libraries" >&5 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6 if test "${cf_cv_use_libnss_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10879,10 +10880,10 @@ else fi; fi -echo "$as_me:10882: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:10883: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:10885: checking if you want ssl library" >&5 +echo "$as_me:10886: 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 @@ -10897,10 +10898,10 @@ else fi; fi -echo "$as_me:10900: result: $cf_cv_use_libssl" >&5 +echo "$as_me:10901: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:10903: checking if you want gnutls support" >&5 +echo "$as_me:10904: checking if you want gnutls support" >&5 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10915,11 +10916,11 @@ else fi; fi -echo "$as_me:10918: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:10919: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS. -echo "$as_me:10922: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:10923: checking if you want gnutls-openssl compat" >&5 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6 if test "${cf_cv_gnutls_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10934,10 +10935,10 @@ else fi; fi -echo "$as_me:10937: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:10938: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:10940: checking if you want socks library" >&5 +echo "$as_me:10941: 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 @@ -10952,10 +10953,10 @@ else fi; fi -echo "$as_me:10955: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:10956: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:10958: checking if you want socks5 library" >&5 +echo "$as_me:10959: 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 @@ -10970,7 +10971,7 @@ else fi; fi -echo "$as_me:10973: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:10974: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -11009,7 +11010,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11012 "configure" +#line 11013 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11021,16 +11022,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11024: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11025: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11027: \$? = $ac_status" >&5 + echo "$as_me:11028: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11030: \"$ac_try\"") >&5 + { (eval echo "$as_me:11031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11033: \$? = $ac_status" >&5 + echo "$as_me:11034: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11047,7 +11048,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:11050: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11051: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11090,7 +11091,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11093 "configure" +#line 11094 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11102,16 +11103,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11105: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11106: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11108: \$? = $ac_status" >&5 + echo "$as_me:11109: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11111: \"$ac_try\"") >&5 + { (eval echo "$as_me:11112: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11114: \$? = $ac_status" >&5 + echo "$as_me:11115: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11128,7 +11129,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:11131: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11132: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11146,7 +11147,7 @@ echo "${as_me:-configure}:11131: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:11149: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:11150: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -11171,7 +11172,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:11174: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:11175: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11200,7 +11201,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:11203: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:11204: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11209,7 +11210,7 @@ echo "${as_me:-configure}:11203: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:11212: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:11213: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -11223,12 +11224,12 @@ esac cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me:-configure}:11226: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:11227: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11231 "configure" +#line 11232 "configure" #include "confdefs.h" #include <stdio.h> @@ -11244,16 +11245,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11247: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11248: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11250: \$? = $ac_status" >&5 + echo "$as_me:11251: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11253: \"$ac_try\"") >&5 + { (eval echo "$as_me:11254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11256: \$? = $ac_status" >&5 + echo "$as_me:11257: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -11267,7 +11268,7 @@ cat conftest.$ac_ext >&5 LIBS="-lsocks $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11270 "configure" +#line 11271 "configure" #include "confdefs.h" #include <stdio.h> @@ -11283,16 +11284,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11286: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11287: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11289: \$? = $ac_status" >&5 + echo "$as_me:11290: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11292: \"$ac_try\"") >&5 + { (eval echo "$as_me:11293: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11295: \$? = $ac_status" >&5 + echo "$as_me:11296: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes @@ -11309,9 +11310,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me:-configure}:11312: testing find linkage for socks library ..." 1>&5 +echo "${as_me:-configure}:11313: testing find linkage for socks library ..." 1>&5 -echo "${as_me:-configure}:11314: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:11315: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -11402,11 +11403,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6 -echo "${as_me:-configure}:11405: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:11406: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 11409 "configure" +#line 11410 "configure" #include "confdefs.h" #include <stdio.h> @@ -11422,21 +11423,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11425: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11426: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11428: \$? = $ac_status" >&5 + echo "$as_me:11429: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11431: \"$ac_try\"") >&5 + { (eval echo "$as_me:11432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11434: \$? = $ac_status" >&5 + echo "$as_me:11435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6 -echo "${as_me:-configure}:11439: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me:-configure}:11440: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -11454,7 +11455,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me:-configure}:11457: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me:-configure}:11458: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -11529,13 +11530,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6 -echo "${as_me:-configure}:11532: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:11533: testing ... testing $cf_cv_library_path_socks ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lsocks $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 11538 "configure" +#line 11539 "configure" #include "confdefs.h" #include <stdio.h> @@ -11551,21 +11552,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11554: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11555: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11557: \$? = $ac_status" >&5 + echo "$as_me:11558: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11560: \"$ac_try\"") >&5 + { (eval echo "$as_me:11561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11563: \$? = $ac_status" >&5 + echo "$as_me:11564: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6 -echo "${as_me:-configure}:11568: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me:-configure}:11569: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -11624,7 +11625,7 @@ if test -n "$cf_cv_header_path_socks" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11627 "configure" +#line 11628 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11636,16 +11637,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11639: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11640: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11642: \$? = $ac_status" >&5 + echo "$as_me:11643: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11645: \"$ac_try\"") >&5 + { (eval echo "$as_me:11646: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11648: \$? = $ac_status" >&5 + echo "$as_me:11649: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11662,7 +11663,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:11665: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11666: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11698,7 +11699,7 @@ if test -n "$cf_cv_library_path_socks" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:11701: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:11702: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11723,7 +11724,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:11726: WARNING: Cannot find socks library" >&5 +{ echo "$as_me:11727: WARNING: Cannot find socks library" >&5 echo "$as_me: WARNING: Cannot find socks library" >&2;} fi @@ -11766,7 +11767,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:11769: error: cannot link with socks library" >&5 + { { echo "$as_me:11770: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -11807,7 +11808,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11810 "configure" +#line 11811 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11819,16 +11820,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11822: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11823: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11825: \$? = $ac_status" >&5 + echo "$as_me:11826: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11828: \"$ac_try\"") >&5 + { (eval echo "$as_me:11829: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11831: \$? = $ac_status" >&5 + echo "$as_me:11832: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11845,7 +11846,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:11848: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11849: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11888,7 +11889,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11891 "configure" +#line 11892 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11900,16 +11901,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11903: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11904: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11906: \$? = $ac_status" >&5 + echo "$as_me:11907: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11909: \"$ac_try\"") >&5 + { (eval echo "$as_me:11910: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11912: \$? = $ac_status" >&5 + echo "$as_me:11913: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11926,7 +11927,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:11929: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:11930: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11944,7 +11945,7 @@ echo "${as_me:-configure}:11929: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:11947: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:11948: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -11969,7 +11970,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:11972: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:11973: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11998,7 +11999,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:12001: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:12002: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12007,7 +12008,7 @@ echo "${as_me:-configure}:12001: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:12010: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:12011: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -12040,11 +12041,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:12043: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:12044: 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 12047 "configure" +#line 12048 "configure" #include "confdefs.h" #include <socks.h> @@ -12058,16 +12059,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12061: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12062: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12064: \$? = $ac_status" >&5 + echo "$as_me:12065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12067: \"$ac_try\"") >&5 + { (eval echo "$as_me:12068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12070: \$? = $ac_status" >&5 + echo "$as_me:12071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF @@ -12079,7 +12080,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 12082 "configure" +#line 12083 "configure" #include "confdefs.h" #include <socks.h> int @@ -12091,29 +12092,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12094: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12095: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12097: \$? = $ac_status" >&5 + echo "$as_me:12098: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12100: \"$ac_try\"") >&5 + { (eval echo "$as_me:12101: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12103: \$? = $ac_status" >&5 + echo "$as_me:12104: \$? = $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:12109: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:12110: 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:12116: result: $cf_use_socks4" >&5 +echo "$as_me:12117: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -12168,10 +12169,10 @@ EOF fi -echo "$as_me:12171: checking if socks5p.h is available" >&5 +echo "$as_me:12172: 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 12174 "configure" +#line 12175 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -12186,16 +12187,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12189: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12190: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12192: \$? = $ac_status" >&5 + echo "$as_me:12193: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12195: \"$ac_try\"") >&5 + { (eval echo "$as_me:12196: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12198: \$? = $ac_status" >&5 + echo "$as_me:12199: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -12204,7 +12205,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:12207: result: $cf_use_socks5p_h" >&5 +echo "$as_me:12208: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && @@ -12216,14 +12217,14 @@ else cf_test_netlibs=no -echo "$as_me:12219: checking for network libraries" >&5 +echo "$as_me:12220: 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:12226: result: working..." >&5 +echo "$as_me:12227: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -12235,23 +12236,23 @@ case $host_os in for ac_header in windows.h winsock.h winsock2.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:12238: checking for $ac_header" >&5 +echo "$as_me:12239: 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 12244 "configure" +#line 12245 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:12248: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:12249: \"$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:12254: \$? = $ac_status" >&5 + echo "$as_me:12255: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -12270,7 +12271,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:12273: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:12274: 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 @@ -12305,7 +12306,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 12308 "configure" +#line 12309 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -12332,22 +12333,22 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12335: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12336: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12338: \$? = $ac_status" >&5 + echo "$as_me:12339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12341: \"$ac_try\"") >&5 + { (eval echo "$as_me:12342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12344: \$? = $ac_status" >&5 + echo "$as_me:12345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:12350: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:12351: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -12360,13 +12361,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12363: checking for $ac_func" >&5 +echo "$as_me:12364: 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 12369 "configure" +#line 12370 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12397,16 +12398,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12400: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12401: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12403: \$? = $ac_status" >&5 + echo "$as_me:12404: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12406: \"$ac_try\"") >&5 + { (eval echo "$as_me:12407: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12409: \$? = $ac_status" >&5 + echo "$as_me:12410: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12416,7 +12417,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12419: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12420: 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 @@ -12425,7 +12426,7 @@ EOF else -echo "$as_me:12428: checking for gethostname in -lnsl" >&5 +echo "$as_me:12429: 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 @@ -12433,7 +12434,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12436 "configure" +#line 12437 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12452,16 +12453,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12455: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12456: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12458: \$? = $ac_status" >&5 + echo "$as_me:12459: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12461: \"$ac_try\"") >&5 + { (eval echo "$as_me:12462: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12464: \$? = $ac_status" >&5 + echo "$as_me:12465: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -12472,7 +12473,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12475: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:12476: 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 @@ -12489,7 +12490,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:12492: checking for gethostname in -lsocket" >&5 +echo "$as_me:12493: 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 @@ -12497,7 +12498,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12500 "configure" +#line 12501 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12516,16 +12517,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12519: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12520: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12522: \$? = $ac_status" >&5 + echo "$as_me:12523: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12525: \"$ac_try\"") >&5 + { (eval echo "$as_me:12526: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12528: \$? = $ac_status" >&5 + echo "$as_me:12529: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -12536,7 +12537,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12539: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:12540: 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 @@ -12560,7 +12561,7 @@ fi fi done - echo "$as_me:12563: checking for main in -linet" >&5 + echo "$as_me:12564: 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 @@ -12568,7 +12569,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12571 "configure" +#line 12572 "configure" #include "confdefs.h" int @@ -12580,16 +12581,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12583: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12584: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12586: \$? = $ac_status" >&5 + echo "$as_me:12587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12589: \"$ac_try\"") >&5 + { (eval echo "$as_me:12590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12592: \$? = $ac_status" >&5 + echo "$as_me:12593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -12600,7 +12601,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12603: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:12604: 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" @@ -12611,13 +12612,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12614: checking for $ac_func" >&5 +echo "$as_me:12615: 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 12620 "configure" +#line 12621 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12648,16 +12649,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12651: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12652: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12654: \$? = $ac_status" >&5 + echo "$as_me:12655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12657: \"$ac_try\"") >&5 + { (eval echo "$as_me:12658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12660: \$? = $ac_status" >&5 + echo "$as_me:12661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12667,7 +12668,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12670: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12671: 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 @@ -12676,7 +12677,7 @@ EOF else -echo "$as_me:12679: checking for socket in -lsocket" >&5 +echo "$as_me:12680: 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 @@ -12684,7 +12685,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12687 "configure" +#line 12688 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12703,16 +12704,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12706: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12707: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12709: \$? = $ac_status" >&5 + echo "$as_me:12710: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12712: \"$ac_try\"") >&5 + { (eval echo "$as_me:12713: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12715: \$? = $ac_status" >&5 + echo "$as_me:12716: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -12723,7 +12724,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12726: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:12727: 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 @@ -12740,7 +12741,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:12743: checking for socket in -lbsd" >&5 +echo "$as_me:12744: 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 @@ -12748,7 +12749,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12751 "configure" +#line 12752 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12767,16 +12768,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12770: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12771: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12773: \$? = $ac_status" >&5 + echo "$as_me:12774: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12776: \"$ac_try\"") >&5 + { (eval echo "$as_me:12777: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12779: \$? = $ac_status" >&5 + echo "$as_me:12780: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -12787,7 +12788,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12790: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:12791: 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 @@ -12816,13 +12817,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12819: checking for $ac_func" >&5 +echo "$as_me:12820: 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 12825 "configure" +#line 12826 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12853,16 +12854,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12856: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12857: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12859: \$? = $ac_status" >&5 + echo "$as_me:12860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12862: \"$ac_try\"") >&5 + { (eval echo "$as_me:12863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12865: \$? = $ac_status" >&5 + echo "$as_me:12866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -12872,7 +12873,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:12875: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:12876: 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 @@ -12881,7 +12882,7 @@ EOF else -echo "$as_me:12884: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:12885: 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 @@ -12889,7 +12890,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12892 "configure" +#line 12893 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -12908,16 +12909,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12911: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12912: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12914: \$? = $ac_status" >&5 + echo "$as_me:12915: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12917: \"$ac_try\"") >&5 + { (eval echo "$as_me:12918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12920: \$? = $ac_status" >&5 + echo "$as_me:12921: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -12928,7 +12929,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:12931: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:12932: 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 @@ -12953,13 +12954,13 @@ done for ac_func in inet_ntoa do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:12956: checking for $ac_func" >&5 +echo "$as_me:12957: 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 12962 "configure" +#line 12963 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -12990,16 +12991,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12993: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12994: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12996: \$? = $ac_status" >&5 + echo "$as_me:12997: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12999: \"$ac_try\"") >&5 + { (eval echo "$as_me:13000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13002: \$? = $ac_status" >&5 + echo "$as_me:13003: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -13009,7 +13010,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13012: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:13013: 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 @@ -13018,7 +13019,7 @@ EOF else -echo "$as_me:13021: checking for inet_ntoa in -lnsl" >&5 +echo "$as_me:13022: checking for inet_ntoa in -lnsl" >&5 echo $ECHO_N "checking for inet_ntoa in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_inet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13026,7 +13027,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13029 "configure" +#line 13030 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13045,16 +13046,16 @@ inet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13048: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13049: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13051: \$? = $ac_status" >&5 + echo "$as_me:13052: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13054: \"$ac_try\"") >&5 + { (eval echo "$as_me:13055: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13057: \$? = $ac_status" >&5 + echo "$as_me:13058: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_inet_ntoa=yes else @@ -13065,7 +13066,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13068: result: $ac_cv_lib_nsl_inet_ntoa" >&5 +echo "$as_me:13069: result: $ac_cv_lib_nsl_inet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_inet_ntoa" >&6 if test $ac_cv_lib_nsl_inet_ntoa = yes; then @@ -13090,13 +13091,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:13093: checking for $ac_func" >&5 +echo "$as_me:13094: 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 13099 "configure" +#line 13100 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -13127,16 +13128,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13130: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13131: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13133: \$? = $ac_status" >&5 + echo "$as_me:13134: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13136: \"$ac_try\"") >&5 + { (eval echo "$as_me:13137: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13139: \$? = $ac_status" >&5 + echo "$as_me:13140: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -13146,7 +13147,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13149: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:13150: 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 @@ -13155,7 +13156,7 @@ EOF else -echo "$as_me:13158: checking for gethostbyname in -lnetwork" >&5 +echo "$as_me:13159: checking for gethostbyname in -lnetwork" >&5 echo $ECHO_N "checking for gethostbyname in -lnetwork... $ECHO_C" >&6 if test "${ac_cv_lib_network_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13163,7 +13164,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnetwork $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13166 "configure" +#line 13167 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13182,16 +13183,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13185: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13186: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13188: \$? = $ac_status" >&5 + echo "$as_me:13189: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13191: \"$ac_try\"") >&5 + { (eval echo "$as_me:13192: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13194: \$? = $ac_status" >&5 + echo "$as_me:13195: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_network_gethostbyname=yes else @@ -13202,7 +13203,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13205: result: $ac_cv_lib_network_gethostbyname" >&5 +echo "$as_me:13206: result: $ac_cv_lib_network_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_network_gethostbyname" >&6 if test $ac_cv_lib_network_gethostbyname = yes; then @@ -13227,13 +13228,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:13230: checking for $ac_func" >&5 +echo "$as_me:13231: 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 13236 "configure" +#line 13237 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -13264,16 +13265,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13267: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13268: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13270: \$? = $ac_status" >&5 + echo "$as_me:13271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13273: \"$ac_try\"") >&5 + { (eval echo "$as_me:13274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13276: \$? = $ac_status" >&5 + echo "$as_me:13277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -13283,7 +13284,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13286: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:13287: 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 @@ -13292,7 +13293,7 @@ EOF else -echo "$as_me:13295: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:13296: 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 @@ -13300,7 +13301,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13303 "configure" +#line 13304 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13319,16 +13320,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13322: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13323: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13325: \$? = $ac_status" >&5 + echo "$as_me:13326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13328: \"$ac_try\"") >&5 + { (eval echo "$as_me:13329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13331: \$? = $ac_status" >&5 + echo "$as_me:13332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -13339,7 +13340,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13342: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:13343: 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 @@ -13396,14 +13397,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:13399: checking for inet_aton function" >&5 +echo "$as_me:13400: 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 13406 "configure" +#line 13407 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -13438,16 +13439,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13441: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13442: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13444: \$? = $ac_status" >&5 + echo "$as_me:13445: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13447: \"$ac_try\"") >&5 + { (eval echo "$as_me:13448: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13450: \$? = $ac_status" >&5 + echo "$as_me:13451: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -13457,7 +13458,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13460: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:13461: 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 @@ -13466,14 +13467,14 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:13469: checking for inet_addr function" >&5 + echo "$as_me:13470: 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 13476 "configure" +#line 13477 "configure" #include "confdefs.h" #if defined(__MINGW32__) @@ -13508,16 +13509,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13511: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13512: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13514: \$? = $ac_status" >&5 + echo "$as_me:13515: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13517: \"$ac_try\"") >&5 + { (eval echo "$as_me:13518: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13520: \$? = $ac_status" >&5 + echo "$as_me:13521: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -13527,10 +13528,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13530: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:13531: 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:13533: checking for library with inet_addr" >&5 + echo "$as_me:13534: 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 @@ -13541,7 +13542,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 13544 "configure" +#line 13545 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -13557,16 +13558,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13560: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13561: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13563: \$? = $ac_status" >&5 + echo "$as_me:13564: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13566: \"$ac_try\"") >&5 + { (eval echo "$as_me:13567: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13569: \$? = $ac_status" >&5 + echo "$as_me:13570: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -13580,7 +13581,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:13583: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:13584: 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 @@ -13601,13 +13602,13 @@ done LIBS="$cf_add_libs" else - { echo "$as_me:13604: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:13605: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi fi -echo "$as_me:13610: checking if you want to use pkg-config" >&5 +echo "$as_me:13611: checking if you want to use pkg-config" >&5 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 # Check whether --with-pkg-config or --without-pkg-config was given. @@ -13617,7 +13618,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:13620: result: $cf_pkg_config" >&5 +echo "$as_me:13621: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in @@ -13629,7 +13630,7 @@ case $cf_pkg_config in if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 -echo "$as_me:13632: checking for $ac_word" >&5 +echo "$as_me:13633: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13646,7 +13647,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:13649: found $ac_dir/$ac_word" >&5 + echo "$as_me:13650: found $ac_dir/$ac_word" >&5 break fi done @@ -13657,10 +13658,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:13660: result: $PKG_CONFIG" >&5 + echo "$as_me:13661: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:13663: result: no" >&5 + echo "$as_me:13664: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -13669,7 +13670,7 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:13672: checking for $ac_word" >&5 +echo "$as_me:13673: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13686,7 +13687,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:13689: found $ac_dir/$ac_word" >&5 + echo "$as_me:13690: found $ac_dir/$ac_word" >&5 break fi done @@ -13698,10 +13699,10 @@ fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then - echo "$as_me:13701: result: $ac_pt_PKG_CONFIG" >&5 + echo "$as_me:13702: result: $ac_pt_PKG_CONFIG" >&5 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 else - echo "$as_me:13704: result: no" >&5 + echo "$as_me:13705: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -13744,14 +13745,14 @@ case ".$PKG_CONFIG" in PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:13747: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:13748: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; esac elif test "x$cf_pkg_config" != xno ; then - { echo "$as_me:13754: WARNING: pkg-config is not installed" >&5 + { echo "$as_me:13755: WARNING: pkg-config is not installed" >&5 echo "$as_me: WARNING: pkg-config is not installed" >&2;} fi @@ -13796,7 +13797,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13799 "configure" +#line 13800 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13808,16 +13809,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13811: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13812: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13814: \$? = $ac_status" >&5 + echo "$as_me:13815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13817: \"$ac_try\"") >&5 + { (eval echo "$as_me:13818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13820: \$? = $ac_status" >&5 + echo "$as_me:13821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13834,7 +13835,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:13837: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13838: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13877,7 +13878,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13880 "configure" +#line 13881 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13889,16 +13890,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13892: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13893: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13895: \$? = $ac_status" >&5 + echo "$as_me:13896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13898: \"$ac_try\"") >&5 + { (eval echo "$as_me:13899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13901: \$? = $ac_status" >&5 + echo "$as_me:13902: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13915,7 +13916,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:13918: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:13919: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13933,7 +13934,7 @@ echo "${as_me:-configure}:13918: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:13936: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:13937: 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 @@ -13958,7 +13959,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:13961: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13962: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13987,7 +13988,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:13990: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:13991: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13996,7 +13997,7 @@ echo "${as_me:-configure}:13990: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:13999: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:14000: 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 @@ -14013,15 +14014,15 @@ esac cf_cv_pkg_ssl= for cf_try_package in openssl libssl do - echo "$as_me:14016: checking pkg-config for $cf_try_package" >&5 + echo "$as_me:14017: checking pkg-config for $cf_try_package" >&5 echo $ECHO_N "checking pkg-config for $cf_try_package... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_try_package ; then cf_cv_pkg_ssl=$cf_try_package - echo "$as_me:14020: result: yes" >&5 + echo "$as_me:14021: result: yes" >&5 echo "${ECHO_T}yes" >&6 break else - echo "$as_me:14024: result: no" >&5 + echo "$as_me:14025: result: no" >&5 echo "${ECHO_T}no" >&6 fi done @@ -14165,7 +14166,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:14168: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:14169: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$cf_libs_ssl" # Filter out duplicates - this happens with badly-designed ".pc" files... @@ -14201,7 +14202,7 @@ LIBS="$cf_add_libs" (*-ldl) ;; (*) - echo "$as_me:14204: checking for dlsym in -ldl" >&5 + echo "$as_me:14205: checking for dlsym in -ldl" >&5 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14209,7 +14210,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14212 "configure" +#line 14213 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14228,16 +14229,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14231: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14232: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14234: \$? = $ac_status" >&5 + echo "$as_me:14235: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14237: \"$ac_try\"") >&5 + { (eval echo "$as_me:14238: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14240: \$? = $ac_status" >&5 + echo "$as_me:14241: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -14248,7 +14249,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14251: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:14252: result: $ac_cv_lib_dl_dlsym" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 if test $ac_cv_lib_dl_dlsym = yes; then cf_extra_ssl_libs="$cf_extra_ssl_libs -ldl" @@ -14264,12 +14265,12 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me:-configure}:14267: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:14268: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14272 "configure" +#line 14273 "configure" #include "confdefs.h" #include <stdio.h> @@ -14298,16 +14299,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14301: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14302: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14304: \$? = $ac_status" >&5 + echo "$as_me:14305: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14307: \"$ac_try\"") >&5 + { (eval echo "$as_me:14308: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14310: \$? = $ac_status" >&5 + echo "$as_me:14311: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -14321,7 +14322,7 @@ cat conftest.$ac_ext >&5 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14324 "configure" +#line 14325 "configure" #include "confdefs.h" #include <stdio.h> @@ -14350,16 +14351,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14353: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14354: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14356: \$? = $ac_status" >&5 + echo "$as_me:14357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14359: \"$ac_try\"") >&5 + { (eval echo "$as_me:14360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14362: \$? = $ac_status" >&5 + echo "$as_me:14363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes @@ -14376,9 +14377,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me:-configure}:14379: testing find linkage for ssl library ..." 1>&5 +echo "${as_me:-configure}:14380: testing find linkage for ssl library ..." 1>&5 -echo "${as_me:-configure}:14381: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:14382: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -14469,11 +14470,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:14472: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14473: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 14476 "configure" +#line 14477 "configure" #include "confdefs.h" #include <stdio.h> @@ -14502,21 +14503,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14505: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14508: \$? = $ac_status" >&5 + echo "$as_me:14509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14511: \"$ac_try\"") >&5 + { (eval echo "$as_me:14512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14514: \$? = $ac_status" >&5 + echo "$as_me:14515: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:14519: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14520: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -14534,7 +14535,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me:-configure}:14537: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me:-configure}:14538: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14542,7 +14543,7 @@ echo "${as_me:-configure}:14537: testing Searching for ssl library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14545 "configure" +#line 14546 "configure" #include "confdefs.h" #include <stdio.h> @@ -14571,21 +14572,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14574: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14575: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14577: \$? = $ac_status" >&5 + echo "$as_me:14578: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14580: \"$ac_try\"") >&5 + { (eval echo "$as_me:14581: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14583: \$? = $ac_status" >&5 + echo "$as_me:14584: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me:-configure}:14588: testing ... found ssl library in system ..." 1>&5 +echo "${as_me:-configure}:14589: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -14666,13 +14667,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6 -echo "${as_me:-configure}:14669: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14670: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 14675 "configure" +#line 14676 "configure" #include "confdefs.h" #include <stdio.h> @@ -14701,21 +14702,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14705: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14707: \$? = $ac_status" >&5 + echo "$as_me:14708: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14710: \"$ac_try\"") >&5 + { (eval echo "$as_me:14711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14713: \$? = $ac_status" >&5 + echo "$as_me:14714: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6 -echo "${as_me:-configure}:14718: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14719: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -14777,7 +14778,7 @@ if test -n "$cf_cv_library_path_ssl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:14780: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:14781: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14833,7 +14834,7 @@ if test -n "$cf_cv_header_path_ssl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14836 "configure" +#line 14837 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14845,16 +14846,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14848: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14849: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14851: \$? = $ac_status" >&5 + echo "$as_me:14852: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14854: \"$ac_try\"") >&5 + { (eval echo "$as_me:14855: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14857: \$? = $ac_status" >&5 + echo "$as_me:14858: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14871,7 +14872,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:14874: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:14875: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14904,7 +14905,7 @@ EOF if test -n "$cf_cv_header_path_ssl" ; then test -n "$verbose" && echo " checking ssl header-path $cf_cv_header_path_ssl" 1>&6 -echo "${as_me:-configure}:14907: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me:-configure}:14908: testing checking ssl header-path $cf_cv_header_path_ssl ..." 1>&5 case $cf_cv_header_path_ssl in (*/openssl) @@ -14917,10 +14918,10 @@ EOF esac fi -echo "$as_me:14920: checking for X509 support" >&5 +echo "$as_me:14921: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14923 "configure" +#line 14924 "configure" #include "confdefs.h" #include <stdio.h> @@ -14949,16 +14950,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14952: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14953: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14955: \$? = $ac_status" >&5 + echo "$as_me:14956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14958: \"$ac_try\"") >&5 + { (eval echo "$as_me:14959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14961: \$? = $ac_status" >&5 + echo "$as_me:14962: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14967,7 +14968,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14970: result: $cf_x509_support" >&5 +echo "$as_me:14971: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -15019,7 +15020,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15022 "configure" +#line 15023 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15031,16 +15032,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15034: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15035: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15037: \$? = $ac_status" >&5 + echo "$as_me:15038: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15040: \"$ac_try\"") >&5 + { (eval echo "$as_me:15041: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15043: \$? = $ac_status" >&5 + echo "$as_me:15044: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15057,7 +15058,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:15060: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15061: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15100,7 +15101,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15103 "configure" +#line 15104 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15112,16 +15113,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15115: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15116: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15118: \$? = $ac_status" >&5 + echo "$as_me:15119: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15121: \"$ac_try\"") >&5 + { (eval echo "$as_me:15122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15124: \$? = $ac_status" >&5 + echo "$as_me:15125: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15138,7 +15139,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:15141: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15142: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15156,7 +15157,7 @@ echo "${as_me:-configure}:15141: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:15159: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:15160: 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 @@ -15181,7 +15182,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:15184: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15185: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15210,7 +15211,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:15213: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15214: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15219,7 +15220,7 @@ echo "${as_me:-configure}:15213: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:15222: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:15223: 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 @@ -15237,12 +15238,12 @@ esac (yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me:-configure}:15240: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:15241: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:15245: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:15246: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -15374,7 +15375,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:15377: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:15378: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$cf_libs_ssl" # Filter out duplicates - this happens with badly-designed ".pc" files... @@ -15396,7 +15397,7 @@ LIBS="$cf_add_libs" else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:15399: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:15400: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -15416,12 +15417,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:15419: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15420: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15424 "configure" +#line 15425 "configure" #include "confdefs.h" #include <stdio.h> @@ -15450,16 +15451,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15453: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15454: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15456: \$? = $ac_status" >&5 + echo "$as_me:15457: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15459: \"$ac_try\"") >&5 + { (eval echo "$as_me:15460: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15462: \$? = $ac_status" >&5 + echo "$as_me:15463: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -15473,7 +15474,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15476 "configure" +#line 15477 "configure" #include "confdefs.h" #include <stdio.h> @@ -15502,16 +15503,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15505: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15506: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15508: \$? = $ac_status" >&5 + echo "$as_me:15509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15511: \"$ac_try\"") >&5 + { (eval echo "$as_me:15512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15514: \$? = $ac_status" >&5 + echo "$as_me:15515: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -15528,9 +15529,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:15531: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:15532: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:15533: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15534: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -15621,11 +15622,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:15624: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15625: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 15628 "configure" +#line 15629 "configure" #include "confdefs.h" #include <stdio.h> @@ -15654,21 +15655,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15657: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15658: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15660: \$? = $ac_status" >&5 + echo "$as_me:15661: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15663: \"$ac_try\"") >&5 + { (eval echo "$as_me:15664: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15666: \$? = $ac_status" >&5 + echo "$as_me:15667: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:15671: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15672: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -15686,7 +15687,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:15689: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:15690: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -15761,13 +15762,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:15764: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15765: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 15770 "configure" +#line 15771 "configure" #include "confdefs.h" #include <stdio.h> @@ -15796,21 +15797,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15799: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15800: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15802: \$? = $ac_status" >&5 + echo "$as_me:15803: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15805: \"$ac_try\"") >&5 + { (eval echo "$as_me:15806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15808: \$? = $ac_status" >&5 + echo "$as_me:15809: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:15813: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:15814: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -15887,7 +15888,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15890 "configure" +#line 15891 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15899,16 +15900,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15902: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15903: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15905: \$? = $ac_status" >&5 + echo "$as_me:15906: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15908: \"$ac_try\"") >&5 + { (eval echo "$as_me:15909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15911: \$? = $ac_status" >&5 + echo "$as_me:15912: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15925,7 +15926,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:15928: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:15929: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15966,7 +15967,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:15969: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:15970: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -15995,13 +15996,13 @@ LIBS="$cf_add_libs" for ac_func in gnutls_protocol_set_priority do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:15998: checking for $ac_func" >&5 +echo "$as_me:15999: 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 16004 "configure" +#line 16005 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -16032,16 +16033,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16035: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16036: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16038: \$? = $ac_status" >&5 + echo "$as_me:16039: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16041: \"$ac_try\"") >&5 + { (eval echo "$as_me:16042: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16044: \$? = $ac_status" >&5 + echo "$as_me:16045: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -16051,7 +16052,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16054: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:16055: 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 @@ -16061,13 +16062,13 @@ EOF fi done - echo "$as_me:16064: checking for gnutls_rnd" >&5 + echo "$as_me:16065: checking for gnutls_rnd" >&5 echo $ECHO_N "checking for gnutls_rnd... $ECHO_C" >&6 if test "${ac_cv_func_gnutls_rnd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16070 "configure" +#line 16071 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gnutls_rnd (); below. */ @@ -16098,16 +16099,16 @@ f = gnutls_rnd; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16101: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16102: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16104: \$? = $ac_status" >&5 + echo "$as_me:16105: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16107: \"$ac_try\"") >&5 + { (eval echo "$as_me:16108: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16110: \$? = $ac_status" >&5 + echo "$as_me:16111: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -16117,7 +16118,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16120: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:16121: result: $ac_cv_func_gnutls_rnd" >&5 echo "${ECHO_T}$ac_cv_func_gnutls_rnd" >&6 if test $ac_cv_func_gnutls_rnd = yes; then cat >>confdefs.h <<\EOF @@ -16146,10 +16147,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:16149: checking for X509 support" >&5 +echo "$as_me:16150: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16152 "configure" +#line 16153 "configure" #include "confdefs.h" #include <stdio.h> @@ -16178,16 +16179,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16181: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16182: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16184: \$? = $ac_status" >&5 + echo "$as_me:16185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16187: \"$ac_try\"") >&5 + { (eval echo "$as_me:16188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16190: \$? = $ac_status" >&5 + echo "$as_me:16191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -16196,7 +16197,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:16199: result: $cf_x509_support" >&5 +echo "$as_me:16200: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -16247,7 +16248,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16250 "configure" +#line 16251 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16259,16 +16260,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16262: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16263: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16265: \$? = $ac_status" >&5 + echo "$as_me:16266: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16268: \"$ac_try\"") >&5 + { (eval echo "$as_me:16269: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16271: \$? = $ac_status" >&5 + echo "$as_me:16272: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16285,7 +16286,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:16288: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16289: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16328,7 +16329,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16331 "configure" +#line 16332 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16340,16 +16341,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16343: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16344: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16346: \$? = $ac_status" >&5 + echo "$as_me:16347: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16349: \"$ac_try\"") >&5 + { (eval echo "$as_me:16350: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16352: \$? = $ac_status" >&5 + echo "$as_me:16353: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16366,7 +16367,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:16369: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:16370: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -16384,7 +16385,7 @@ echo "${as_me:-configure}:16369: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:16387: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:16388: 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 @@ -16409,7 +16410,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:16412: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16413: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16438,7 +16439,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:16441: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:16442: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16447,7 +16448,7 @@ echo "${as_me:-configure}:16441: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:16450: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:16451: 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 @@ -16465,12 +16466,12 @@ esac (yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me:-configure}:16468: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me:-configure}:16469: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:16473: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:16474: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes cf_cv_pkg_config_ssl=yes @@ -16602,7 +16603,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me:-configure}:16605: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me:-configure}:16606: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_add_libs="$cf_libs_ssl" # Filter out duplicates - this happens with badly-designed ".pc" files... @@ -16624,7 +16625,7 @@ LIBS="$cf_add_libs" else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me:-configure}:16627: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me:-configure}:16628: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -16644,12 +16645,12 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me:-configure}:16647: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16648: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16652 "configure" +#line 16653 "configure" #include "confdefs.h" #include <stdio.h> @@ -16678,16 +16679,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16681: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16682: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16684: \$? = $ac_status" >&5 + echo "$as_me:16685: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16687: \"$ac_try\"") >&5 + { (eval echo "$as_me:16688: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16690: \$? = $ac_status" >&5 + echo "$as_me:16691: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16701,7 +16702,7 @@ cat conftest.$ac_ext >&5 LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16704 "configure" +#line 16705 "configure" #include "confdefs.h" #include <stdio.h> @@ -16730,16 +16731,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16733: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16736: \$? = $ac_status" >&5 + echo "$as_me:16737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16739: \"$ac_try\"") >&5 + { (eval echo "$as_me:16740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16742: \$? = $ac_status" >&5 + echo "$as_me:16743: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes @@ -16756,9 +16757,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me:-configure}:16759: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me:-configure}:16760: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me:-configure}:16761: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16762: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -16849,11 +16850,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:16852: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16853: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 16856 "configure" +#line 16857 "configure" #include "confdefs.h" #include <stdio.h> @@ -16882,21 +16883,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16885: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16886: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16888: \$? = $ac_status" >&5 + echo "$as_me:16889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16891: \"$ac_try\"") >&5 + { (eval echo "$as_me:16892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16894: \$? = $ac_status" >&5 + echo "$as_me:16895: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me:-configure}:16899: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16900: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -16914,7 +16915,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me:-configure}:16917: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me:-configure}:16918: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -16989,13 +16990,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:16992: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:16993: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 16998 "configure" +#line 16999 "configure" #include "confdefs.h" #include <stdio.h> @@ -17024,21 +17025,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17027: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17028: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17030: \$? = $ac_status" >&5 + echo "$as_me:17031: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17033: \"$ac_try\"") >&5 + { (eval echo "$as_me:17034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17036: \$? = $ac_status" >&5 + echo "$as_me:17037: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me:-configure}:17041: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me:-configure}:17042: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -17115,7 +17116,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17118 "configure" +#line 17119 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17127,16 +17128,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17130: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17131: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17133: \$? = $ac_status" >&5 + echo "$as_me:17134: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17136: \"$ac_try\"") >&5 + { (eval echo "$as_me:17137: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17139: \$? = $ac_status" >&5 + echo "$as_me:17140: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17153,7 +17154,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:17156: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:17157: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17194,7 +17195,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:17197: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:17198: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17223,13 +17224,13 @@ LIBS="$cf_add_libs" for ac_func in gnutls_protocol_set_priority do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:17226: checking for $ac_func" >&5 +echo "$as_me:17227: 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 17232 "configure" +#line 17233 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -17260,16 +17261,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17263: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17264: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17266: \$? = $ac_status" >&5 + echo "$as_me:17267: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17269: \"$ac_try\"") >&5 + { (eval echo "$as_me:17270: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17272: \$? = $ac_status" >&5 + echo "$as_me:17273: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -17279,7 +17280,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17282: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:17283: 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 @@ -17289,13 +17290,13 @@ EOF fi done - echo "$as_me:17292: checking for gnutls_rnd" >&5 + echo "$as_me:17293: checking for gnutls_rnd" >&5 echo $ECHO_N "checking for gnutls_rnd... $ECHO_C" >&6 if test "${ac_cv_func_gnutls_rnd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17298 "configure" +#line 17299 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gnutls_rnd (); below. */ @@ -17326,16 +17327,16 @@ f = gnutls_rnd; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17329: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17330: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17332: \$? = $ac_status" >&5 + echo "$as_me:17333: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17335: \"$ac_try\"") >&5 + { (eval echo "$as_me:17336: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17338: \$? = $ac_status" >&5 + echo "$as_me:17339: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gnutls_rnd=yes else @@ -17345,7 +17346,7 @@ ac_cv_func_gnutls_rnd=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17348: result: $ac_cv_func_gnutls_rnd" >&5 +echo "$as_me:17349: result: $ac_cv_func_gnutls_rnd" >&5 echo "${ECHO_T}$ac_cv_func_gnutls_rnd" >&6 if test $ac_cv_func_gnutls_rnd = yes; then cat >>confdefs.h <<\EOF @@ -17373,7 +17374,7 @@ LIBS="$cf_add_libs" fi if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:17376: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:17377: 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 @@ -17381,7 +17382,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17384 "configure" +#line 17385 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17400,16 +17401,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17403: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17404: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17406: \$? = $ac_status" >&5 + echo "$as_me:17407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17409: \"$ac_try\"") >&5 + { (eval echo "$as_me:17410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17412: \$? = $ac_status" >&5 + echo "$as_me:17413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -17420,7 +17421,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17423: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:17424: 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 @@ -17441,7 +17442,7 @@ done LIBS="$cf_add_libs" else - echo "$as_me:17444: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:17445: 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 @@ -17449,7 +17450,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17452 "configure" +#line 17453 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17468,16 +17469,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17471: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17472: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17474: \$? = $ac_status" >&5 + echo "$as_me:17475: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17477: \"$ac_try\"") >&5 + { (eval echo "$as_me:17478: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17480: \$? = $ac_status" >&5 + echo "$as_me:17481: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -17488,7 +17489,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17491: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:17492: 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 @@ -17509,7 +17510,7 @@ done LIBS="$cf_add_libs" else - { { echo "$as_me:17512: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:17513: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -17518,10 +17519,10 @@ fi fi -echo "$as_me:17521: checking for X509 support" >&5 +echo "$as_me:17522: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17524 "configure" +#line 17525 "configure" #include "confdefs.h" #include <stdio.h> @@ -17550,16 +17551,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17553: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17554: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17556: \$? = $ac_status" >&5 + echo "$as_me:17557: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17559: \"$ac_try\"") >&5 + { (eval echo "$as_me:17560: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17562: \$? = $ac_status" >&5 + echo "$as_me:17563: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -17568,7 +17569,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:17571: result: $cf_x509_support" >&5 +echo "$as_me:17572: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -17600,7 +17601,7 @@ case "$cf_cv_use_libnss_compat" in ;; (yes) -echo "$as_me:17603: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:17604: checking for SSL_get_version in -lnss_compat_ossl" >&5 echo $ECHO_N "checking for SSL_get_version in -lnss_compat_ossl... $ECHO_C" >&6 if test "${ac_cv_lib_nss_compat_ossl_SSL_get_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17608,7 +17609,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17611 "configure" +#line 17612 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17627,16 +17628,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17630: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17631: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17633: \$? = $ac_status" >&5 + echo "$as_me:17634: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17636: \"$ac_try\"") >&5 + { (eval echo "$as_me:17637: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17639: \$? = $ac_status" >&5 + echo "$as_me:17640: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -17647,7 +17648,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17650: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:17651: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 echo "${ECHO_T}$ac_cv_lib_nss_compat_ossl_SSL_get_version" >&6 if test $ac_cv_lib_nss_compat_ossl_SSL_get_version = yes; then cat >>confdefs.h <<EOF @@ -17662,11 +17663,11 @@ else if test -d $cf_ssl_root ; then test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6 -echo "${as_me:-configure}:17665: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me:-configure}:17666: testing assume it is in $cf_ssl_root ..." 1>&5 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { { echo "$as_me:17669: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:17670: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -17681,13 +17682,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:17684: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:17685: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:17690: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:17691: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -17816,10 +17817,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:17819: checking for NSS compilant include directory" >&5 +echo "$as_me:17820: checking for NSS compilant include directory" >&5 echo $ECHO_N "checking for NSS compilant include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17822 "configure" +#line 17823 "configure" #include "confdefs.h" #include <stdio.h> @@ -17833,16 +17834,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17836: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17837: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17839: \$? = $ac_status" >&5 + echo "$as_me:17840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17842: \"$ac_try\"") >&5 + { (eval echo "$as_me:17843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17845: \$? = $ac_status" >&5 + echo "$as_me:17846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -17851,7 +17852,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:17854: result: $cf_ssl_incl" >&5 +echo "$as_me:17855: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF @@ -17860,10 +17861,10 @@ EOF fi -echo "$as_me:17863: checking if we can link to NSS compilant library" >&5 +echo "$as_me:17864: checking if we can link to NSS compilant library" >&5 echo $ECHO_N "checking if we can link to NSS compilant library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 17866 "configure" +#line 17867 "configure" #include "confdefs.h" #include <stdio.h> @@ -17882,16 +17883,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17885: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17886: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17888: \$? = $ac_status" >&5 + echo "$as_me:17889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17891: \"$ac_try\"") >&5 + { (eval echo "$as_me:17892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17894: \$? = $ac_status" >&5 + echo "$as_me:17895: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -17900,7 +17901,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:17903: result: $cf_ssl_library" >&5 +echo "$as_me:17904: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then @@ -17913,7 +17914,7 @@ cat >>confdefs.h <<\EOF EOF else - { { echo "$as_me:17916: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:17917: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -17921,7 +17922,7 @@ fi fi ### check for ipv6 support -echo "$as_me:17924: checking whether to enable ipv6" >&5 +echo "$as_me:17925: 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. @@ -17938,11 +17939,11 @@ EOF else enableval=no fi; -echo "$as_me:17941: result: $enableval" >&5 +echo "$as_me:17942: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:17945: checking ipv6 stack type" >&5 +echo "$as_me:17946: 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 @@ -17963,7 +17964,7 @@ do ;; (inria) cat >conftest.$ac_ext <<_ACEOF -#line 17966 "configure" +#line 17967 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17980,7 +17981,7 @@ rm -rf conftest* ;; (kame) cat >conftest.$ac_ext <<_ACEOF -#line 17983 "configure" +#line 17984 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -17997,7 +17998,7 @@ rm -rf conftest* ;; (linux-glibc) cat >conftest.$ac_ext <<_ACEOF -#line 18000 "configure" +#line 18001 "configure" #include "confdefs.h" #include <features.h> @@ -18023,7 +18024,7 @@ rm -rf conftest* ;; (toshiba) cat >conftest.$ac_ext <<_ACEOF -#line 18026 "configure" +#line 18027 "configure" #include "confdefs.h" #include <sys/param.h> @@ -18040,7 +18041,7 @@ rm -rf conftest* ;; (v6d) cat >conftest.$ac_ext <<_ACEOF -#line 18043 "configure" +#line 18044 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -18057,7 +18058,7 @@ rm -rf conftest* ;; (zeta) cat >conftest.$ac_ext <<_ACEOF -#line 18060 "configure" +#line 18061 "configure" #include "confdefs.h" #include <sys/param.h> @@ -18079,13 +18080,13 @@ rm -rf conftest* done fi -echo "$as_me:18082: result: $cf_cv_ipv6type" >&5 +echo "$as_me:18083: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:18088: checking for IPv6 library if required" >&5 +echo "$as_me:18089: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in (solaris) @@ -18115,13 +18116,13 @@ case $cf_cv_ipv6type in cf_ipv6dir=v6 ;; esac -echo "$as_me:18118: result: $cf_ipv6lib" >&5 +echo "$as_me:18119: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 18124 "configure" +#line 18125 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18137,16 +18138,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18140: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18141: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18143: \$? = $ac_status" >&5 + echo "$as_me:18144: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18146: \"$ac_try\"") >&5 + { (eval echo "$as_me:18147: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18149: \$? = $ac_status" >&5 + echo "$as_me:18150: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18264,7 +18265,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18267 "configure" +#line 18268 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18276,16 +18277,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18279: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18280: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18282: \$? = $ac_status" >&5 + echo "$as_me:18283: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18285: \"$ac_try\"") >&5 + { (eval echo "$as_me:18286: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18288: \$? = $ac_status" >&5 + echo "$as_me:18289: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18302,7 +18303,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:18305: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18306: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18330,13 +18331,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:18333: checking for getaddrinfo" >&5 + echo "$as_me:18334: 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 18339 "configure" +#line 18340 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -18367,16 +18368,16 @@ f = getaddrinfo; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18370: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18371: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18373: \$? = $ac_status" >&5 + echo "$as_me:18374: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18376: \"$ac_try\"") >&5 + { (eval echo "$as_me:18377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18379: \$? = $ac_status" >&5 + echo "$as_me:18380: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -18386,18 +18387,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18389: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:18390: 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:18396: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:18397: 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 18400 "configure" +#line 18401 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18413,25 +18414,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18416: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18417: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18419: \$? = $ac_status" >&5 + echo "$as_me:18420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18422: \"$ac_try\"") >&5 + { (eval echo "$as_me:18423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18425: \$? = $ac_status" >&5 + echo "$as_me:18426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18427: result: yes" >&5 + echo "$as_me:18428: 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:18434: result: no" >&5 +echo "$as_me:18435: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -18499,11 +18500,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:18502: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:18503: 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 18506 "configure" +#line 18507 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18519,25 +18520,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18522: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18525: \$? = $ac_status" >&5 + echo "$as_me:18526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18528: \"$ac_try\"") >&5 + { (eval echo "$as_me:18529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18531: \$? = $ac_status" >&5 + echo "$as_me:18532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18533: result: yes" >&5 + echo "$as_me:18534: 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:18540: result: no" >&5 +echo "$as_me:18541: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -18552,7 +18553,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:18555: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:18556: 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;} @@ -18560,7 +18561,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:18563: checking working getaddrinfo" >&5 +echo "$as_me:18564: 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 @@ -18570,7 +18571,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 18573 "configure" +#line 18574 "configure" #include "confdefs.h" #include <sys/types.h> @@ -18650,15 +18651,15 @@ int main(void) _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:18653: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18654: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18656: \$? = $ac_status" >&5 + echo "$as_me:18657: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:18658: \"$ac_try\"") >&5 + { (eval echo "$as_me:18659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18661: \$? = $ac_status" >&5 + echo "$as_me:18662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -18671,7 +18672,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:18674: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:18675: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then @@ -18687,12 +18688,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:18690: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:18691: 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:18695: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:18696: 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. @@ -18703,7 +18704,7 @@ fi fi -echo "$as_me:18706: checking for screen type" >&5 +echo "$as_me:18707: 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 @@ -18717,7 +18718,7 @@ case $withval in (curses|ncurses*|pdcurses|slang) cf_cv_screen=$withval ;; -(*) { { echo "$as_me:18720: error: Unexpected value $withval" >&5 +(*) { { echo "$as_me:18721: error: Unexpected value $withval" >&5 echo "$as_me: error: Unexpected value $withval" >&2;} { (exit 1); exit 1; }; } ;; @@ -18726,13 +18727,13 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:18729: result: $cf_cv_screen" >&5 +echo "$as_me:18730: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in (curses|ncurses*) -echo "$as_me:18735: checking for specific curses-directory" >&5 +echo "$as_me:18736: checking for specific curses-directory" >&5 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6 # Check whether --with-curses-dir or --without-curses-dir was given. @@ -18742,7 +18743,7 @@ if test "${with_curses_dir+set}" = set; then else cf_cv_curses_dir=no fi; -echo "$as_me:18745: result: $cf_cv_curses_dir" >&5 +echo "$as_me:18746: result: $cf_cv_curses_dir" >&5 echo "${ECHO_T}$cf_cv_curses_dir" >&6 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" ) @@ -18773,7 +18774,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:18776: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:18777: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -18806,7 +18807,7 @@ if test -n "$cf_cv_curses_dir/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18809 "configure" +#line 18810 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18818,16 +18819,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18821: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18822: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18824: \$? = $ac_status" >&5 + echo "$as_me:18825: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18827: \"$ac_try\"") >&5 + { (eval echo "$as_me:18828: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18830: \$? = $ac_status" >&5 + echo "$as_me:18831: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18844,7 +18845,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:18847: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:18848: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18880,7 +18881,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:18883: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:18884: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18899,7 +18900,7 @@ dft_color_style=yes case $cf_cv_screen in (curses) -echo "$as_me:18902: checking for extra include directories" >&5 +echo "$as_me:18903: 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 @@ -18925,11 +18926,11 @@ case $host_os in esac fi -echo "$as_me:18928: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:18929: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir" -echo "$as_me:18932: checking if we have identified curses headers" >&5 +echo "$as_me:18933: 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 @@ -18941,7 +18942,7 @@ for cf_header in \ curses.h ncurses/ncurses.h ncurses/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 18944 "configure" +#line 18945 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -18953,16 +18954,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18956: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18957: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18959: \$? = $ac_status" >&5 + echo "$as_me:18960: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18962: \"$ac_try\"") >&5 + { (eval echo "$as_me:18963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18965: \$? = $ac_status" >&5 + echo "$as_me:18966: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -18973,11 +18974,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18976: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:18977: 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:18980: error: No curses header-files found" >&5 + { { echo "$as_me:18981: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -18987,23 +18988,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:18990: checking for $ac_header" >&5 +echo "$as_me:18991: 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 18996 "configure" +#line 18997 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:19000: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:19001: \"$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:19006: \$? = $ac_status" >&5 + echo "$as_me:19007: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -19022,7 +19023,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:19025: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:19026: 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 @@ -19032,7 +19033,7 @@ EOF fi done -echo "$as_me:19035: checking for terminfo header" >&5 +echo "$as_me:19036: 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 @@ -19050,7 +19051,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 19053 "configure" +#line 19054 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -19065,16 +19066,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19068: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19069: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19071: \$? = $ac_status" >&5 + echo "$as_me:19072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19074: \"$ac_try\"") >&5 + { (eval echo "$as_me:19075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19077: \$? = $ac_status" >&5 + echo "$as_me:19078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -19090,7 +19091,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19093: result: $cf_cv_term_header" >&5 +echo "$as_me:19094: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -19122,7 +19123,7 @@ EOF ;; esac -echo "$as_me:19125: checking for ncurses version" >&5 +echo "$as_me:19126: 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 @@ -19148,10 +19149,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:19151: \"$cf_try\"") >&5 + { (eval echo "$as_me:19152: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:19154: \$? = $ac_status" >&5 + echo "$as_me:19155: \$? = $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%".*%%'` @@ -19161,7 +19162,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 19164 "configure" +#line 19165 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19186,15 +19187,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:19189: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19190: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19192: \$? = $ac_status" >&5 + echo "$as_me:19193: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:19194: \"$ac_try\"") >&5 + { (eval echo "$as_me:19195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19197: \$? = $ac_status" >&5 + echo "$as_me:19198: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -19208,17 +19209,17 @@ fi rm -f $cf_tempfile fi -echo "$as_me:19211: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:19212: 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:19218: checking if we have identified curses libraries" >&5 +echo "$as_me:19219: 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 19221 "configure" +#line 19222 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19230,16 +19231,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19233: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19234: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19236: \$? = $ac_status" >&5 + echo "$as_me:19237: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19239: \"$ac_try\"") >&5 + { (eval echo "$as_me:19240: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19242: \$? = $ac_status" >&5 + echo "$as_me:19243: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19248,13 +19249,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:19251: result: $cf_result" >&5 +echo "$as_me:19252: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in (freebsd*) - echo "$as_me:19257: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:19258: 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 @@ -19262,7 +19263,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19265 "configure" +#line 19266 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19281,16 +19282,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19284: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19285: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19287: \$? = $ac_status" >&5 + echo "$as_me:19288: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19290: \"$ac_try\"") >&5 + { (eval echo "$as_me:19291: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19293: \$? = $ac_status" >&5 + echo "$as_me:19294: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -19301,7 +19302,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19304: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:19305: 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 @@ -19331,7 +19332,7 @@ fi # term.h) for cur_colr if test "x$cf_cv_screen" = "xcurses_colr" then - echo "$as_me:19334: checking for initscr in -lcur_colr" >&5 + echo "$as_me:19335: 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 @@ -19339,7 +19340,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19342 "configure" +#line 19343 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19358,16 +19359,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19361: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19362: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19364: \$? = $ac_status" >&5 + echo "$as_me:19365: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19367: \"$ac_try\"") >&5 + { (eval echo "$as_me:19368: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19370: \$? = $ac_status" >&5 + echo "$as_me:19371: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -19378,7 +19379,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19381: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:19382: 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 @@ -19402,7 +19403,7 @@ LIBS="$cf_add_libs" else - echo "$as_me:19405: checking for initscr in -lHcurses" >&5 + echo "$as_me:19406: 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 @@ -19410,7 +19411,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19413 "configure" +#line 19414 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19429,16 +19430,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19432: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19433: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19435: \$? = $ac_status" >&5 + echo "$as_me:19436: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19438: \"$ac_try\"") >&5 + { (eval echo "$as_me:19439: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19441: \$? = $ac_status" >&5 + echo "$as_me:19442: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -19449,7 +19450,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19452: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:19453: 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 @@ -19505,7 +19506,7 @@ if test -n "/lib64" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:19508: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19509: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19534,7 +19535,7 @@ if test -n "/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:19537: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19538: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19565,7 +19566,7 @@ if test -n "/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:19568: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19569: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19600,7 +19601,7 @@ if test -n "/usr/5lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:19603: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:19604: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19644,13 +19645,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # because it may be needed to link the test-case for initscr. if test "x$cf_term_lib" = x then - echo "$as_me:19647: checking for tgoto" >&5 + echo "$as_me:19648: 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 19653 "configure" +#line 19654 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -19681,16 +19682,16 @@ f = tgoto; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19684: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19685: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19687: \$? = $ac_status" >&5 + echo "$as_me:19688: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19690: \"$ac_try\"") >&5 + { (eval echo "$as_me:19691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19693: \$? = $ac_status" >&5 + echo "$as_me:19694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -19700,7 +19701,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19703: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:19704: 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 @@ -19709,7 +19710,7 @@ else for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:19712: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:19713: 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 @@ -19717,7 +19718,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19720 "configure" +#line 19721 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19736,16 +19737,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19739: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19740: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19742: \$? = $ac_status" >&5 + echo "$as_me:19743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19745: \"$ac_try\"") >&5 + { (eval echo "$as_me:19746: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19748: \$? = $ac_status" >&5 + echo "$as_me:19749: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -19756,7 +19757,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19759: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:19760: 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 @@ -19779,10 +19780,10 @@ fi do LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown || test "$cf_term_lib" = "$cf_curs_lib" ; then - echo "$as_me:19782: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:19783: 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 19785 "configure" +#line 19786 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19794,16 +19795,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19797: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19798: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19800: \$? = $ac_status" >&5 + echo "$as_me:19801: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19803: \"$ac_try\"") >&5 + { (eval echo "$as_me:19804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19806: \$? = $ac_status" >&5 + echo "$as_me:19807: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19812,16 +19813,16 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:19815: result: $cf_result" >&5 + echo "$as_me:19816: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = yes && break elif test "$cf_curs_lib" = "$cf_term_lib" ; then cf_result=no elif test "$cf_term_lib" != predefined ; then - echo "$as_me:19821: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:19822: 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 19824 "configure" +#line 19825 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19833,16 +19834,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19836: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19837: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19839: \$? = $ac_status" >&5 + echo "$as_me:19840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19842: \"$ac_try\"") >&5 + { (eval echo "$as_me:19843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19845: \$? = $ac_status" >&5 + echo "$as_me:19846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -19851,7 +19852,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19854 "configure" +#line 19855 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -19863,16 +19864,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19866: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19867: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19869: \$? = $ac_status" >&5 + echo "$as_me:19870: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19872: \"$ac_try\"") >&5 + { (eval echo "$as_me:19873: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19875: \$? = $ac_status" >&5 + echo "$as_me:19876: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -19884,19 +19885,19 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:19887: result: $cf_result" >&5 + echo "$as_me:19888: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result != error && break fi done fi - test $cf_curs_lib = unknown && { { echo "$as_me:19893: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:19894: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } fi fi -echo "$as_me:19899: checking for curses performance tradeoff" >&5 +echo "$as_me:19900: 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 @@ -19904,7 +19905,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 19907 "configure" +#line 19908 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -19923,20 +19924,20 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19926: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19927: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19929: \$? = $ac_status" >&5 + echo "$as_me:19930: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19932: \"$ac_try\"") >&5 + { (eval echo "$as_me:19933: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19935: \$? = $ac_status" >&5 + echo "$as_me:19936: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 19939 "configure" +#line 19940 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -19956,16 +19957,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19959: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19960: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19962: \$? = $ac_status" >&5 + echo "$as_me:19963: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19965: \"$ac_try\"") >&5 + { (eval echo "$as_me:19966: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19968: \$? = $ac_status" >&5 + echo "$as_me:19969: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -19980,21 +19981,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19983: result: $cf_cv_curs_performance" >&5 +echo "$as_me:19984: 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:19990: checking for curses touchline function" >&5 +echo "$as_me:19991: 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 19997 "configure" +#line 19998 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -20007,23 +20008,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20010: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20011: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20013: \$? = $ac_status" >&5 + echo "$as_me:20014: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20016: \"$ac_try\"") >&5 + { (eval echo "$as_me:20017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20019: \$? = $ac_status" >&5 + echo "$as_me:20020: \$? = $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 20026 "configure" +#line 20027 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -20036,16 +20037,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20039: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20040: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20042: \$? = $ac_status" >&5 + echo "$as_me:20043: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20045: \"$ac_try\"") >&5 + { (eval echo "$as_me:20046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20048: \$? = $ac_status" >&5 + echo "$as_me:20049: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -20057,7 +20058,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:20060: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:20061: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in (bsd) @@ -20079,7 +20080,7 @@ esac ;; (ncursesw*) -echo "$as_me:20082: checking for multibyte character support" >&5 +echo "$as_me:20083: 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 @@ -20087,7 +20088,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20090 "configure" +#line 20091 "configure" #include "confdefs.h" #include <stdlib.h> @@ -20100,16 +20101,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20103: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20104: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20106: \$? = $ac_status" >&5 + echo "$as_me:20107: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20109: \"$ac_try\"") >&5 + { (eval echo "$as_me:20110: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20112: \$? = $ac_status" >&5 + echo "$as_me:20113: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -20121,12 +20122,12 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me:-configure}:20124: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20125: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20129 "configure" +#line 20130 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20139,16 +20140,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20142: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20143: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20145: \$? = $ac_status" >&5 + echo "$as_me:20146: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20148: \"$ac_try\"") >&5 + { (eval echo "$as_me:20149: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20151: \$? = $ac_status" >&5 + echo "$as_me:20152: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -20162,7 +20163,7 @@ cat conftest.$ac_ext >&5 LIBS="-lutf8 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20165 "configure" +#line 20166 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20175,16 +20176,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20178: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20179: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20181: \$? = $ac_status" >&5 + echo "$as_me:20182: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20184: \"$ac_try\"") >&5 + { (eval echo "$as_me:20185: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20187: \$? = $ac_status" >&5 + echo "$as_me:20188: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes @@ -20201,9 +20202,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me:-configure}:20204: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me:-configure}:20205: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me:-configure}:20206: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20207: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -20294,11 +20295,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 -echo "${as_me:-configure}:20297: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20298: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 20301 "configure" +#line 20302 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20311,21 +20312,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20314: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20315: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20317: \$? = $ac_status" >&5 + echo "$as_me:20318: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20320: \"$ac_try\"") >&5 + { (eval echo "$as_me:20321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20323: \$? = $ac_status" >&5 + echo "$as_me:20324: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 headers in $cf_cv_header_path_utf8" 1>&6 -echo "${as_me:-configure}:20328: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20329: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -20343,7 +20344,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me:-configure}:20346: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me:-configure}:20347: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -20418,13 +20419,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 -echo "${as_me:-configure}:20421: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20422: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lutf8 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 20427 "configure" +#line 20428 "configure" #include "confdefs.h" #include <libutf8.h> @@ -20437,21 +20438,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20440: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20441: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20443: \$? = $ac_status" >&5 + echo "$as_me:20444: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20446: \"$ac_try\"") >&5 + { (eval echo "$as_me:20447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20449: \$? = $ac_status" >&5 + echo "$as_me:20450: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 library in $cf_cv_library_path_utf8" 1>&6 -echo "${as_me:-configure}:20454: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me:-configure}:20455: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -20493,7 +20494,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20496: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:20497: 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 @@ -20528,7 +20529,7 @@ if test -n "$cf_cv_header_path_utf8" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20531 "configure" +#line 20532 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20540,16 +20541,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20543: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20544: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20546: \$? = $ac_status" >&5 + echo "$as_me:20547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20549: \"$ac_try\"") >&5 + { (eval echo "$as_me:20550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20552: \$? = $ac_status" >&5 + echo "$as_me:20553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20566,7 +20567,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:20569: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:20570: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20602,7 +20603,7 @@ if test -n "$cf_cv_library_path_utf8" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:20605: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:20606: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -20632,13 +20633,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:20635: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:20636: checking pkg-config for $cf_ncuconfig_root" >&5 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then - echo "$as_me:20638: result: yes" >&5 + echo "$as_me:20639: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:20641: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:20642: checking if the $cf_ncuconfig_root package files work" >&5 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown @@ -20664,7 +20665,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 20667 "configure" +#line 20668 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -20676,37 +20677,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20679: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20680: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20682: \$? = $ac_status" >&5 + echo "$as_me:20683: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20685: \"$ac_try\"") >&5 + { (eval echo "$as_me:20686: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20688: \$? = $ac_status" >&5 + echo "$as_me:20689: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 20694 "configure" +#line 20695 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:20701: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20702: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20704: \$? = $ac_status" >&5 + echo "$as_me:20705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:20706: \"$ac_try\"") >&5 + { (eval echo "$as_me:20707: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20709: \$? = $ac_status" >&5 + echo "$as_me:20710: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -20723,7 +20724,7 @@ cat conftest.$ac_ext >&5 cf_have_ncuconfig=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:20726: result: $cf_have_ncuconfig" >&5 + echo "$as_me:20727: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -20739,7 +20740,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:20742: checking for terminfo header" >&5 +echo "$as_me:20743: 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 @@ -20757,7 +20758,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 20760 "configure" +#line 20761 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -20772,16 +20773,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20775: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20776: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20778: \$? = $ac_status" >&5 + echo "$as_me:20779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20781: \"$ac_try\"") >&5 + { (eval echo "$as_me:20782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20784: \$? = $ac_status" >&5 + echo "$as_me:20785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -20797,7 +20798,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20800: result: $cf_cv_term_header" >&5 +echo "$as_me:20801: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -20832,7 +20833,7 @@ esac fi else - echo "$as_me:20835: result: no" >&5 + echo "$as_me:20836: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -20848,7 +20849,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:20851: checking for $ac_word" >&5 +echo "$as_me:20852: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20863,7 +20864,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:20866: found $ac_dir/$ac_word" >&5 +echo "$as_me:20867: found $ac_dir/$ac_word" >&5 break done @@ -20871,10 +20872,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:20874: result: $NCURSES_CONFIG" >&5 + echo "$as_me:20875: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:20877: result: no" >&5 + echo "$as_me:20878: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20887,7 +20888,7 @@ if test -z "$NCURSES_CONFIG"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:20890: checking for $ac_word" >&5 +echo "$as_me:20891: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20902,7 +20903,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog" -echo "$as_me:20905: found $ac_dir/$ac_word" >&5 +echo "$as_me:20906: found $ac_dir/$ac_word" >&5 break done @@ -20910,10 +20911,10 @@ fi fi ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG if test -n "$ac_ct_NCURSES_CONFIG"; then - echo "$as_me:20913: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:20914: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:20916: result: no" >&5 + echo "$as_me:20917: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -20946,7 +20947,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:20949: checking if we have identified curses headers" >&5 +echo "$as_me:20950: 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 @@ -20958,7 +20959,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 20961 "configure" +#line 20962 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -20970,16 +20971,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20973: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20974: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20976: \$? = $ac_status" >&5 + echo "$as_me:20977: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20979: \"$ac_try\"") >&5 + { (eval echo "$as_me:20980: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20982: \$? = $ac_status" >&5 + echo "$as_me:20983: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -20990,11 +20991,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:20993: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:20994: 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:20997: error: No curses header-files found" >&5 + { { echo "$as_me:20998: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -21004,23 +21005,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:21007: checking for $ac_header" >&5 +echo "$as_me:21008: 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 21013 "configure" +#line 21014 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21017: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:21018: \"$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:21023: \$? = $ac_status" >&5 + echo "$as_me:21024: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21039,7 +21040,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21042: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:21043: 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 @@ -21092,7 +21093,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21095 "configure" +#line 21096 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21104,16 +21105,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21107: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21110: \$? = $ac_status" >&5 + echo "$as_me:21111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21113: \"$ac_try\"") >&5 + { (eval echo "$as_me:21114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21116: \$? = $ac_status" >&5 + echo "$as_me:21117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21130,7 +21131,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:21133: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21134: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21149,7 +21150,7 @@ fi } -echo "$as_me:21152: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:21153: 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 @@ -21161,7 +21162,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 21164 "configure" +#line 21165 "configure" #include "confdefs.h" #include <$cf_header> @@ -21185,16 +21186,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21188: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21189: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21191: \$? = $ac_status" >&5 + echo "$as_me:21192: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21194: \"$ac_try\"") >&5 + { (eval echo "$as_me:21195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21197: \$? = $ac_status" >&5 + echo "$as_me:21198: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -21209,14 +21210,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21212: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:21213: 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:21219: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:21220: 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 @@ -21334,7 +21335,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21337 "configure" +#line 21338 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21346,16 +21347,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21349: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21350: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21352: \$? = $ac_status" >&5 + echo "$as_me:21353: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21355: \"$ac_try\"") >&5 + { (eval echo "$as_me:21356: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21358: \$? = $ac_status" >&5 + echo "$as_me:21359: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21372,7 +21373,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:21375: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21376: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21395,7 +21396,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 21398 "configure" +#line 21399 "configure" #include "confdefs.h" #include <$cf_header> @@ -21419,16 +21420,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21422: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21423: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21425: \$? = $ac_status" >&5 + echo "$as_me:21426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21428: \"$ac_try\"") >&5 + { (eval echo "$as_me:21429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21431: \$? = $ac_status" >&5 + echo "$as_me:21432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -21449,12 +21450,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:21452: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:21453: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:21457: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:21458: 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%/[^/]*$%%'` @@ -21487,7 +21488,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 21490 "configure" +#line 21491 "configure" #include "confdefs.h" #include <stdio.h> int @@ -21499,16 +21500,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21502: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21503: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21505: \$? = $ac_status" >&5 + echo "$as_me:21506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21508: \"$ac_try\"") >&5 + { (eval echo "$as_me:21509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21511: \$? = $ac_status" >&5 + echo "$as_me:21512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21525,7 +21526,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:21528: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:21529: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -21573,7 +21574,7 @@ EOF ;; esac -echo "$as_me:21576: checking for terminfo header" >&5 +echo "$as_me:21577: 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 @@ -21591,7 +21592,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 21594 "configure" +#line 21595 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -21606,16 +21607,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21609: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21610: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21612: \$? = $ac_status" >&5 + echo "$as_me:21613: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21615: \"$ac_try\"") >&5 + { (eval echo "$as_me:21616: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21618: \$? = $ac_status" >&5 + echo "$as_me:21619: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -21631,7 +21632,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:21634: result: $cf_cv_term_header" >&5 +echo "$as_me:21635: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -21669,7 +21670,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:21672: checking for ncurses version" >&5 +echo "$as_me:21673: 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 @@ -21695,10 +21696,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:21698: \"$cf_try\"") >&5 + { (eval echo "$as_me:21699: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:21701: \$? = $ac_status" >&5 + echo "$as_me:21702: \$? = $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%".*%%'` @@ -21708,7 +21709,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 21711 "configure" +#line 21712 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -21733,15 +21734,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:21736: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21737: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21739: \$? = $ac_status" >&5 + echo "$as_me:21740: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:21741: \"$ac_try\"") >&5 + { (eval echo "$as_me:21742: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21744: \$? = $ac_status" >&5 + echo "$as_me:21745: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -21755,7 +21756,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:21758: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:21759: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -21768,7 +21769,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:21771: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:21772: 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 @@ -21776,7 +21777,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21779 "configure" +#line 21780 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21795,16 +21796,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21798: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21799: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21801: \$? = $ac_status" >&5 + echo "$as_me:21802: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21804: \"$ac_try\"") >&5 + { (eval echo "$as_me:21805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21807: \$? = $ac_status" >&5 + echo "$as_me:21808: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -21815,10 +21816,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21818: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:21819: 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:21821: checking for initscr in -lgpm" >&5 + echo "$as_me:21822: 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 @@ -21826,7 +21827,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21829 "configure" +#line 21830 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21845,16 +21846,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21848: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21849: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21851: \$? = $ac_status" >&5 + echo "$as_me:21852: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21854: \"$ac_try\"") >&5 + { (eval echo "$as_me:21855: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21857: \$? = $ac_status" >&5 + echo "$as_me:21858: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -21865,7 +21866,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21868: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:21869: 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" @@ -21880,7 +21881,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:21883: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:21884: 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 @@ -21888,7 +21889,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21891 "configure" +#line 21892 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21907,16 +21908,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21910: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21911: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21913: \$? = $ac_status" >&5 + echo "$as_me:21914: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21916: \"$ac_try\"") >&5 + { (eval echo "$as_me:21917: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21919: \$? = $ac_status" >&5 + echo "$as_me:21920: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -21927,7 +21928,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21930: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:21931: 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" @@ -21976,13 +21977,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:21979: checking for initscr" >&5 + echo "$as_me:21980: 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 21985 "configure" +#line 21986 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -22013,16 +22014,16 @@ f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22016: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22017: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22019: \$? = $ac_status" >&5 + echo "$as_me:22020: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22022: \"$ac_try\"") >&5 + { (eval echo "$as_me:22023: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22025: \$? = $ac_status" >&5 + echo "$as_me:22026: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -22032,18 +22033,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22035: result: $ac_cv_func_initscr" >&5 +echo "$as_me:22036: 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:22042: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:22043: 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 22046 "configure" +#line 22047 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22055,25 +22056,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22058: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22059: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22061: \$? = $ac_status" >&5 + echo "$as_me:22062: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22064: \"$ac_try\"") >&5 + { (eval echo "$as_me:22065: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22067: \$? = $ac_status" >&5 + echo "$as_me:22068: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22069: result: yes" >&5 + echo "$as_me:22070: 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:22076: result: no" >&5 +echo "$as_me:22077: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -22141,11 +22142,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:22144: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:22145: 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 22148 "configure" +#line 22149 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22157,25 +22158,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22160: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22161: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22163: \$? = $ac_status" >&5 + echo "$as_me:22164: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22166: \"$ac_try\"") >&5 + { (eval echo "$as_me:22167: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22169: \$? = $ac_status" >&5 + echo "$as_me:22170: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22171: result: yes" >&5 + echo "$as_me:22172: 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:22178: result: no" >&5 +echo "$as_me:22179: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -22190,7 +22191,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:22193: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:22194: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -22198,7 +22199,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:22201: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:22202: 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 @@ -22208,7 +22209,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 22211 "configure" +#line 22212 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22220,23 +22221,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22223: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22224: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22226: \$? = $ac_status" >&5 + echo "$as_me:22227: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22229: \"$ac_try\"") >&5 + { (eval echo "$as_me:22230: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22232: \$? = $ac_status" >&5 + echo "$as_me:22233: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:22234: result: yes" >&5 + echo "$as_me:22235: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:22239: result: no" >&5 +echo "$as_me:22240: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -22262,13 +22263,13 @@ cf_ncuconfig_root=$cf_cv_screen cf_have_ncuconfig=no if test "x${PKG_CONFIG:=none}" != xnone; then - echo "$as_me:22265: checking pkg-config for $cf_ncuconfig_root" >&5 + echo "$as_me:22266: checking pkg-config for $cf_ncuconfig_root" >&5 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6 if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then - echo "$as_me:22268: result: yes" >&5 + echo "$as_me:22269: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:22271: checking if the $cf_ncuconfig_root package files work" >&5 + echo "$as_me:22272: checking if the $cf_ncuconfig_root package files work" >&5 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6 cf_have_ncuconfig=unknown @@ -22294,7 +22295,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 22297 "configure" +#line 22298 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -22306,37 +22307,37 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22309: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22310: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22312: \$? = $ac_status" >&5 + echo "$as_me:22313: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22315: \"$ac_try\"") >&5 + { (eval echo "$as_me:22316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22318: \$? = $ac_status" >&5 + echo "$as_me:22319: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if test "$cross_compiling" = yes; then cf_have_ncuconfig=maybe else cat >conftest.$ac_ext <<_ACEOF -#line 22324 "configure" +#line 22325 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int main(void) { char *xx = curses_version(); return (xx == 0); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22331: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22332: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22334: \$? = $ac_status" >&5 + echo "$as_me:22335: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22336: \"$ac_try\"") >&5 + { (eval echo "$as_me:22337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22339: \$? = $ac_status" >&5 + echo "$as_me:22340: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_have_ncuconfig=yes else @@ -22353,7 +22354,7 @@ cat conftest.$ac_ext >&5 cf_have_ncuconfig=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:22356: result: $cf_have_ncuconfig" >&5 + echo "$as_me:22357: result: $cf_have_ncuconfig" >&5 echo "${ECHO_T}$cf_have_ncuconfig" >&6 test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes if test "$cf_have_ncuconfig" != "yes" @@ -22369,7 +22370,7 @@ EOF NCURSES_CONFIG_PKG=$cf_ncuconfig_root -echo "$as_me:22372: checking for terminfo header" >&5 +echo "$as_me:22373: 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 @@ -22387,7 +22388,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 22390 "configure" +#line 22391 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -22402,16 +22403,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22405: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22406: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22408: \$? = $ac_status" >&5 + echo "$as_me:22409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22411: \"$ac_try\"") >&5 + { (eval echo "$as_me:22412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22414: \$? = $ac_status" >&5 + echo "$as_me:22415: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -22427,7 +22428,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22430: result: $cf_cv_term_header" >&5 +echo "$as_me:22431: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -22462,7 +22463,7 @@ esac fi else - echo "$as_me:22465: result: no" >&5 + echo "$as_me:22466: result: no" >&5 echo "${ECHO_T}no" >&6 NCURSES_CONFIG_PKG=none fi @@ -22478,7 +22479,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:22481: checking for $ac_word" >&5 +echo "$as_me:22482: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22493,7 +22494,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:22496: found $ac_dir/$ac_word" >&5 +echo "$as_me:22497: found $ac_dir/$ac_word" >&5 break done @@ -22501,10 +22502,10 @@ fi fi NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:22504: result: $NCURSES_CONFIG" >&5 + echo "$as_me:22505: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:22507: result: no" >&5 + echo "$as_me:22508: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22517,7 +22518,7 @@ if test -z "$NCURSES_CONFIG"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:22520: checking for $ac_word" >&5 +echo "$as_me:22521: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22532,7 +22533,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog" -echo "$as_me:22535: found $ac_dir/$ac_word" >&5 +echo "$as_me:22536: found $ac_dir/$ac_word" >&5 break done @@ -22540,10 +22541,10 @@ fi fi ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG if test -n "$ac_ct_NCURSES_CONFIG"; then - echo "$as_me:22543: result: $ac_ct_NCURSES_CONFIG" >&5 + echo "$as_me:22544: result: $ac_ct_NCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 else - echo "$as_me:22546: result: no" >&5 + echo "$as_me:22547: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -22576,7 +22577,7 @@ LIBS="$cf_add_libs" # even with config script, some packages use no-override for curses.h -echo "$as_me:22579: checking if we have identified curses headers" >&5 +echo "$as_me:22580: 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 @@ -22588,7 +22589,7 @@ for cf_header in \ curses.h $cf_cv_screen/curses.h do cat >conftest.$ac_ext <<_ACEOF -#line 22591 "configure" +#line 22592 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -22600,16 +22601,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22603: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22604: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22606: \$? = $ac_status" >&5 + echo "$as_me:22607: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22609: \"$ac_try\"") >&5 + { (eval echo "$as_me:22610: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22612: \$? = $ac_status" >&5 + echo "$as_me:22613: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -22620,11 +22621,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22623: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:22624: 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:22627: error: No curses header-files found" >&5 + { { echo "$as_me:22628: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -22634,23 +22635,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:22637: checking for $ac_header" >&5 +echo "$as_me:22638: 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 22643 "configure" +#line 22644 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22647: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22648: \"$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:22653: \$? = $ac_status" >&5 + echo "$as_me:22654: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22669,7 +22670,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:22672: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22673: 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 @@ -22722,7 +22723,7 @@ if test -n "$cf_cv_curses_dir/include/$cf_ncuhdr_root" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22725 "configure" +#line 22726 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22734,16 +22735,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22737: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22738: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22740: \$? = $ac_status" >&5 + echo "$as_me:22741: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22743: \"$ac_try\"") >&5 + { (eval echo "$as_me:22744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22746: \$? = $ac_status" >&5 + echo "$as_me:22747: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -22760,7 +22761,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:22763: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:22764: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -22779,7 +22780,7 @@ fi } -echo "$as_me:22782: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:22783: 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 @@ -22791,7 +22792,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 22794 "configure" +#line 22795 "configure" #include "confdefs.h" #include <$cf_header> @@ -22815,16 +22816,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22818: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22819: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22821: \$? = $ac_status" >&5 + echo "$as_me:22822: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22824: \"$ac_try\"") >&5 + { (eval echo "$as_me:22825: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22827: \$? = $ac_status" >&5 + echo "$as_me:22828: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -22839,14 +22840,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:22842: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:22843: 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:22849: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:22850: 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 @@ -22964,7 +22965,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 22967 "configure" +#line 22968 "configure" #include "confdefs.h" #include <stdio.h> int @@ -22976,16 +22977,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22982: \$? = $ac_status" >&5 + echo "$as_me:22983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22985: \"$ac_try\"") >&5 + { (eval echo "$as_me:22986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22988: \$? = $ac_status" >&5 + echo "$as_me:22989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23002,7 +23003,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:23005: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23006: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23025,7 +23026,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 23028 "configure" +#line 23029 "configure" #include "confdefs.h" #include <$cf_header> @@ -23049,16 +23050,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23052: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23053: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23055: \$? = $ac_status" >&5 + echo "$as_me:23056: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23058: \"$ac_try\"") >&5 + { (eval echo "$as_me:23059: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23061: \$? = $ac_status" >&5 + echo "$as_me:23062: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -23079,12 +23080,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:23082: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:23083: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:23087: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:23088: 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%/[^/]*$%%'` @@ -23117,7 +23118,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 23120 "configure" +#line 23121 "configure" #include "confdefs.h" #include <stdio.h> int @@ -23129,16 +23130,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23132: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23133: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23135: \$? = $ac_status" >&5 + echo "$as_me:23136: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23138: \"$ac_try\"") >&5 + { (eval echo "$as_me:23139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23141: \$? = $ac_status" >&5 + echo "$as_me:23142: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -23155,7 +23156,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:23158: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:23159: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -23203,7 +23204,7 @@ EOF ;; esac -echo "$as_me:23206: checking for terminfo header" >&5 +echo "$as_me:23207: 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 @@ -23221,7 +23222,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 23224 "configure" +#line 23225 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header:-curses.h}> @@ -23236,16 +23237,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23239: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23240: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23242: \$? = $ac_status" >&5 + echo "$as_me:23243: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23245: \"$ac_try\"") >&5 + { (eval echo "$as_me:23246: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23248: \$? = $ac_status" >&5 + echo "$as_me:23249: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -23261,7 +23262,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:23264: result: $cf_cv_term_header" >&5 +echo "$as_me:23265: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -23299,7 +23300,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:23302: checking for ncurses version" >&5 +echo "$as_me:23303: 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 @@ -23325,10 +23326,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:23328: \"$cf_try\"") >&5 + { (eval echo "$as_me:23329: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:23331: \$? = $ac_status" >&5 + echo "$as_me:23332: \$? = $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%".*%%'` @@ -23338,7 +23339,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 23341 "configure" +#line 23342 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -23363,15 +23364,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23366: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23367: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23369: \$? = $ac_status" >&5 + echo "$as_me:23370: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23371: \"$ac_try\"") >&5 + { (eval echo "$as_me:23372: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23374: \$? = $ac_status" >&5 + echo "$as_me:23375: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -23385,7 +23386,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:23388: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:23389: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF @@ -23398,7 +23399,7 @@ cf_nculib_root=$cf_cv_screen # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:23401: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:23402: 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 @@ -23406,7 +23407,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23409 "configure" +#line 23410 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23425,16 +23426,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23428: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23429: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23431: \$? = $ac_status" >&5 + echo "$as_me:23432: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23434: \"$ac_try\"") >&5 + { (eval echo "$as_me:23435: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23437: \$? = $ac_status" >&5 + echo "$as_me:23438: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -23445,10 +23446,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23448: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:23449: 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:23451: checking for initscr in -lgpm" >&5 + echo "$as_me:23452: 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 @@ -23456,7 +23457,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23459 "configure" +#line 23460 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23475,16 +23476,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23478: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23479: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23481: \$? = $ac_status" >&5 + echo "$as_me:23482: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23484: \"$ac_try\"") >&5 + { (eval echo "$as_me:23485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23487: \$? = $ac_status" >&5 + echo "$as_me:23488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -23495,7 +23496,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23498: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:23499: 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" @@ -23510,7 +23511,7 @@ case $host_os in # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:23513: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:23514: 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 @@ -23518,7 +23519,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 23521 "configure" +#line 23522 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -23537,16 +23538,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23540: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23541: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23543: \$? = $ac_status" >&5 + echo "$as_me:23544: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23546: \"$ac_try\"") >&5 + { (eval echo "$as_me:23547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23549: \$? = $ac_status" >&5 + echo "$as_me:23550: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -23557,7 +23558,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:23560: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:23561: 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" @@ -23606,13 +23607,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:23609: checking for initscr" >&5 + echo "$as_me:23610: 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 23615 "configure" +#line 23616 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -23643,16 +23644,16 @@ f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23646: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23647: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23649: \$? = $ac_status" >&5 + echo "$as_me:23650: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23652: \"$ac_try\"") >&5 + { (eval echo "$as_me:23653: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23655: \$? = $ac_status" >&5 + echo "$as_me:23656: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -23662,18 +23663,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23665: result: $ac_cv_func_initscr" >&5 +echo "$as_me:23666: 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:23672: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:23673: 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 23676 "configure" +#line 23677 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23685,25 +23686,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23688: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23689: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23691: \$? = $ac_status" >&5 + echo "$as_me:23692: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23694: \"$ac_try\"") >&5 + { (eval echo "$as_me:23695: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23697: \$? = $ac_status" >&5 + echo "$as_me:23698: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23699: result: yes" >&5 + echo "$as_me:23700: 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:23706: result: no" >&5 +echo "$as_me:23707: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -23771,11 +23772,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:23774: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:23775: 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 23778 "configure" +#line 23779 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23787,25 +23788,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23790: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23791: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23793: \$? = $ac_status" >&5 + echo "$as_me:23794: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23796: \"$ac_try\"") >&5 + { (eval echo "$as_me:23797: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23799: \$? = $ac_status" >&5 + echo "$as_me:23800: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23801: result: yes" >&5 + echo "$as_me:23802: 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:23808: result: no" >&5 +echo "$as_me:23809: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -23820,7 +23821,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:23823: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:23824: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -23828,7 +23829,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:23831: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:23832: 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 @@ -23838,7 +23839,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 23841 "configure" +#line 23842 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -23850,23 +23851,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23853: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23854: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23856: \$? = $ac_status" >&5 + echo "$as_me:23857: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23859: \"$ac_try\"") >&5 + { (eval echo "$as_me:23860: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23862: \$? = $ac_status" >&5 + echo "$as_me:23863: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:23864: result: yes" >&5 + echo "$as_me:23865: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:23869: result: no" >&5 +echo "$as_me:23870: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -23898,7 +23899,7 @@ fi ;; (slang) -echo "$as_me:23901: checking for slang header file" >&5 +echo "$as_me:23902: 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 @@ -23906,7 +23907,7 @@ else cf_cv_slang_header=no cat >conftest.$ac_ext <<_ACEOF -#line 23909 "configure" +#line 23910 "configure" #include "confdefs.h" #include <slang.h> int @@ -23918,16 +23919,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23921: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23922: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23924: \$? = $ac_status" >&5 + echo "$as_me:23925: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23927: \"$ac_try\"") >&5 + { (eval echo "$as_me:23928: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23930: \$? = $ac_status" >&5 + echo "$as_me:23931: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -24032,7 +24033,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24035: result: $cf_cv_slang_header" >&5 +echo "$as_me:24036: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 if test "x$cf_cv_slang_header" != xno @@ -24073,7 +24074,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 24076 "configure" +#line 24077 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24085,16 +24086,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24088: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24089: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24091: \$? = $ac_status" >&5 + echo "$as_me:24092: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24094: \"$ac_try\"") >&5 + { (eval echo "$as_me:24095: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24097: \$? = $ac_status" >&5 + echo "$as_me:24098: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24111,7 +24112,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:24114: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:24115: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -24143,7 +24144,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 24146 "configure" +#line 24147 "configure" #include "confdefs.h" int @@ -24155,19 +24156,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24158: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24159: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24161: \$? = $ac_status" >&5 + echo "$as_me:24162: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24164: \"$ac_try\"") >&5 + { (eval echo "$as_me:24165: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24167: \$? = $ac_status" >&5 + echo "$as_me:24168: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 24170 "configure" +#line 24171 "configure" #include "confdefs.h" int @@ -24179,16 +24180,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24182: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24183: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24185: \$? = $ac_status" >&5 + echo "$as_me:24186: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24188: \"$ac_try\"") >&5 + { (eval echo "$as_me:24189: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24191: \$? = $ac_status" >&5 + echo "$as_me:24192: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -24199,7 +24200,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6 -echo "${as_me:-configure}:24202: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:24203: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -24214,10 +24215,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:24217: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:24218: 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 24220 "configure" +#line 24221 "configure" #include "confdefs.h" int @@ -24229,16 +24230,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24232: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24233: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24235: \$? = $ac_status" >&5 + echo "$as_me:24236: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24238: \"$ac_try\"") >&5 + { (eval echo "$as_me:24239: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24241: \$? = $ac_status" >&5 + echo "$as_me:24242: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -24247,7 +24248,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:24250: result: $cf_result" >&5 + echo "$as_me:24251: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -24264,7 +24265,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:24267: checking for initscr in -lcurses" >&5 + echo "$as_me:24268: 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 @@ -24272,7 +24273,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24275 "configure" +#line 24276 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24291,16 +24292,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24294: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24295: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24297: \$? = $ac_status" >&5 + echo "$as_me:24298: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24300: \"$ac_try\"") >&5 + { (eval echo "$as_me:24301: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24303: \$? = $ac_status" >&5 + echo "$as_me:24304: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -24311,7 +24312,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24314: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:24315: 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 @@ -24333,7 +24334,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:24336: checking for tgoto in -ltermcap" >&5 + echo "$as_me:24337: 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 @@ -24341,7 +24342,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24344 "configure" +#line 24345 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24360,16 +24361,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24363: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24366: \$? = $ac_status" >&5 + echo "$as_me:24367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24369: \"$ac_try\"") >&5 + { (eval echo "$as_me:24370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24372: \$? = $ac_status" >&5 + echo "$as_me:24373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -24380,7 +24381,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24383: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:24384: 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 @@ -24407,20 +24408,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:24410: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:24411: 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:24417: checking for acos" >&5 +echo "$as_me:24418: 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 24423 "configure" +#line 24424 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -24451,16 +24452,16 @@ f = acos; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24454: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24455: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24457: \$? = $ac_status" >&5 + echo "$as_me:24458: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24460: \"$ac_try\"") >&5 + { (eval echo "$as_me:24461: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24463: \$? = $ac_status" >&5 + echo "$as_me:24464: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -24470,13 +24471,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24473: result: $ac_cv_func_acos" >&5 +echo "$as_me:24474: 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:24479: checking for acos in -lm" >&5 +echo "$as_me:24480: 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 @@ -24484,7 +24485,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 24487 "configure" +#line 24488 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -24503,16 +24504,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24506: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24509: \$? = $ac_status" >&5 + echo "$as_me:24510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24512: \"$ac_try\"") >&5 + { (eval echo "$as_me:24513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24515: \$? = $ac_status" >&5 + echo "$as_me:24516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -24523,7 +24524,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:24526: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:24527: 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 @@ -24549,13 +24550,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:24552: checking for v_init" >&5 + echo "$as_me:24553: 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 24558 "configure" +#line 24559 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -24586,16 +24587,16 @@ f = v_init; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24589: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24590: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24592: \$? = $ac_status" >&5 + echo "$as_me:24593: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24595: \"$ac_try\"") >&5 + { (eval echo "$as_me:24596: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24598: \$? = $ac_status" >&5 + echo "$as_me:24599: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -24605,18 +24606,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24608: result: $ac_cv_func_v_init" >&5 +echo "$as_me:24609: 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:24615: checking for v_init in -lvideo" >&5 + echo "$as_me:24616: 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 24619 "configure" +#line 24620 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -24628,25 +24629,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24631: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24632: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24634: \$? = $ac_status" >&5 + echo "$as_me:24635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24637: \"$ac_try\"") >&5 + { (eval echo "$as_me:24638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24640: \$? = $ac_status" >&5 + echo "$as_me:24641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24642: result: yes" >&5 + echo "$as_me:24643: 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:24649: result: no" >&5 +echo "$as_me:24650: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24714,11 +24715,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24717: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:24718: 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 24721 "configure" +#line 24722 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -24730,25 +24731,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24733: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24736: \$? = $ac_status" >&5 + echo "$as_me:24737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24739: \"$ac_try\"") >&5 + { (eval echo "$as_me:24740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24742: \$? = $ac_status" >&5 + echo "$as_me:24743: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24744: result: yes" >&5 + echo "$as_me:24745: 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:24751: result: no" >&5 +echo "$as_me:24752: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24763,7 +24764,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:24766: error: Cannot link video library" >&5 + { { echo "$as_me:24767: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -24773,13 +24774,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:24776: checking for SLtt_get_screen_size" >&5 + echo "$as_me:24777: 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 24782 "configure" +#line 24783 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -24810,16 +24811,16 @@ f = SLtt_get_screen_size; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24813: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24814: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24816: \$? = $ac_status" >&5 + echo "$as_me:24817: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24819: \"$ac_try\"") >&5 + { (eval echo "$as_me:24820: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24822: \$? = $ac_status" >&5 + echo "$as_me:24823: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -24829,18 +24830,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:24832: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:24833: 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:24839: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:24840: 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 24843 "configure" +#line 24844 "configure" #include "confdefs.h" #include <slang.h> int @@ -24852,25 +24853,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24855: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24856: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24858: \$? = $ac_status" >&5 + echo "$as_me:24859: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24861: \"$ac_try\"") >&5 + { (eval echo "$as_me:24862: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24864: \$? = $ac_status" >&5 + echo "$as_me:24865: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24866: result: yes" >&5 + echo "$as_me:24867: 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:24873: result: no" >&5 +echo "$as_me:24874: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -24938,11 +24939,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:24941: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:24942: 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 24945 "configure" +#line 24946 "configure" #include "confdefs.h" #include <slang.h> int @@ -24954,25 +24955,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24957: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24958: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24960: \$? = $ac_status" >&5 + echo "$as_me:24961: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24963: \"$ac_try\"") >&5 + { (eval echo "$as_me:24964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24966: \$? = $ac_status" >&5 + echo "$as_me:24967: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:24968: result: yes" >&5 + echo "$as_me:24969: 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:24975: result: no" >&5 +echo "$as_me:24976: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -24987,13 +24988,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:24990: error: Cannot link slang library" >&5 + { { echo "$as_me:24991: 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:24996: checking if we can link slang without termcap" >&5 +echo "$as_me:24997: 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%^.%%'` @@ -25002,7 +25003,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 25005 "configure" +#line 25006 "configure" #include "confdefs.h" #include <slang.h> int @@ -25014,16 +25015,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25017: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25018: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25020: \$? = $ac_status" >&5 + echo "$as_me:25021: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25023: \"$ac_try\"") >&5 + { (eval echo "$as_me:25024: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25026: \$? = $ac_status" >&5 + echo "$as_me:25027: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -25032,13 +25033,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:25035: result: $cf_result" >&5 +echo "$as_me:25036: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else -echo "$as_me:25041: checking for slang2 header file" >&5 +echo "$as_me:25042: checking for slang2 header file" >&5 echo $ECHO_N "checking for slang2 header file... $ECHO_C" >&6 if test "${cf_cv_slang2_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25046,7 +25047,7 @@ else cf_cv_slang2_header=no cat >conftest.$ac_ext <<_ACEOF -#line 25049 "configure" +#line 25050 "configure" #include "confdefs.h" #include <slang.h> int @@ -25058,16 +25059,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25061: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25062: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25064: \$? = $ac_status" >&5 + echo "$as_me:25065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25067: \"$ac_try\"") >&5 + { (eval echo "$as_me:25068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25070: \$? = $ac_status" >&5 + echo "$as_me:25071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang2_header=predefined else @@ -25172,7 +25173,7 @@ cf_search="$cf_search $cf_header_path_list" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25175: result: $cf_cv_slang2_header" >&5 +echo "$as_me:25176: result: $cf_cv_slang2_header" >&5 echo "${ECHO_T}$cf_cv_slang2_header" >&6 if test "x$cf_cv_slang2_header" != xno @@ -25213,7 +25214,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 25216 "configure" +#line 25217 "configure" #include "confdefs.h" #include <stdio.h> int @@ -25225,16 +25226,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25228: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25229: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25231: \$? = $ac_status" >&5 + echo "$as_me:25232: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25234: \"$ac_try\"") >&5 + { (eval echo "$as_me:25235: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25237: \$? = $ac_status" >&5 + echo "$as_me:25238: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25251,7 +25252,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:25254: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:25255: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -25283,7 +25284,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 25286 "configure" +#line 25287 "configure" #include "confdefs.h" int @@ -25295,19 +25296,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25298: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25299: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25301: \$? = $ac_status" >&5 + echo "$as_me:25302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25304: \"$ac_try\"") >&5 + { (eval echo "$as_me:25305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25307: \$? = $ac_status" >&5 + echo "$as_me:25308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 25310 "configure" +#line 25311 "configure" #include "confdefs.h" int @@ -25319,16 +25320,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25322: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25323: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25325: \$? = $ac_status" >&5 + echo "$as_me:25326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25328: \"$ac_try\"") >&5 + { (eval echo "$as_me:25329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25331: \$? = $ac_status" >&5 + echo "$as_me:25332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -25339,7 +25340,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6 -echo "${as_me:-configure}:25342: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me:-configure}:25343: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -25354,10 +25355,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:25357: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:25358: 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 25360 "configure" +#line 25361 "configure" #include "confdefs.h" int @@ -25369,16 +25370,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25373: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25375: \$? = $ac_status" >&5 + echo "$as_me:25376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25378: \"$ac_try\"") >&5 + { (eval echo "$as_me:25379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25381: \$? = $ac_status" >&5 + echo "$as_me:25382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -25387,7 +25388,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:25390: result: $cf_result" >&5 + echo "$as_me:25391: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -25404,7 +25405,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:25407: checking for initscr in -lcurses" >&5 + echo "$as_me:25408: 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 @@ -25412,7 +25413,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25415 "configure" +#line 25416 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25431,16 +25432,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25434: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25435: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25437: \$? = $ac_status" >&5 + echo "$as_me:25438: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25440: \"$ac_try\"") >&5 + { (eval echo "$as_me:25441: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25443: \$? = $ac_status" >&5 + echo "$as_me:25444: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -25451,7 +25452,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25454: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:25455: 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 @@ -25473,7 +25474,7 @@ LIBS="$cf_add_libs" fi - echo "$as_me:25476: checking for tgoto in -ltermcap" >&5 + echo "$as_me:25477: 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 @@ -25481,7 +25482,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25484 "configure" +#line 25485 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25500,16 +25501,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25503: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25504: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25506: \$? = $ac_status" >&5 + echo "$as_me:25507: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25509: \"$ac_try\"") >&5 + { (eval echo "$as_me:25510: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25512: \$? = $ac_status" >&5 + echo "$as_me:25513: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -25520,7 +25521,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25523: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:25524: 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 @@ -25547,20 +25548,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:25550: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:25551: 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:25557: checking for acos" >&5 +echo "$as_me:25558: 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 25563 "configure" +#line 25564 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -25591,16 +25592,16 @@ f = acos; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25594: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25595: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25597: \$? = $ac_status" >&5 + echo "$as_me:25598: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25600: \"$ac_try\"") >&5 + { (eval echo "$as_me:25601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25603: \$? = $ac_status" >&5 + echo "$as_me:25604: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -25610,13 +25611,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25613: result: $ac_cv_func_acos" >&5 +echo "$as_me:25614: 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:25619: checking for acos in -lm" >&5 +echo "$as_me:25620: 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 @@ -25624,7 +25625,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25627 "configure" +#line 25628 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -25643,16 +25644,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25646: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25647: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25649: \$? = $ac_status" >&5 + echo "$as_me:25650: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25652: \"$ac_try\"") >&5 + { (eval echo "$as_me:25653: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25655: \$? = $ac_status" >&5 + echo "$as_me:25656: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -25663,7 +25664,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:25666: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:25667: 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 @@ -25689,13 +25690,13 @@ case $host_os in eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:25692: checking for v_init" >&5 + echo "$as_me:25693: 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 25698 "configure" +#line 25699 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -25726,16 +25727,16 @@ f = v_init; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25729: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25730: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25732: \$? = $ac_status" >&5 + echo "$as_me:25733: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25735: \"$ac_try\"") >&5 + { (eval echo "$as_me:25736: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25738: \$? = $ac_status" >&5 + echo "$as_me:25739: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -25745,18 +25746,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25748: result: $ac_cv_func_v_init" >&5 +echo "$as_me:25749: 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:25755: checking for v_init in -lvideo" >&5 + echo "$as_me:25756: 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 25759 "configure" +#line 25760 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -25768,25 +25769,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25771: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25772: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25774: \$? = $ac_status" >&5 + echo "$as_me:25775: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25777: \"$ac_try\"") >&5 + { (eval echo "$as_me:25778: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25780: \$? = $ac_status" >&5 + echo "$as_me:25781: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25782: result: yes" >&5 + echo "$as_me:25783: 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:25789: result: no" >&5 +echo "$as_me:25790: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -25854,11 +25855,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:25857: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:25858: 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 25861 "configure" +#line 25862 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -25870,25 +25871,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25873: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25874: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25876: \$? = $ac_status" >&5 + echo "$as_me:25877: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25879: \"$ac_try\"") >&5 + { (eval echo "$as_me:25880: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25882: \$? = $ac_status" >&5 + echo "$as_me:25883: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:25884: result: yes" >&5 + echo "$as_me:25885: 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:25891: result: no" >&5 +echo "$as_me:25892: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -25903,7 +25904,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:25906: error: Cannot link video library" >&5 + { { echo "$as_me:25907: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -25913,13 +25914,13 @@ esac eval 'cf_cv_have_lib_'slang2'=no' cf_libdir="" - echo "$as_me:25916: checking for SLtt_get_screen_size" >&5 + echo "$as_me:25917: 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 25922 "configure" +#line 25923 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -25950,16 +25951,16 @@ f = SLtt_get_screen_size; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25953: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25954: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25956: \$? = $ac_status" >&5 + echo "$as_me:25957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25959: \"$ac_try\"") >&5 + { (eval echo "$as_me:25960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25962: \$? = $ac_status" >&5 + echo "$as_me:25963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -25969,18 +25970,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:25972: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:25973: result: $ac_cv_func_SLtt_get_screen_size" >&5 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6 if test $ac_cv_func_SLtt_get_screen_size = yes; then eval 'cf_cv_have_lib_'slang2'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:25979: checking for SLtt_get_screen_size in -lslang2" >&5 + echo "$as_me:25980: checking for SLtt_get_screen_size in -lslang2" >&5 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang2... $ECHO_C" >&6 LIBS="-lslang2 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 25983 "configure" +#line 25984 "configure" #include "confdefs.h" #include <slang.h> int @@ -25992,25 +25993,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25995: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25996: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25998: \$? = $ac_status" >&5 + echo "$as_me:25999: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26001: \"$ac_try\"") >&5 + { (eval echo "$as_me:26002: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26004: \$? = $ac_status" >&5 + echo "$as_me:26005: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26006: result: yes" >&5 + echo "$as_me:26007: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang2'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:26013: result: no" >&5 +echo "$as_me:26014: result: no" >&5 echo "${ECHO_T}no" >&6 cf_search= @@ -26078,11 +26079,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:26081: checking for -lslang2 in $cf_libdir" >&5 + echo "$as_me:26082: checking for -lslang2 in $cf_libdir" >&5 echo $ECHO_N "checking for -lslang2 in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lslang2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 26085 "configure" +#line 26086 "configure" #include "confdefs.h" #include <slang.h> int @@ -26094,25 +26095,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26097: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26098: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26100: \$? = $ac_status" >&5 + echo "$as_me:26101: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26103: \"$ac_try\"") >&5 + { (eval echo "$as_me:26104: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26106: \$? = $ac_status" >&5 + echo "$as_me:26107: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:26108: result: yes" >&5 + echo "$as_me:26109: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang2'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:26115: result: no" >&5 +echo "$as_me:26116: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -26127,13 +26128,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang2 if test $cf_found_library = no ; then - { { echo "$as_me:26130: error: Cannot link slang2 library" >&5 + { { echo "$as_me:26131: error: Cannot link slang2 library" >&5 echo "$as_me: error: Cannot link slang2 library" >&2;} { (exit 1); exit 1; }; } fi cf_slang_LIBS3="$LIBS" -echo "$as_me:26136: checking if we can link slang2 without termcap" >&5 +echo "$as_me:26137: checking if we can link slang2 without termcap" >&5 echo $ECHO_N "checking if we can link slang2 without termcap... $ECHO_C" >&6 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'` @@ -26142,7 +26143,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 26145 "configure" +#line 26146 "configure" #include "confdefs.h" #include <slang.h> int @@ -26154,16 +26155,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26157: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26158: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26160: \$? = $ac_status" >&5 + echo "$as_me:26161: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26163: \"$ac_try\"") >&5 + { (eval echo "$as_me:26164: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26166: \$? = $ac_status" >&5 + echo "$as_me:26167: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -26172,12 +26173,12 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:26175: result: $cf_result" >&5 +echo "$as_me:26176: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" else - { { echo "$as_me:26180: error: cannot find slang headers" >&5 + { { echo "$as_me:26181: error: cannot find slang headers" >&5 echo "$as_me: error: cannot find slang headers" >&2;} { (exit 1); exit 1; }; } fi @@ -26185,14 +26186,14 @@ fi # There's an unofficial set of patches for slang that gives it some limited # UTF8 capability. Unfortunately it won't compile unless one defines UTF8. -echo "$as_me:26188: checking if we must define UTF8" >&5 +echo "$as_me:26189: 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 26195 "configure" +#line 26196 "configure" #include "confdefs.h" #include <slang.h> int @@ -26204,16 +26205,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26207: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26208: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26210: \$? = $ac_status" >&5 + echo "$as_me:26211: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26213: \"$ac_try\"") >&5 + { (eval echo "$as_me:26214: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26216: \$? = $ac_status" >&5 + echo "$as_me:26217: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -26221,7 +26222,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26224 "configure" +#line 26225 "configure" #include "confdefs.h" #define UTF8 @@ -26235,16 +26236,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26238: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26239: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26241: \$? = $ac_status" >&5 + echo "$as_me:26242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26244: \"$ac_try\"") >&5 + { (eval echo "$as_me:26245: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26247: \$? = $ac_status" >&5 + echo "$as_me:26248: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -26257,7 +26258,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26260: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:26261: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -26268,14 +26269,14 @@ EOF fi -echo "$as_me:26271: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:26272: 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 26278 "configure" +#line 26279 "configure" #include "confdefs.h" #include <slang.h> int @@ -26294,16 +26295,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26297: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26298: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26300: \$? = $ac_status" >&5 + echo "$as_me:26301: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26303: \"$ac_try\"") >&5 + { (eval echo "$as_me:26304: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26306: \$? = $ac_status" >&5 + echo "$as_me:26307: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -26314,20 +26315,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26317: result: $cf_cv_slang_unix" >&5 +echo "$as_me:26318: result: $cf_cv_slang_unix" >&5 echo "${ECHO_T}$cf_cv_slang_unix" >&6 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF #define REAL_UNIX_SYSTEM 1 EOF - echo "$as_me:26324: checking for SLsmg_Color_Type" >&5 + echo "$as_me:26325: checking for SLsmg_Color_Type" >&5 echo $ECHO_N "checking for SLsmg_Color_Type... $ECHO_C" >&6 if test "${ac_cv_type_SLsmg_Color_Type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26330 "configure" +#line 26331 "configure" #include "confdefs.h" #include <slang.h> @@ -26343,16 +26344,16 @@ if (sizeof (SLsmg_Color_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26346: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26347: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26349: \$? = $ac_status" >&5 + echo "$as_me:26350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26352: \"$ac_try\"") >&5 + { (eval echo "$as_me:26353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26355: \$? = $ac_status" >&5 + echo "$as_me:26356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLsmg_Color_Type=yes else @@ -26362,7 +26363,7 @@ ac_cv_type_SLsmg_Color_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26365: result: $ac_cv_type_SLsmg_Color_Type" >&5 +echo "$as_me:26366: result: $ac_cv_type_SLsmg_Color_Type" >&5 echo "${ECHO_T}$ac_cv_type_SLsmg_Color_Type" >&6 if test $ac_cv_type_SLsmg_Color_Type = yes; then ac_cv_type_SLsmg_Color_Type=yes @@ -26378,13 +26379,13 @@ EOF fi - echo "$as_me:26381: checking for SLtt_Char_Type" >&5 + echo "$as_me:26382: checking for SLtt_Char_Type" >&5 echo $ECHO_N "checking for SLtt_Char_Type... $ECHO_C" >&6 if test "${ac_cv_type_SLtt_Char_Type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26387 "configure" +#line 26388 "configure" #include "confdefs.h" #include <slang.h> @@ -26400,16 +26401,16 @@ if (sizeof (SLtt_Char_Type)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26403: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26404: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26406: \$? = $ac_status" >&5 + echo "$as_me:26407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26409: \"$ac_try\"") >&5 + { (eval echo "$as_me:26410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26412: \$? = $ac_status" >&5 + echo "$as_me:26413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_SLtt_Char_Type=yes else @@ -26419,7 +26420,7 @@ ac_cv_type_SLtt_Char_Type=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26422: result: $ac_cv_type_SLtt_Char_Type" >&5 +echo "$as_me:26423: result: $ac_cv_type_SLtt_Char_Type" >&5 echo "${ECHO_T}$ac_cv_type_SLtt_Char_Type" >&6 if test $ac_cv_type_SLtt_Char_Type = yes; then ac_cv_type_SLtt_Char_Type=yes @@ -26439,14 +26440,14 @@ fi ;; esac -echo "$as_me:26442: checking for chtype typedef" >&5 +echo "$as_me:26443: checking for chtype typedef" >&5 echo $ECHO_N "checking for chtype typedef... $ECHO_C" >&6 if test "${cf_cv_chtype_decl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26449 "configure" +#line 26450 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26458,16 +26459,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26461: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26462: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26464: \$? = $ac_status" >&5 + echo "$as_me:26465: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26467: \"$ac_try\"") >&5 + { (eval echo "$as_me:26468: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26470: \$? = $ac_status" >&5 + echo "$as_me:26471: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -26477,7 +26478,7 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26480: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:26481: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then @@ -26485,14 +26486,14 @@ cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:26488: checking if chtype is scalar or struct" >&5 + echo "$as_me:26489: checking if chtype is scalar or struct" >&5 echo $ECHO_N "checking if chtype is scalar or struct... $ECHO_C" >&6 if test "${cf_cv_chtype_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26495 "configure" +#line 26496 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -26504,16 +26505,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26507: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26508: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26510: \$? = $ac_status" >&5 + echo "$as_me:26511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26513: \"$ac_try\"") >&5 + { (eval echo "$as_me:26514: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26516: \$? = $ac_status" >&5 + echo "$as_me:26517: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -26523,7 +26524,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26526: result: $cf_cv_chtype_type" >&5 +echo "$as_me:26527: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then @@ -26534,7 +26535,7 @@ EOF fi fi -echo "$as_me:26537: checking if you want the wide-curses features" >&5 +echo "$as_me:26538: 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. @@ -26551,10 +26552,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:26554: result: $use_wide_curses" >&5 +echo "$as_me:26555: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:26557: checking if color-style code should be used" >&5 +echo "$as_me:26558: 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. @@ -26574,7 +26575,7 @@ fi; case $use_color_style in (no) - echo "$as_me:26577: result: no" >&5 + echo "$as_me:26578: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -26584,10 +26585,10 @@ cat >>confdefs.h <<\EOF #define USE_COLOR_STYLE 1 EOF - echo "$as_me:26587: result: yes" >&5 + echo "$as_me:26588: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:26590: checking for location of style-sheet file" >&5 + echo "$as_me:26591: 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. @@ -26623,7 +26624,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:26626: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26627: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26632,7 +26633,7 @@ esac fi eval LYNX_LSS_FILE="$withval" - echo "$as_me:26635: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:26636: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -26645,7 +26646,7 @@ EOF ;; esac -echo "$as_me:26648: checking for the default configuration-file" >&5 +echo "$as_me:26649: 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. @@ -26681,7 +26682,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:26684: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26685: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26690,7 +26691,7 @@ esac fi eval LYNX_CFG_FILE="$withval" -echo "$as_me:26693: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:26694: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -26699,7 +26700,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:26702: checking for the default configuration-path" >&5 +echo "$as_me:26703: checking for the default configuration-path" >&5 echo $ECHO_N "checking for the default configuration-path... $ECHO_C" >&6 # Check whether --with-cfg-path or --without-cfg-path was given. @@ -26735,7 +26736,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:26738: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26739: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26744,7 +26745,7 @@ esac fi eval LYNX_CFG_PATH="$withval" -echo "$as_me:26747: result: $LYNX_CFG_PATH" >&5 +echo "$as_me:26748: result: $LYNX_CFG_PATH" >&5 echo "${ECHO_T}$LYNX_CFG_PATH" >&6 test -z "$LYNX_CFG_PATH" && `echo "$LYNX_CFG_FILE" | sed -e 's%/[^/]*$%%'` @@ -26754,7 +26755,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_PATH "$LYNX_CFG_PATH" EOF -echo "$as_me:26757: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:26758: checking if htmlized lynx.cfg should be built" >&5 echo $ECHO_N "checking if htmlized lynx.cfg should be built... $ECHO_C" >&6 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given. @@ -26771,7 +26772,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:26774: result: $use_htmlized_cfg" >&5 +echo "$as_me:26775: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -26779,7 +26780,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:26782: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:26783: checking if local doc directory should be linked to help page" >&5 echo $ECHO_N "checking if local doc directory should be linked to help page... $ECHO_C" >&6 # Check whether --enable-local-docs or --disable-local-docs was given. @@ -26796,7 +26797,7 @@ else use_local_docs=no fi; -echo "$as_me:26799: result: $use_local_docs" >&5 +echo "$as_me:26800: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -26804,7 +26805,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:26807: checking for MIME library directory" >&5 +echo "$as_me:26808: checking for MIME library directory" >&5 echo $ECHO_N "checking for MIME library directory... $ECHO_C" >&6 # Check whether --with-mime-libdir or --without-mime-libdir was given. @@ -26840,7 +26841,7 @@ case ".$withval" in withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; (*) - { { echo "$as_me:26843: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:26844: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -26849,7 +26850,7 @@ esac fi eval MIME_LIBDIR="$withval" -echo "$as_me:26852: result: $MIME_LIBDIR" >&5 +echo "$as_me:26853: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` @@ -26857,7 +26858,7 @@ cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:26860: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:26861: checking if locale-charset selection logic should be used" >&5 echo $ECHO_N "checking if locale-charset selection logic should be used... $ECHO_C" >&6 # Check whether --enable-locale-charset or --disable-locale-charset was given. @@ -26874,7 +26875,7 @@ else use_locale_charset=yes fi; -echo "$as_me:26877: result: $use_locale_charset" >&5 +echo "$as_me:26878: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF @@ -26883,7 +26884,7 @@ EOF CHARSET_DEFS= -echo "$as_me:26886: checking if you want only a few charsets" >&5 +echo "$as_me:26887: 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. @@ -26895,7 +26896,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:26898: result: yes" >&5 + echo "$as_me:26899: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF @@ -26909,7 +26910,7 @@ EOF if test "$cf_charsets" = "minimal" ; then test -n "$verbose" && echo " using minimal list of charsets: $cf_min_charsets" 1>&6 -echo "${as_me:-configure}:26912: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me:-configure}:26913: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 fi cf_charsets=`echo $cf_charsets | sed -e "s/minimal/$cf_min_charsets/g" -e 's/,/ /g'` @@ -26936,28 +26937,28 @@ echo "${as_me:-configure}:26912: testing using minimal list of charsets: $cf_min then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me:-configure}:26939: testing found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:26940: testing found $cf_charset ..." 1>&5 CHARSET_DEFS="-DNO_CHARSET_${cf_def_charset}=0 $CHARSET_DEFS" else test -n "$verbose" && echo " not found $cf_charset" 1>&6 -echo "${as_me:-configure}:26945: testing not found $cf_charset ..." 1>&5 +echo "${as_me:-configure}:26946: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:26950: result: no" >&5 + echo "$as_me:26951: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:26954: checking for ANSI C header files" >&5 +echo "$as_me:26955: 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 26960 "configure" +#line 26961 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -26965,13 +26966,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:26968: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26969: \"$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:26974: \$? = $ac_status" >&5 + echo "$as_me:26975: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26993,7 +26994,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 26996 "configure" +#line 26997 "configure" #include "confdefs.h" #include <string.h> @@ -27011,7 +27012,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 27014 "configure" +#line 27015 "configure" #include "confdefs.h" #include <stdlib.h> @@ -27032,7 +27033,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 27035 "configure" +#line 27036 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -27058,15 +27059,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27061: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27062: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27064: \$? = $ac_status" >&5 + echo "$as_me:27065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27066: \"$ac_try\"") >&5 + { (eval echo "$as_me:27067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27069: \$? = $ac_status" >&5 + echo "$as_me:27070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -27079,7 +27080,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:27082: result: $ac_cv_header_stdc" >&5 +echo "$as_me:27083: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -27089,13 +27090,13 @@ EOF fi -echo "$as_me:27092: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:27093: 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 27098 "configure" +#line 27099 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -27111,16 +27112,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27114: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27115: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27117: \$? = $ac_status" >&5 + echo "$as_me:27118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27120: \"$ac_try\"") >&5 + { (eval echo "$as_me:27121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27123: \$? = $ac_status" >&5 + echo "$as_me:27124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -27130,7 +27131,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27133: result: $ac_cv_header_time" >&5 +echo "$as_me:27134: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -27143,13 +27144,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:27146: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:27147: 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 27152 "configure" +#line 27153 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -27164,16 +27165,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27167: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27168: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27170: \$? = $ac_status" >&5 + echo "$as_me:27171: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27173: \"$ac_try\"") >&5 + { (eval echo "$as_me:27174: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27176: \$? = $ac_status" >&5 + echo "$as_me:27177: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -27183,7 +27184,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27186: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27187: 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 @@ -27196,7 +27197,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:27199: checking for opendir in -ldir" >&5 + echo "$as_me:27200: 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 @@ -27204,7 +27205,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 27207 "configure" +#line 27208 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27223,16 +27224,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27226: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27227: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27229: \$? = $ac_status" >&5 + echo "$as_me:27230: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27232: \"$ac_try\"") >&5 + { (eval echo "$as_me:27233: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27235: \$? = $ac_status" >&5 + echo "$as_me:27236: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -27243,14 +27244,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27246: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:27247: 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:27253: checking for opendir in -lx" >&5 + echo "$as_me:27254: 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 @@ -27258,7 +27259,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 27261 "configure" +#line 27262 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -27277,16 +27278,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27280: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27281: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27283: \$? = $ac_status" >&5 + echo "$as_me:27284: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27286: \"$ac_try\"") >&5 + { (eval echo "$as_me:27287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27289: \$? = $ac_status" >&5 + echo "$as_me:27290: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -27297,7 +27298,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:27300: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:27301: 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" @@ -27325,23 +27326,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:27328: checking for $ac_header" >&5 +echo "$as_me:27329: 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 27334 "configure" +#line 27335 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:27338: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27339: \"$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:27344: \$? = $ac_status" >&5 + echo "$as_me:27345: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -27360,7 +27361,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:27363: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27364: 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 @@ -27370,14 +27371,14 @@ EOF fi done -echo "$as_me:27373: checking termio.h and termios.h" >&5 +echo "$as_me:27374: 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 27380 "configure" +#line 27381 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -27395,16 +27396,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27398: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27399: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27401: \$? = $ac_status" >&5 + echo "$as_me:27402: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27404: \"$ac_try\"") >&5 + { (eval echo "$as_me:27405: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27407: \$? = $ac_status" >&5 + echo "$as_me:27408: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -27415,21 +27416,21 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27418: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:27419: 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:27425: checking for sigaction and structs" >&5 +echo "$as_me:27426: 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 27432 "configure" +#line 27433 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27449,16 +27450,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27452: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27453: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27455: \$? = $ac_status" >&5 + echo "$as_me:27456: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27458: \"$ac_try\"") >&5 + { (eval echo "$as_me:27459: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27461: \$? = $ac_status" >&5 + echo "$as_me:27462: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -27469,7 +27470,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27472: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:27473: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF @@ -27479,23 +27480,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:27482: checking for $ac_header" >&5 +echo "$as_me:27483: 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 27488 "configure" +#line 27489 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:27492: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27493: \"$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:27498: \$? = $ac_status" >&5 + echo "$as_me:27499: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -27514,7 +27515,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:27517: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27518: 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 @@ -27535,23 +27536,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:27538: checking for $ac_header" >&5 +echo "$as_me:27539: 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 27544 "configure" +#line 27545 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:27548: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27549: \"$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:27554: \$? = $ac_status" >&5 + echo "$as_me:27555: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -27570,7 +27571,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:27573: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27574: 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 @@ -27583,23 +27584,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:27586: checking for $ac_header" >&5 +echo "$as_me:27587: 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 27592 "configure" +#line 27593 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:27596: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:27597: \"$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:27602: \$? = $ac_status" >&5 + echo "$as_me:27603: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -27618,7 +27619,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:27621: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:27622: 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 @@ -27640,14 +27641,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:27643: checking for union wait" >&5 +echo "$as_me:27644: 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 27650 "configure" +#line 27651 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27663,16 +27664,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27666: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27667: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27669: \$? = $ac_status" >&5 + echo "$as_me:27670: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27672: \"$ac_try\"") >&5 + { (eval echo "$as_me:27673: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27675: \$? = $ac_status" >&5 + echo "$as_me:27676: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -27682,7 +27683,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 27685 "configure" +#line 27686 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27702,16 +27703,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27705: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27706: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27708: \$? = $ac_status" >&5 + echo "$as_me:27709: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27711: \"$ac_try\"") >&5 + { (eval echo "$as_me:27712: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27714: \$? = $ac_status" >&5 + echo "$as_me:27715: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -27726,7 +27727,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:27729: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:27730: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF @@ -27735,14 +27736,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:27738: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:27739: 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 27745 "configure" +#line 27746 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27754,16 +27755,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27757: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27760: \$? = $ac_status" >&5 + echo "$as_me:27761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27763: \"$ac_try\"") >&5 + { (eval echo "$as_me:27764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27766: \$? = $ac_status" >&5 + echo "$as_me:27767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -27775,21 +27776,21 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:27778: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:27779: 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:27785: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:27786: 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 27792 "configure" +#line 27793 "configure" #include "confdefs.h" $cf_wait_headers int @@ -27801,16 +27802,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27804: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27805: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27807: \$? = $ac_status" >&5 + echo "$as_me:27808: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27810: \"$ac_try\"") >&5 + { (eval echo "$as_me:27811: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27813: \$? = $ac_status" >&5 + echo "$as_me:27814: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -27822,7 +27823,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:27825: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:27826: 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 @@ -27831,13 +27832,13 @@ EOF fi -echo "$as_me:27834: checking for uid_t in sys/types.h" >&5 +echo "$as_me:27835: 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 27840 "configure" +#line 27841 "configure" #include "confdefs.h" #include <sys/types.h> @@ -27851,7 +27852,7 @@ fi rm -rf conftest* fi -echo "$as_me:27854: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:27855: 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 @@ -27865,7 +27866,7 @@ EOF fi -echo "$as_me:27868: checking type of array argument to getgroups" >&5 +echo "$as_me:27869: 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 @@ -27874,7 +27875,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 27877 "configure" +#line 27878 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -27900,15 +27901,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:27903: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27904: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27906: \$? = $ac_status" >&5 + echo "$as_me:27907: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:27908: \"$ac_try\"") >&5 + { (eval echo "$as_me:27909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27911: \$? = $ac_status" >&5 + echo "$as_me:27912: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -27921,7 +27922,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 27924 "configure" +#line 27925 "configure" #include "confdefs.h" #include <unistd.h> @@ -27936,20 +27937,20 @@ rm -rf conftest* fi fi -echo "$as_me:27939: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:27940: 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:27946: checking for off_t" >&5 +echo "$as_me:27947: 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 27952 "configure" +#line 27953 "configure" #include "confdefs.h" $ac_includes_default int @@ -27964,16 +27965,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27967: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27968: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27970: \$? = $ac_status" >&5 + echo "$as_me:27971: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27973: \"$ac_try\"") >&5 + { (eval echo "$as_me:27974: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27976: \$? = $ac_status" >&5 + echo "$as_me:27977: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -27983,7 +27984,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27986: result: $ac_cv_type_off_t" >&5 +echo "$as_me:27987: 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 : @@ -27995,13 +27996,13 @@ EOF fi -echo "$as_me:27998: checking for pid_t" >&5 +echo "$as_me:27999: 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 28004 "configure" +#line 28005 "configure" #include "confdefs.h" $ac_includes_default int @@ -28016,16 +28017,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28019: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28020: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28022: \$? = $ac_status" >&5 + echo "$as_me:28023: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28025: \"$ac_try\"") >&5 + { (eval echo "$as_me:28026: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28028: \$? = $ac_status" >&5 + echo "$as_me:28029: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -28035,7 +28036,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28038: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:28039: 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 : @@ -28047,13 +28048,13 @@ EOF fi -echo "$as_me:28050: checking for uid_t in sys/types.h" >&5 +echo "$as_me:28051: 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 28056 "configure" +#line 28057 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28067,7 +28068,7 @@ fi rm -rf conftest* fi -echo "$as_me:28070: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:28071: 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 @@ -28081,13 +28082,13 @@ EOF fi -echo "$as_me:28084: checking for mode_t" >&5 +echo "$as_me:28085: 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 28090 "configure" +#line 28091 "configure" #include "confdefs.h" $ac_includes_default int @@ -28102,16 +28103,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28105: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28106: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28108: \$? = $ac_status" >&5 + echo "$as_me:28109: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28111: \"$ac_try\"") >&5 + { (eval echo "$as_me:28112: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28114: \$? = $ac_status" >&5 + echo "$as_me:28115: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -28121,7 +28122,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28124: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:28125: 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 : @@ -28133,13 +28134,13 @@ EOF fi - echo "$as_me:28136: checking for ssize_t" >&5 + echo "$as_me:28137: checking for ssize_t" >&5 echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6 if test "${ac_cv_type_ssize_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28142 "configure" +#line 28143 "configure" #include "confdefs.h" $ac_includes_default int @@ -28154,16 +28155,16 @@ if (sizeof (ssize_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28157: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28158: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28160: \$? = $ac_status" >&5 + echo "$as_me:28161: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28163: \"$ac_try\"") >&5 + { (eval echo "$as_me:28164: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28166: \$? = $ac_status" >&5 + echo "$as_me:28167: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_ssize_t=yes else @@ -28173,7 +28174,7 @@ ac_cv_type_ssize_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28176: result: $ac_cv_type_ssize_t" >&5 +echo "$as_me:28177: result: $ac_cv_type_ssize_t" >&5 echo "${ECHO_T}$ac_cv_type_ssize_t" >&6 if test $ac_cv_type_ssize_t = yes; then ac_cv_type_ssize_t=yes @@ -28189,13 +28190,13 @@ EOF fi - echo "$as_me:28192: checking for socklen_t" >&5 + echo "$as_me:28193: 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 28198 "configure" +#line 28199 "configure" #include "confdefs.h" #include <sys/types.h> @@ -28213,16 +28214,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28216: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28217: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28219: \$? = $ac_status" >&5 + echo "$as_me:28220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28222: \"$ac_try\"") >&5 + { (eval echo "$as_me:28223: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28225: \$? = $ac_status" >&5 + echo "$as_me:28226: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -28232,7 +28233,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28235: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:28236: 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 @@ -28248,7 +28249,7 @@ EOF fi -echo "$as_me:28251: checking for long long type" >&5 +echo "$as_me:28252: checking for long long type" >&5 echo $ECHO_N "checking for long long type... $ECHO_C" >&6 if test "${cf_cv_type_long_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28279,7 +28280,7 @@ _CFEOF rm -f conftest* fi -echo "$as_me:28282: result: $cf_cv_type_long_long" >&5 +echo "$as_me:28283: result: $cf_cv_type_long_long" >&5 echo "${ECHO_T}$cf_cv_type_long_long" >&6 if test "$cf_cv_type_long_long" = yes ; then @@ -28290,14 +28291,14 @@ EOF fi -echo "$as_me:28293: checking for tm.tm_gmtoff" >&5 +echo "$as_me:28294: checking for tm.tm_gmtoff" >&5 echo $ECHO_N "checking for tm.tm_gmtoff... $ECHO_C" >&6 if test "${cf_cv_tm_gmtoff+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28300 "configure" +#line 28301 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -28322,16 +28323,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28325: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28326: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28328: \$? = $ac_status" >&5 + echo "$as_me:28329: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28331: \"$ac_try\"") >&5 + { (eval echo "$as_me:28332: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28334: \$? = $ac_status" >&5 + echo "$as_me:28335: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -28342,20 +28343,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28345: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:28346: result: $cf_cv_tm_gmtoff" >&5 echo "${ECHO_T}$cf_cv_tm_gmtoff" >&6 test $cf_cv_tm_gmtoff = no && cat >>confdefs.h <<\EOF #define DONT_HAVE_TM_GMTOFF 1 EOF -echo "$as_me:28352: checking for int" >&5 +echo "$as_me:28353: checking for int" >&5 echo $ECHO_N "checking for int... $ECHO_C" >&6 if test "${ac_cv_type_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28358 "configure" +#line 28359 "configure" #include "confdefs.h" $ac_includes_default int @@ -28370,16 +28371,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28373: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28374: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28376: \$? = $ac_status" >&5 + echo "$as_me:28377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28379: \"$ac_try\"") >&5 + { (eval echo "$as_me:28380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28382: \$? = $ac_status" >&5 + echo "$as_me:28383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -28389,10 +28390,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28392: result: $ac_cv_type_int" >&5 +echo "$as_me:28393: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:28395: checking size of int" >&5 +echo "$as_me:28396: checking size of int" >&5 echo $ECHO_N "checking size of int... $ECHO_C" >&6 if test "${ac_cv_sizeof_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28401,7 +28402,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28404 "configure" +#line 28405 "configure" #include "confdefs.h" $ac_includes_default int @@ -28413,21 +28414,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28416: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28417: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28419: \$? = $ac_status" >&5 + echo "$as_me:28420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28422: \"$ac_try\"") >&5 + { (eval echo "$as_me:28423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28425: \$? = $ac_status" >&5 + echo "$as_me:28426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28430 "configure" +#line 28431 "configure" #include "confdefs.h" $ac_includes_default int @@ -28439,16 +28440,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28442: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28443: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28445: \$? = $ac_status" >&5 + echo "$as_me:28446: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28448: \"$ac_try\"") >&5 + { (eval echo "$as_me:28449: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28451: \$? = $ac_status" >&5 + echo "$as_me:28452: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28464,7 +28465,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28467 "configure" +#line 28468 "configure" #include "confdefs.h" $ac_includes_default int @@ -28476,16 +28477,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28479: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28480: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28482: \$? = $ac_status" >&5 + echo "$as_me:28483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28485: \"$ac_try\"") >&5 + { (eval echo "$as_me:28486: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28488: \$? = $ac_status" >&5 + echo "$as_me:28489: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28501,7 +28502,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 28504 "configure" +#line 28505 "configure" #include "confdefs.h" $ac_includes_default int @@ -28513,16 +28514,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28516: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28517: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28519: \$? = $ac_status" >&5 + echo "$as_me:28520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28522: \"$ac_try\"") >&5 + { (eval echo "$as_me:28523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28525: \$? = $ac_status" >&5 + echo "$as_me:28526: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28535,12 +28536,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28538: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28539: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 28543 "configure" +#line 28544 "configure" #include "confdefs.h" $ac_includes_default int @@ -28556,15 +28557,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28559: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28560: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28562: \$? = $ac_status" >&5 + echo "$as_me:28563: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28564: \"$ac_try\"") >&5 + { (eval echo "$as_me:28565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28567: \$? = $ac_status" >&5 + echo "$as_me:28568: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -28580,7 +28581,7 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:28583: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:28584: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <<EOF #define SIZEOF_INT $ac_cv_sizeof_int @@ -28588,23 +28589,23 @@ EOF if test "${ac_cv_type_int+set}" = set; then if test "${ac_cv_sizeof_int+set}" != set; then - { echo "$as_me:28591: WARNING: using 4 for sizeof int" >&5 + { echo "$as_me:28592: WARNING: using 4 for sizeof int" >&5 echo "$as_me: WARNING: using 4 for sizeof int" >&2;} ac_cv_sizeof_int=4 elif test "x${ac_cv_sizeof_int}" = x0; then - { echo "$as_me:28595: WARNING: sizeof int not found, using 4" >&5 + { echo "$as_me:28596: WARNING: sizeof int not found, using 4" >&5 echo "$as_me: WARNING: sizeof int not found, using 4" >&2;} ac_cv_sizeof_int=4 fi fi -echo "$as_me:28601: checking for long" >&5 +echo "$as_me:28602: checking for long" >&5 echo $ECHO_N "checking for long... $ECHO_C" >&6 if test "${ac_cv_type_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 28607 "configure" +#line 28608 "configure" #include "confdefs.h" $ac_includes_default int @@ -28619,16 +28620,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28623: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28625: \$? = $ac_status" >&5 + echo "$as_me:28626: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28628: \"$ac_try\"") >&5 + { (eval echo "$as_me:28629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28631: \$? = $ac_status" >&5 + echo "$as_me:28632: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -28638,10 +28639,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28641: result: $ac_cv_type_long" >&5 +echo "$as_me:28642: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:28644: checking size of long" >&5 +echo "$as_me:28645: checking size of long" >&5 echo $ECHO_N "checking size of long... $ECHO_C" >&6 if test "${ac_cv_sizeof_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28650,7 +28651,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28653 "configure" +#line 28654 "configure" #include "confdefs.h" $ac_includes_default int @@ -28662,21 +28663,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28665: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28666: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28668: \$? = $ac_status" >&5 + echo "$as_me:28669: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28671: \"$ac_try\"") >&5 + { (eval echo "$as_me:28672: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28674: \$? = $ac_status" >&5 + echo "$as_me:28675: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28679 "configure" +#line 28680 "configure" #include "confdefs.h" $ac_includes_default int @@ -28688,16 +28689,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28691: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28692: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28694: \$? = $ac_status" >&5 + echo "$as_me:28695: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28697: \"$ac_try\"") >&5 + { (eval echo "$as_me:28698: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28700: \$? = $ac_status" >&5 + echo "$as_me:28701: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28713,7 +28714,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28716 "configure" +#line 28717 "configure" #include "confdefs.h" $ac_includes_default int @@ -28725,16 +28726,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28728: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28729: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28731: \$? = $ac_status" >&5 + echo "$as_me:28732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28734: \"$ac_try\"") >&5 + { (eval echo "$as_me:28735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28737: \$? = $ac_status" >&5 + echo "$as_me:28738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28750,7 +28751,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 28753 "configure" +#line 28754 "configure" #include "confdefs.h" $ac_includes_default int @@ -28762,16 +28763,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28765: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28766: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28768: \$? = $ac_status" >&5 + echo "$as_me:28769: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28771: \"$ac_try\"") >&5 + { (eval echo "$as_me:28772: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28774: \$? = $ac_status" >&5 + echo "$as_me:28775: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -28784,12 +28785,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:28787: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:28788: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 28792 "configure" +#line 28793 "configure" #include "confdefs.h" $ac_includes_default int @@ -28805,15 +28806,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:28808: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28809: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28811: \$? = $ac_status" >&5 + echo "$as_me:28812: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:28813: \"$ac_try\"") >&5 + { (eval echo "$as_me:28814: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28816: \$? = $ac_status" >&5 + echo "$as_me:28817: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -28829,7 +28830,7 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:28832: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:28833: result: $ac_cv_sizeof_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_long" >&6 cat >>confdefs.h <<EOF #define SIZEOF_LONG $ac_cv_sizeof_long @@ -28837,23 +28838,23 @@ EOF if test "${ac_cv_type_long+set}" = set; then if test "${ac_cv_sizeof_long+set}" != set; then - { echo "$as_me:28840: WARNING: using 4 for sizeof long" >&5 + { echo "$as_me:28841: WARNING: using 4 for sizeof long" >&5 echo "$as_me: WARNING: using 4 for sizeof long" >&2;} ac_cv_sizeof_long=4 elif test "x${ac_cv_sizeof_long}" = x0; then - { echo "$as_me:28844: WARNING: sizeof long not found, using 4" >&5 + { echo "$as_me:28845: WARNING: sizeof long not found, using 4" >&5 echo "$as_me: WARNING: sizeof long not found, using 4" >&2;} ac_cv_sizeof_long=4 fi fi -echo "$as_me:28850: checking for off_t" >&5 +echo "$as_me:28851: 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 28856 "configure" +#line 28857 "configure" #include "confdefs.h" $ac_includes_default int @@ -28868,16 +28869,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28871: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28872: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28874: \$? = $ac_status" >&5 + echo "$as_me:28875: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28877: \"$ac_try\"") >&5 + { (eval echo "$as_me:28878: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28880: \$? = $ac_status" >&5 + echo "$as_me:28881: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -28887,10 +28888,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:28890: result: $ac_cv_type_off_t" >&5 +echo "$as_me:28891: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:28893: checking size of off_t" >&5 +echo "$as_me:28894: checking size of off_t" >&5 echo $ECHO_N "checking size of off_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -28899,7 +28900,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 28902 "configure" +#line 28903 "configure" #include "confdefs.h" $ac_includes_default int @@ -28911,21 +28912,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28914: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28915: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28917: \$? = $ac_status" >&5 + echo "$as_me:28918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28920: \"$ac_try\"") >&5 + { (eval echo "$as_me:28921: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28923: \$? = $ac_status" >&5 + echo "$as_me:28924: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28928 "configure" +#line 28929 "configure" #include "confdefs.h" $ac_includes_default int @@ -28937,16 +28938,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28940: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28941: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28943: \$? = $ac_status" >&5 + echo "$as_me:28944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28946: \"$ac_try\"") >&5 + { (eval echo "$as_me:28947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28949: \$? = $ac_status" >&5 + echo "$as_me:28950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -28962,7 +28963,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 28965 "configure" +#line 28966 "configure" #include "confdefs.h" $ac_includes_default int @@ -28974,16 +28975,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28977: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28978: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28980: \$? = $ac_status" >&5 + echo "$as_me:28981: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28983: \"$ac_try\"") >&5 + { (eval echo "$as_me:28984: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28986: \$? = $ac_status" >&5 + echo "$as_me:28987: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -28999,7 +29000,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 29002 "configure" +#line 29003 "configure" #include "confdefs.h" $ac_includes_default int @@ -29011,16 +29012,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29014: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29015: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29017: \$? = $ac_status" >&5 + echo "$as_me:29018: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29020: \"$ac_try\"") >&5 + { (eval echo "$as_me:29021: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29023: \$? = $ac_status" >&5 + echo "$as_me:29024: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -29033,12 +29034,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:29036: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:29037: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 29041 "configure" +#line 29042 "configure" #include "confdefs.h" $ac_includes_default int @@ -29054,15 +29055,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29057: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29058: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29060: \$? = $ac_status" >&5 + echo "$as_me:29061: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29062: \"$ac_try\"") >&5 + { (eval echo "$as_me:29063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29065: \$? = $ac_status" >&5 + echo "$as_me:29066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -29078,7 +29079,7 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:29081: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:29082: result: $ac_cv_sizeof_off_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_off_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_OFF_T $ac_cv_sizeof_off_t @@ -29086,23 +29087,23 @@ EOF if test "${ac_cv_type_off_t+set}" = set; then if test "${ac_cv_sizeof_off_t+set}" != set; then - { echo "$as_me:29089: WARNING: using 4 for sizeof off_t" >&5 + { echo "$as_me:29090: WARNING: using 4 for sizeof off_t" >&5 echo "$as_me: WARNING: using 4 for sizeof off_t" >&2;} ac_cv_sizeof_off_t=4 elif test "x${ac_cv_sizeof_off_t}" = x0; then - { echo "$as_me:29093: WARNING: sizeof off_t not found, using 4" >&5 + { echo "$as_me:29094: WARNING: sizeof off_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof off_t not found, using 4" >&2;} ac_cv_sizeof_off_t=4 fi fi -echo "$as_me:29099: checking for time_t" >&5 +echo "$as_me:29100: checking for time_t" >&5 echo $ECHO_N "checking for time_t... $ECHO_C" >&6 if test "${ac_cv_type_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 29105 "configure" +#line 29106 "configure" #include "confdefs.h" $ac_includes_default int @@ -29117,16 +29118,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29120: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29121: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29123: \$? = $ac_status" >&5 + echo "$as_me:29124: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29126: \"$ac_try\"") >&5 + { (eval echo "$as_me:29127: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29129: \$? = $ac_status" >&5 + echo "$as_me:29130: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -29136,10 +29137,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29139: result: $ac_cv_type_time_t" >&5 +echo "$as_me:29140: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:29142: checking size of time_t" >&5 +echo "$as_me:29143: checking size of time_t" >&5 echo $ECHO_N "checking size of time_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -29148,7 +29149,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 29151 "configure" +#line 29152 "configure" #include "confdefs.h" $ac_includes_default int @@ -29160,21 +29161,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29163: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29164: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29166: \$? = $ac_status" >&5 + echo "$as_me:29167: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29169: \"$ac_try\"") >&5 + { (eval echo "$as_me:29170: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29172: \$? = $ac_status" >&5 + echo "$as_me:29173: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 29177 "configure" +#line 29178 "configure" #include "confdefs.h" $ac_includes_default int @@ -29186,16 +29187,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29189: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29190: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29192: \$? = $ac_status" >&5 + echo "$as_me:29193: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29195: \"$ac_try\"") >&5 + { (eval echo "$as_me:29196: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29198: \$? = $ac_status" >&5 + echo "$as_me:29199: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -29211,7 +29212,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 29214 "configure" +#line 29215 "configure" #include "confdefs.h" $ac_includes_default int @@ -29223,16 +29224,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29226: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29227: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29229: \$? = $ac_status" >&5 + echo "$as_me:29230: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29232: \"$ac_try\"") >&5 + { (eval echo "$as_me:29233: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29235: \$? = $ac_status" >&5 + echo "$as_me:29236: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -29248,7 +29249,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 29251 "configure" +#line 29252 "configure" #include "confdefs.h" $ac_includes_default int @@ -29260,16 +29261,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29263: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29264: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29266: \$? = $ac_status" >&5 + echo "$as_me:29267: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29269: \"$ac_try\"") >&5 + { (eval echo "$as_me:29270: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29272: \$? = $ac_status" >&5 + echo "$as_me:29273: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -29282,12 +29283,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:29285: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:29286: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 29290 "configure" +#line 29291 "configure" #include "confdefs.h" $ac_includes_default int @@ -29303,15 +29304,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29306: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29307: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29309: \$? = $ac_status" >&5 + echo "$as_me:29310: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29311: \"$ac_try\"") >&5 + { (eval echo "$as_me:29312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29314: \$? = $ac_status" >&5 + echo "$as_me:29315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -29327,7 +29328,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:29330: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:29331: result: $ac_cv_sizeof_time_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_time_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_TIME_T $ac_cv_sizeof_time_t @@ -29335,23 +29336,23 @@ EOF if test "${ac_cv_type_time_t+set}" = set; then if test "${ac_cv_sizeof_time_t+set}" != set; then - { echo "$as_me:29338: WARNING: using 4 for sizeof time_t" >&5 + { echo "$as_me:29339: WARNING: using 4 for sizeof time_t" >&5 echo "$as_me: WARNING: using 4 for sizeof time_t" >&2;} ac_cv_sizeof_time_t=4 elif test "x${ac_cv_sizeof_time_t}" = x0; then - { echo "$as_me:29342: WARNING: sizeof time_t not found, using 4" >&5 + { echo "$as_me:29343: WARNING: sizeof time_t not found, using 4" >&5 echo "$as_me: WARNING: sizeof time_t not found, using 4" >&2;} ac_cv_sizeof_time_t=4 fi fi -echo "$as_me:29348: checking for intptr_t" >&5 +echo "$as_me:29349: checking for intptr_t" >&5 echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6 if test "${ac_cv_type_intptr_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 29354 "configure" +#line 29355 "configure" #include "confdefs.h" $ac_includes_default int @@ -29366,16 +29367,16 @@ if (sizeof (intptr_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29369: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29370: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29372: \$? = $ac_status" >&5 + echo "$as_me:29373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29375: \"$ac_try\"") >&5 + { (eval echo "$as_me:29376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29378: \$? = $ac_status" >&5 + echo "$as_me:29379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_intptr_t=yes else @@ -29385,7 +29386,7 @@ ac_cv_type_intptr_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:29388: result: $ac_cv_type_intptr_t" >&5 +echo "$as_me:29389: result: $ac_cv_type_intptr_t" >&5 echo "${ECHO_T}$ac_cv_type_intptr_t" >&6 if test $ac_cv_type_intptr_t = yes; then : @@ -29399,13 +29400,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:29402: checking for working alloca.h" >&5 +echo "$as_me:29403: 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 29408 "configure" +#line 29409 "configure" #include "confdefs.h" #include <alloca.h> int @@ -29417,16 +29418,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29420: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29421: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29423: \$? = $ac_status" >&5 + echo "$as_me:29424: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29426: \"$ac_try\"") >&5 + { (eval echo "$as_me:29427: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29429: \$? = $ac_status" >&5 + echo "$as_me:29430: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -29436,7 +29437,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29439: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:29440: 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 @@ -29446,13 +29447,13 @@ EOF fi -echo "$as_me:29449: checking for alloca" >&5 +echo "$as_me:29450: 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 29455 "configure" +#line 29456 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -29484,16 +29485,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29487: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29488: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29490: \$? = $ac_status" >&5 + echo "$as_me:29491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29493: \"$ac_try\"") >&5 + { (eval echo "$as_me:29494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29496: \$? = $ac_status" >&5 + echo "$as_me:29497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -29503,7 +29504,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29506: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:29507: 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 @@ -29524,13 +29525,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:29527: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:29528: 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 29533 "configure" +#line 29534 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -29548,18 +29549,18 @@ fi rm -rf conftest* fi -echo "$as_me:29551: result: $ac_cv_os_cray" >&5 +echo "$as_me:29552: 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:29556: checking for $ac_func" >&5 +echo "$as_me:29557: 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 29562 "configure" +#line 29563 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29590,16 +29591,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29593: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29594: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29596: \$? = $ac_status" >&5 + echo "$as_me:29597: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29599: \"$ac_try\"") >&5 + { (eval echo "$as_me:29600: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29602: \$? = $ac_status" >&5 + echo "$as_me:29603: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29609,7 +29610,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29612: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29613: 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 @@ -29623,7 +29624,7 @@ fi done fi -echo "$as_me:29626: checking stack direction for C alloca" >&5 +echo "$as_me:29627: 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 @@ -29632,7 +29633,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 29635 "configure" +#line 29636 "configure" #include "confdefs.h" int find_stack_direction (void) @@ -29655,15 +29656,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29658: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29661: \$? = $ac_status" >&5 + echo "$as_me:29662: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29663: \"$ac_try\"") >&5 + { (eval echo "$as_me:29664: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29666: \$? = $ac_status" >&5 + echo "$as_me:29667: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -29675,7 +29676,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29678: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:29679: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -29687,23 +29688,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:29690: checking for $ac_header" >&5 +echo "$as_me:29691: 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 29696 "configure" +#line 29697 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:29700: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:29701: \"$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:29706: \$? = $ac_status" >&5 + echo "$as_me:29707: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -29722,7 +29723,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:29725: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:29726: 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 @@ -29735,13 +29736,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:29738: checking for $ac_func" >&5 +echo "$as_me:29739: 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 29744 "configure" +#line 29745 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -29772,16 +29773,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29775: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29776: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29778: \$? = $ac_status" >&5 + echo "$as_me:29779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29781: \"$ac_try\"") >&5 + { (eval echo "$as_me:29782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29784: \$? = $ac_status" >&5 + echo "$as_me:29785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -29791,7 +29792,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:29794: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:29795: 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 @@ -29803,7 +29804,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:29806: checking for working fork" >&5 + echo "$as_me:29807: 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 @@ -29826,15 +29827,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29829: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29830: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29832: \$? = $ac_status" >&5 + echo "$as_me:29833: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29834: \"$ac_try\"") >&5 + { (eval echo "$as_me:29835: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29837: \$? = $ac_status" >&5 + echo "$as_me:29838: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -29846,7 +29847,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29849: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:29850: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -29860,12 +29861,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:29863: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:29864: 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:29868: checking for working vfork" >&5 + echo "$as_me:29869: 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 @@ -29874,7 +29875,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 29877 "configure" +#line 29878 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -29971,15 +29972,15 @@ main (void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:29974: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29975: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29977: \$? = $ac_status" >&5 + echo "$as_me:29978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:29979: \"$ac_try\"") >&5 + { (eval echo "$as_me:29980: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29982: \$? = $ac_status" >&5 + echo "$as_me:29983: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -29991,13 +29992,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:29994: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:29995: 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:30000: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:30001: 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 @@ -30022,14 +30023,14 @@ EOF fi -echo "$as_me:30025: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:30026: 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 30032 "configure" +#line 30033 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30046,16 +30047,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30049: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30050: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30052: \$? = $ac_status" >&5 + echo "$as_me:30053: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30055: \"$ac_try\"") >&5 + { (eval echo "$as_me:30056: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30058: \$? = $ac_status" >&5 + echo "$as_me:30059: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -30063,7 +30064,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 30066 "configure" +#line 30067 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30085,16 +30086,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30088: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30089: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30091: \$? = $ac_status" >&5 + echo "$as_me:30092: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30094: \"$ac_try\"") >&5 + { (eval echo "$as_me:30095: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30097: \$? = $ac_status" >&5 + echo "$as_me:30098: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -30107,21 +30108,21 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30110: result: $cf_cv_fionbio" >&5 +echo "$as_me:30111: 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:30117: checking for broken/missing definition of remove" >&5 +echo "$as_me:30118: 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 30124 "configure" +#line 30125 "configure" #include "confdefs.h" #include <stdio.h> int @@ -30133,23 +30134,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30136: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30137: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30139: \$? = $ac_status" >&5 + echo "$as_me:30140: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30142: \"$ac_try\"") >&5 + { (eval echo "$as_me:30143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30145: \$? = $ac_status" >&5 + echo "$as_me:30146: \$? = $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 30152 "configure" +#line 30153 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -30162,16 +30163,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30165: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30166: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30168: \$? = $ac_status" >&5 + echo "$as_me:30169: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30171: \"$ac_try\"") >&5 + { (eval echo "$as_me:30172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30174: \$? = $ac_status" >&5 + echo "$as_me:30175: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -30186,21 +30187,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30189: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:30190: 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:30196: checking for lstat" >&5 +echo "$as_me:30197: 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 30203 "configure" +#line 30204 "configure" #include "confdefs.h" #include <sys/types.h> @@ -30214,16 +30215,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30217: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30218: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30220: \$? = $ac_status" >&5 + echo "$as_me:30221: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30223: \"$ac_try\"") >&5 + { (eval echo "$as_me:30224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30226: \$? = $ac_status" >&5 + echo "$as_me:30227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -30235,7 +30236,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30238: result: $ac_cv_func_lstat " >&5 +echo "$as_me:30239: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then @@ -30270,13 +30271,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:30273: checking for $ac_func" >&5 +echo "$as_me:30274: 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 30279 "configure" +#line 30280 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -30307,16 +30308,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30310: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30311: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30313: \$? = $ac_status" >&5 + echo "$as_me:30314: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30316: \"$ac_try\"") >&5 + { (eval echo "$as_me:30317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30319: \$? = $ac_status" >&5 + echo "$as_me:30320: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -30326,7 +30327,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30329: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:30330: 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 @@ -30342,13 +30343,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:30345: checking for $ac_func" >&5 +echo "$as_me:30346: 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 30351 "configure" +#line 30352 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -30379,16 +30380,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:30382: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30383: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30385: \$? = $ac_status" >&5 + echo "$as_me:30386: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30388: \"$ac_try\"") >&5 + { (eval echo "$as_me:30389: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30391: \$? = $ac_status" >&5 + echo "$as_me:30392: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -30398,7 +30399,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:30401: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:30402: 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 @@ -30410,7 +30411,7 @@ else fi done -echo "$as_me:30413: checking for random-integer functions" >&5 +echo "$as_me:30414: 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 @@ -30430,7 +30431,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 30433 "configure" +#line 30434 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30449,16 +30450,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:30452: \"$ac_link\"") >&5 +if { (eval echo "$as_me:30453: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:30455: \$? = $ac_status" >&5 + echo "$as_me:30456: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:30458: \"$ac_try\"") >&5 + { (eval echo "$as_me:30459: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30461: \$? = $ac_status" >&5 + echo "$as_me:30462: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -30470,10 +30471,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:30473: result: $cf_cv_srand_func" >&5 +echo "$as_me:30474: 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:30476: checking for range of random-integers" >&5 + echo "$as_me:30477: 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 @@ -30494,7 +30495,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 30497 "configure" +#line 30498 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30513,16 +30514,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30516: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30517: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30519: \$? = $ac_status" >&5 + echo "$as_me:30520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30522: \"$ac_try\"") >&5 + { (eval echo "$as_me:30523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30525: \$? = $ac_status" >&5 + echo "$as_me:30526: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30533,15 +30534,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:30536: result: $cf_cv_rand_max" >&5 +echo "$as_me:30537: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 case $cf_cv_srand_func in (*/arc4random) - echo "$as_me:30541: checking if <bsd/stdlib.h> should be included" >&5 + echo "$as_me:30542: checking if <bsd/stdlib.h> should be included" >&5 echo $ECHO_N "checking if <bsd/stdlib.h> should be included... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 30544 "configure" +#line 30545 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -30554,23 +30555,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30557: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30558: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30560: \$? = $ac_status" >&5 + echo "$as_me:30561: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30563: \"$ac_try\"") >&5 + { (eval echo "$as_me:30564: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30566: \$? = $ac_status" >&5 + echo "$as_me:30567: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 30573 "configure" +#line 30574 "configure" #include "confdefs.h" #include <bsd/stdlib.h> int @@ -30582,16 +30583,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30585: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30586: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30588: \$? = $ac_status" >&5 + echo "$as_me:30589: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30591: \"$ac_try\"") >&5 + { (eval echo "$as_me:30592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30594: \$? = $ac_status" >&5 + echo "$as_me:30595: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_stdlib_h=yes else @@ -30602,7 +30603,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:30605: result: $cf_bsd_stdlib_h" >&5 + echo "$as_me:30606: result: $cf_bsd_stdlib_h" >&5 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6 if test "$cf_bsd_stdlib_h" = yes then @@ -30612,10 +30613,10 @@ cat >>confdefs.h <<\EOF EOF else - echo "$as_me:30615: checking if <bsd/random.h> should be included" >&5 + echo "$as_me:30616: checking if <bsd/random.h> should be included" >&5 echo $ECHO_N "checking if <bsd/random.h> should be included... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 30618 "configure" +#line 30619 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -30628,23 +30629,23 @@ void *arc4random(int); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30631: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30632: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30634: \$? = $ac_status" >&5 + echo "$as_me:30635: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30637: \"$ac_try\"") >&5 + { (eval echo "$as_me:30638: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30640: \$? = $ac_status" >&5 + echo "$as_me:30641: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 30647 "configure" +#line 30648 "configure" #include "confdefs.h" #include <bsd/random.h> int @@ -30656,16 +30657,16 @@ unsigned x = arc4random() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30659: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30660: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30662: \$? = $ac_status" >&5 + echo "$as_me:30663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30665: \"$ac_try\"") >&5 + { (eval echo "$as_me:30666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30668: \$? = $ac_status" >&5 + echo "$as_me:30669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_bsd_random_h=yes else @@ -30676,7 +30677,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:30679: result: $cf_bsd_random_h" >&5 + echo "$as_me:30680: result: $cf_bsd_random_h" >&5 echo "${ECHO_T}$cf_bsd_random_h" >&6 if test "$cf_bsd_random_h" = yes then @@ -30686,7 +30687,7 @@ cat >>confdefs.h <<\EOF EOF else - { echo "$as_me:30689: WARNING: no header file found for arc4random" >&5 + { echo "$as_me:30690: WARNING: no header file found for arc4random" >&5 echo "$as_me: WARNING: no header file found for arc4random" >&2;} fi fi @@ -30721,13 +30722,13 @@ fi for ac_func in sleep do -echo "$as_me:30724: checking for $ac_func declaration" >&5 +echo "$as_me:30725: 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 30730 "configure" +#line 30731 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30748,20 +30749,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30751: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30752: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30754: \$? = $ac_status" >&5 + echo "$as_me:30755: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30757: \"$ac_try\"") >&5 + { (eval echo "$as_me:30758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30760: \$? = $ac_status" >&5 + echo "$as_me:30761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30764 "configure" +#line 30765 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -30782,16 +30783,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30785: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30786: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30788: \$? = $ac_status" >&5 + echo "$as_me:30789: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30791: \"$ac_try\"") >&5 + { (eval echo "$as_me:30792: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30794: \$? = $ac_status" >&5 + echo "$as_me:30795: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30812,11 +30813,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:30815: result: yes" >&5 + echo "$as_me:30816: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30819: result: no" >&5 + echo "$as_me:30820: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30831,13 +30832,13 @@ done for ac_func in strstr do -echo "$as_me:30834: checking for $ac_func declaration" >&5 +echo "$as_me:30835: 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 30840 "configure" +#line 30841 "configure" #include "confdefs.h" #include <string.h> int @@ -30851,20 +30852,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30854: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30855: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30857: \$? = $ac_status" >&5 + echo "$as_me:30858: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30860: \"$ac_try\"") >&5 + { (eval echo "$as_me:30861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30863: \$? = $ac_status" >&5 + echo "$as_me:30864: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30867 "configure" +#line 30868 "configure" #include "confdefs.h" #include <string.h> int @@ -30878,16 +30879,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30881: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30882: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30884: \$? = $ac_status" >&5 + echo "$as_me:30885: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30887: \"$ac_try\"") >&5 + { (eval echo "$as_me:30888: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30890: \$? = $ac_status" >&5 + echo "$as_me:30891: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -30908,11 +30909,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:30911: result: yes" >&5 + echo "$as_me:30912: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:30915: result: no" >&5 + echo "$as_me:30916: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -30927,13 +30928,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:30930: checking for $ac_func declaration" >&5 +echo "$as_me:30931: 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 30936 "configure" +#line 30937 "configure" #include "confdefs.h" #include <stdio.h> @@ -30949,20 +30950,20 @@ extern int $ac_func(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30952: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30953: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30955: \$? = $ac_status" >&5 + echo "$as_me:30956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30958: \"$ac_try\"") >&5 + { (eval echo "$as_me:30959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30961: \$? = $ac_status" >&5 + echo "$as_me:30962: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 30965 "configure" +#line 30966 "configure" #include "confdefs.h" #include <stdio.h> @@ -30978,16 +30979,16 @@ int (*p)() = $ac_func; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:30981: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:30982: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:30984: \$? = $ac_status" >&5 + echo "$as_me:30985: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:30987: \"$ac_try\"") >&5 + { (eval echo "$as_me:30988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:30990: \$? = $ac_status" >&5 + echo "$as_me:30991: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -31008,11 +31009,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:31011: result: yes" >&5 + echo "$as_me:31012: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:31015: result: no" >&5 + echo "$as_me:31016: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -31024,14 +31025,14 @@ EOF fi done -echo "$as_me:31027: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:31028: 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 31034 "configure" +#line 31035 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -31045,16 +31046,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31048: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31049: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31051: \$? = $ac_status" >&5 + echo "$as_me:31052: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31054: \"$ac_try\"") >&5 + { (eval echo "$as_me:31055: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31057: \$? = $ac_status" >&5 + echo "$as_me:31058: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -31065,7 +31066,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31068: result: $cf_cv_bool_defs" >&5 +echo "$as_me:31069: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then @@ -31079,14 +31080,14 @@ EOF fi -echo "$as_me:31082: checking if external errno is declared" >&5 +echo "$as_me:31083: 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 31089 "configure" +#line 31090 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -31104,16 +31105,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31107: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31110: \$? = $ac_status" >&5 + echo "$as_me:31111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31113: \"$ac_try\"") >&5 + { (eval echo "$as_me:31114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31116: \$? = $ac_status" >&5 + echo "$as_me:31117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -31124,7 +31125,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31127: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:31128: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -31139,14 +31140,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:31142: checking if external errno exists" >&5 +echo "$as_me:31143: 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 31149 "configure" +#line 31150 "configure" #include "confdefs.h" #undef errno @@ -31161,16 +31162,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31164: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31165: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31167: \$? = $ac_status" >&5 + echo "$as_me:31168: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31170: \"$ac_try\"") >&5 + { (eval echo "$as_me:31171: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31173: \$? = $ac_status" >&5 + echo "$as_me:31174: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -31181,7 +31182,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31184: result: $cf_cv_have_errno" >&5 +echo "$as_me:31185: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -31194,7 +31195,7 @@ EOF fi -echo "$as_me:31197: checking if we can set errno" >&5 +echo "$as_me:31198: 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 @@ -31202,7 +31203,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 31205 "configure" +#line 31206 "configure" #include "confdefs.h" #include <errno.h> int @@ -31214,16 +31215,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31217: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31218: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31220: \$? = $ac_status" >&5 + echo "$as_me:31221: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31223: \"$ac_try\"") >&5 + { (eval echo "$as_me:31224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31226: \$? = $ac_status" >&5 + echo "$as_me:31227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -31234,7 +31235,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 31237 "configure" +#line 31238 "configure" #include "confdefs.h" #include <errno.h> @@ -31245,15 +31246,15 @@ int main(void) } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:31248: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31249: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31251: \$? = $ac_status" >&5 + echo "$as_me:31252: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:31253: \"$ac_try\"") >&5 + { (eval echo "$as_me:31254: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31256: \$? = $ac_status" >&5 + echo "$as_me:31257: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -31266,21 +31267,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:31269: result: $cf_cv_set_errno" >&5 +echo "$as_me:31270: 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:31276: checking for setlocale()" >&5 +echo "$as_me:31277: 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 31283 "configure" +#line 31284 "configure" #include "confdefs.h" #include <locale.h> int @@ -31292,16 +31293,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31295: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31296: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31298: \$? = $ac_status" >&5 + echo "$as_me:31299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31301: \"$ac_try\"") >&5 + { (eval echo "$as_me:31302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31304: \$? = $ac_status" >&5 + echo "$as_me:31305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -31313,7 +31314,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31316: result: $cf_cv_locale" >&5 +echo "$as_me:31317: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF @@ -31321,14 +31322,14 @@ cat >>confdefs.h <<\EOF EOF } -echo "$as_me:31324: checking if NGROUPS is defined" >&5 +echo "$as_me:31325: 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 31331 "configure" +#line 31332 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -31347,23 +31348,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31351: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31353: \$? = $ac_status" >&5 + echo "$as_me:31354: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31356: \"$ac_try\"") >&5 + { (eval echo "$as_me:31357: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31359: \$? = $ac_status" >&5 + echo "$as_me:31360: \$? = $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 31366 "configure" +#line 31367 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -31382,16 +31383,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31385: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31386: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31388: \$? = $ac_status" >&5 + echo "$as_me:31389: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31391: \"$ac_try\"") >&5 + { (eval echo "$as_me:31392: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31394: \$? = $ac_status" >&5 + echo "$as_me:31395: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -31403,7 +31404,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:31406: result: $cf_cv_ngroups" >&5 +echo "$as_me:31407: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -31421,14 +31422,14 @@ EOF fi -echo "$as_me:31424: checking if external sys_nerr is declared" >&5 +echo "$as_me:31425: 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 31431 "configure" +#line 31432 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -31446,16 +31447,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31449: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31450: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31452: \$? = $ac_status" >&5 + echo "$as_me:31453: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31455: \"$ac_try\"") >&5 + { (eval echo "$as_me:31456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31458: \$? = $ac_status" >&5 + echo "$as_me:31459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -31466,7 +31467,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31469: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:31470: 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 @@ -31481,14 +31482,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:31484: checking if external sys_nerr exists" >&5 +echo "$as_me:31485: 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 31491 "configure" +#line 31492 "configure" #include "confdefs.h" #undef sys_nerr @@ -31503,16 +31504,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31506: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31509: \$? = $ac_status" >&5 + echo "$as_me:31510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31512: \"$ac_try\"") >&5 + { (eval echo "$as_me:31513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31515: \$? = $ac_status" >&5 + echo "$as_me:31516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -31523,7 +31524,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31526: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:31527: 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 @@ -31536,14 +31537,14 @@ EOF fi -echo "$as_me:31539: checking if external sys_errlist is declared" >&5 +echo "$as_me:31540: 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 31546 "configure" +#line 31547 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -31561,16 +31562,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31564: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31567: \$? = $ac_status" >&5 + echo "$as_me:31568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31570: \"$ac_try\"") >&5 + { (eval echo "$as_me:31571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31573: \$? = $ac_status" >&5 + echo "$as_me:31574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -31581,7 +31582,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31584: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:31585: 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 @@ -31596,14 +31597,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:31599: checking if external sys_errlist exists" >&5 +echo "$as_me:31600: 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 31606 "configure" +#line 31607 "configure" #include "confdefs.h" #undef sys_errlist @@ -31618,16 +31619,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:31621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:31622: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:31624: \$? = $ac_status" >&5 + echo "$as_me:31625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:31627: \"$ac_try\"") >&5 + { (eval echo "$as_me:31628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31630: \$? = $ac_status" >&5 + echo "$as_me:31631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -31638,7 +31639,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:31641: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:31642: 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 @@ -31654,23 +31655,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:31657: checking for $ac_header" >&5 +echo "$as_me:31658: 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 31663 "configure" +#line 31664 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:31667: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:31668: \"$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:31673: \$? = $ac_status" >&5 + echo "$as_me:31674: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -31689,7 +31690,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:31692: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:31693: 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 @@ -31699,14 +31700,14 @@ EOF fi done -echo "$as_me:31702: checking for lastlog path" >&5 +echo "$as_me:31703: 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 31709 "configure" +#line 31710 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31726,16 +31727,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31729: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31730: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31732: \$? = $ac_status" >&5 + echo "$as_me:31733: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31735: \"$ac_try\"") >&5 + { (eval echo "$as_me:31736: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31738: \$? = $ac_status" >&5 + echo "$as_me:31739: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -31750,14 +31751,14 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31753: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:31754: 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:31760: checking for utmp implementation" >&5 +echo "$as_me:31761: 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 @@ -31774,7 +31775,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 31777 "configure" +#line 31778 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31788,16 +31789,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31791: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31792: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31794: \$? = $ac_status" >&5 + echo "$as_me:31795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31797: \"$ac_try\"") >&5 + { (eval echo "$as_me:31798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31800: \$? = $ac_status" >&5 + echo "$as_me:31801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -31806,7 +31807,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 31809 "configure" +#line 31810 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31820,16 +31821,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31823: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31824: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31826: \$? = $ac_status" >&5 + echo "$as_me:31827: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31829: \"$ac_try\"") >&5 + { (eval echo "$as_me:31830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31832: \$? = $ac_status" >&5 + echo "$as_me:31833: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -31844,7 +31845,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:31847: result: $cf_cv_have_utmp" >&5 +echo "$as_me:31848: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -31859,14 +31860,14 @@ cat >>confdefs.h <<\EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:31862: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:31863: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_host is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 31869 "configure" +#line 31870 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31880,16 +31881,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31883: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31884: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31886: \$? = $ac_status" >&5 + echo "$as_me:31887: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31889: \"$ac_try\"") >&5 + { (eval echo "$as_me:31890: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31892: \$? = $ac_status" >&5 + echo "$as_me:31893: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -31901,7 +31902,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31904: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:31905: 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 @@ -31911,14 +31912,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31914: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:31915: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_syslen is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_syslen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 31921 "configure" +#line 31922 "configure" #include "confdefs.h" #include <sys/types.h> @@ -31932,16 +31933,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31935: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31936: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:31938: \$? = $ac_status" >&5 + echo "$as_me:31939: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:31941: \"$ac_try\"") >&5 + { (eval echo "$as_me:31942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:31944: \$? = $ac_status" >&5 + echo "$as_me:31945: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -31953,7 +31954,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:31956: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:31957: result: $cf_cv_have_utmp_ut_syslen" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_syslen" >&6 test $cf_cv_have_utmp_ut_syslen != no && cat >>confdefs.h <<\EOF @@ -31963,7 +31964,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:31966: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:31967: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_name is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_name+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31980,7 +31981,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 31983 "configure" +#line 31984 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -31994,16 +31995,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:31997: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:31998: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32000: \$? = $ac_status" >&5 + echo "$as_me:32001: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32003: \"$ac_try\"") >&5 + { (eval echo "$as_me:32004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32006: \$? = $ac_status" >&5 + echo "$as_me:32007: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -32015,12 +32016,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:32018: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:32019: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in (no) - { { echo "$as_me:32023: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:32024: 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; }; } ;; @@ -32035,7 +32036,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:32038: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:32039: 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 @@ -32048,7 +32049,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 32051 "configure" +#line 32052 "configure" #include "confdefs.h" #include <sys/types.h> @@ -32062,16 +32063,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32065: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32066: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32068: \$? = $ac_status" >&5 + echo "$as_me:32069: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32071: \"$ac_try\"") >&5 + { (eval echo "$as_me:32072: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32074: \$? = $ac_status" >&5 + echo "$as_me:32075: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -32084,7 +32085,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:32087: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:32088: 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 @@ -32100,14 +32101,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:32103: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:32104: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_xtime is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32110 "configure" +#line 32111 "configure" #include "confdefs.h" #include <sys/types.h> @@ -32121,23 +32122,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32124: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32125: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32127: \$? = $ac_status" >&5 + echo "$as_me:32128: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32130: \"$ac_try\"") >&5 + { (eval echo "$as_me:32131: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32133: \$? = $ac_status" >&5 + echo "$as_me:32134: \$? = $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 32140 "configure" +#line 32141 "configure" #include "confdefs.h" #include <sys/types.h> @@ -32151,16 +32152,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:32154: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32155: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32157: \$? = $ac_status" >&5 + echo "$as_me:32158: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32160: \"$ac_try\"") >&5 + { (eval echo "$as_me:32161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32163: \$? = $ac_status" >&5 + echo "$as_me:32164: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -32174,7 +32175,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32177: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:32178: 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 @@ -32193,14 +32194,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:32196: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:32197: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_session is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_session+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32203 "configure" +#line 32204 "configure" #include "confdefs.h" #include <sys/types.h> @@ -32214,16 +32215,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32217: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32218: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32220: \$? = $ac_status" >&5 + echo "$as_me:32221: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32223: \"$ac_try\"") >&5 + { (eval echo "$as_me:32224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32226: \$? = $ac_status" >&5 + echo "$as_me:32227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -32234,7 +32235,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:32237: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:32238: 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 @@ -32245,7 +32246,7 @@ EOF fi fi -echo "$as_me:32248: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:32249: 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 @@ -32253,7 +32254,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 32256 "configure" +#line 32257 "configure" #include "confdefs.h" #include <sys/types.h> @@ -32272,16 +32273,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32275: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32276: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32278: \$? = $ac_status" >&5 + echo "$as_me:32279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32281: \"$ac_try\"") >&5 + { (eval echo "$as_me:32282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32284: \$? = $ac_status" >&5 + echo "$as_me:32285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -32292,7 +32293,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32295: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:32296: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF @@ -32301,14 +32302,14 @@ EOF fi -echo "$as_me:32304: checking if external h_errno exists" >&5 +echo "$as_me:32305: 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 32311 "configure" +#line 32312 "configure" #include "confdefs.h" #undef h_errno @@ -32323,16 +32324,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32326: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32327: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32329: \$? = $ac_status" >&5 + echo "$as_me:32330: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32332: \"$ac_try\"") >&5 + { (eval echo "$as_me:32333: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32335: \$? = $ac_status" >&5 + echo "$as_me:32336: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -32343,7 +32344,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32346: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:32347: 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 @@ -32356,7 +32357,7 @@ EOF fi -echo "$as_me:32359: checking if bibp: URLs should be supported" >&5 +echo "$as_me:32360: 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. @@ -32373,14 +32374,14 @@ else use_bibp_urls=yes fi; -echo "$as_me:32376: result: $use_bibp_urls" >&5 +echo "$as_me:32377: 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:32383: checking if configuration info should be browsable" >&5 +echo "$as_me:32384: 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. @@ -32397,14 +32398,14 @@ else use_config_info=yes fi; -echo "$as_me:32400: result: $use_config_info" >&5 +echo "$as_me:32401: 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:32407: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:32408: 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. @@ -32421,14 +32422,14 @@ else use_forms_options=yes fi; -echo "$as_me:32424: result: $use_forms_options" >&5 +echo "$as_me:32425: 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:32431: checking if old-style options menu should be used" >&5 +echo "$as_me:32432: 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. @@ -32445,14 +32446,14 @@ else use_menu_options=yes fi; -echo "$as_me:32448: result: $use_menu_options" >&5 +echo "$as_me:32449: 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:32455: checking if sessions code should be used" >&5 +echo "$as_me:32456: checking if sessions code should be used" >&5 echo $ECHO_N "checking if sessions code should be used... $ECHO_C" >&6 # Check whether --enable-sessions or --disable-sessions was given. @@ -32469,7 +32470,7 @@ else use_sessions=yes fi; -echo "$as_me:32472: result: $use_sessions" >&5 +echo "$as_me:32473: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then @@ -32480,7 +32481,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:32483: checking if session-caching code should be used" >&5 +echo "$as_me:32484: checking if session-caching code should be used" >&5 echo $ECHO_N "checking if session-caching code should be used... $ECHO_C" >&6 # Check whether --enable-session-cache or --disable-session-cache was given. @@ -32497,7 +32498,7 @@ else use_session_cache=yes fi; -echo "$as_me:32500: result: $use_session_cache" >&5 +echo "$as_me:32501: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then @@ -32507,7 +32508,7 @@ EOF fi -echo "$as_me:32510: checking if address-list page should be used" >&5 +echo "$as_me:32511: checking if address-list page should be used" >&5 echo $ECHO_N "checking if address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -32524,14 +32525,14 @@ else use_addrlist_page=yes fi; -echo "$as_me:32527: result: $use_addrlist_page" >&5 +echo "$as_me:32528: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF #define USE_ADDRLIST_PAGE 1 EOF -echo "$as_me:32534: checking if experimental CJK logic should be used" >&5 +echo "$as_me:32535: 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. @@ -32548,14 +32549,14 @@ else use_cjk=no fi; -echo "$as_me:32551: result: $use_cjk" >&5 +echo "$as_me:32552: 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:32558: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:32559: 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. @@ -32572,7 +32573,7 @@ else use_ja_utf8=no fi; -echo "$as_me:32575: result: $use_ja_utf8" >&5 +echo "$as_me:32576: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then @@ -32618,7 +32619,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32621 "configure" +#line 32622 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32630,16 +32631,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32633: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32634: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32636: \$? = $ac_status" >&5 + echo "$as_me:32637: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32639: \"$ac_try\"") >&5 + { (eval echo "$as_me:32640: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32642: \$? = $ac_status" >&5 + echo "$as_me:32643: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32656,7 +32657,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:32659: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32660: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32699,7 +32700,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 32702 "configure" +#line 32703 "configure" #include "confdefs.h" #include <stdio.h> int @@ -32711,16 +32712,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:32714: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:32715: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:32717: \$? = $ac_status" >&5 + echo "$as_me:32718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:32720: \"$ac_try\"") >&5 + { (eval echo "$as_me:32721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32723: \$? = $ac_status" >&5 + echo "$as_me:32724: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -32737,7 +32738,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:32740: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:32741: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -32755,7 +32756,7 @@ echo "${as_me:-configure}:32740: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:32758: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:32759: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -32780,7 +32781,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:32783: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32784: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32809,7 +32810,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:32812: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:32813: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -32818,7 +32819,7 @@ echo "${as_me:-configure}:32812: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:32821: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:32822: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -32829,7 +32830,7 @@ esac fi; - echo "$as_me:32832: checking for iconv" >&5 + echo "$as_me:32833: 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 @@ -32840,12 +32841,12 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me:-configure}:32843: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32844: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32848 "configure" +#line 32849 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32864,16 +32865,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32867: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32868: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32870: \$? = $ac_status" >&5 + echo "$as_me:32871: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32873: \"$ac_try\"") >&5 + { (eval echo "$as_me:32874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32876: \$? = $ac_status" >&5 + echo "$as_me:32877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -32887,7 +32888,7 @@ cat conftest.$ac_ext >&5 LIBS="-liconv $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32890 "configure" +#line 32891 "configure" #include "confdefs.h" #include <stdlib.h> @@ -32906,16 +32907,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32909: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32910: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32912: \$? = $ac_status" >&5 + echo "$as_me:32913: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32915: \"$ac_try\"") >&5 + { (eval echo "$as_me:32916: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32918: \$? = $ac_status" >&5 + echo "$as_me:32919: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes @@ -32932,9 +32933,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me:-configure}:32935: testing find linkage for iconv library ..." 1>&5 +echo "${as_me:-configure}:32936: testing find linkage for iconv library ..." 1>&5 -echo "${as_me:-configure}:32937: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:32938: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -33025,11 +33026,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me:-configure}:33028: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:33029: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 33032 "configure" +#line 33033 "configure" #include "confdefs.h" #include <stdlib.h> @@ -33048,21 +33049,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33051: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33052: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33054: \$? = $ac_status" >&5 + echo "$as_me:33055: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33057: \"$ac_try\"") >&5 + { (eval echo "$as_me:33058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33060: \$? = $ac_status" >&5 + echo "$as_me:33061: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me:-configure}:33065: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me:-configure}:33066: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -33080,7 +33081,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me:-configure}:33083: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me:-configure}:33084: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -33155,13 +33156,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me:-configure}:33158: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:33159: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 33164 "configure" +#line 33165 "configure" #include "confdefs.h" #include <stdlib.h> @@ -33180,21 +33181,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33183: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33184: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33186: \$? = $ac_status" >&5 + echo "$as_me:33187: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33189: \"$ac_try\"") >&5 + { (eval echo "$as_me:33190: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33192: \$? = $ac_status" >&5 + echo "$as_me:33193: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me:-configure}:33197: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me:-configure}:33198: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -33234,7 +33235,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:33237: result: $am_cv_func_iconv" >&5 +echo "$as_me:33238: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -33243,14 +33244,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:33246: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:33247: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 33253 "configure" +#line 33254 "configure" #include "confdefs.h" #include <stdlib.h> @@ -33275,16 +33276,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33278: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33279: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33281: \$? = $ac_status" >&5 + echo "$as_me:33282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33284: \"$ac_try\"") >&5 + { (eval echo "$as_me:33285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33287: \$? = $ac_status" >&5 + echo "$as_me:33288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -33294,7 +33295,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:33297: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:33298: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -33336,7 +33337,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33339 "configure" +#line 33340 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33348,16 +33349,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33351: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33352: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33354: \$? = $ac_status" >&5 + echo "$as_me:33355: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33357: \"$ac_try\"") >&5 + { (eval echo "$as_me:33358: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33360: \$? = $ac_status" >&5 + echo "$as_me:33361: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33374,7 +33375,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:33377: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33378: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33413,7 +33414,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:33416: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33417: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33437,7 +33438,7 @@ case $cf_cv_screen in esac if test "$use_dft_colors" != no ; then -echo "$as_me:33440: checking if you want to use default-colors" >&5 +echo "$as_me:33441: 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. @@ -33454,7 +33455,7 @@ else use_dft_colors=no fi; -echo "$as_me:33457: result: $use_dft_colors" >&5 +echo "$as_me:33458: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF @@ -33463,7 +33464,7 @@ EOF fi -echo "$as_me:33466: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:33467: 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. @@ -33480,14 +33481,14 @@ else use_kbd_layout=no fi; -echo "$as_me:33483: result: $use_kbd_layout" >&5 +echo "$as_me:33484: 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:33490: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:33491: 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. @@ -33504,14 +33505,14 @@ else use_nested_tables=no fi; -echo "$as_me:33507: result: $use_nested_tables" >&5 +echo "$as_me:33508: 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:33514: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:33515: 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. @@ -33528,14 +33529,14 @@ else use_alt_bindings=yes fi; -echo "$as_me:33531: result: $use_alt_bindings" >&5 +echo "$as_me:33532: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF #define USE_ALT_BINDINGS 1 EOF -echo "$as_me:33538: checking if ascii case-conversion should be used" >&5 +echo "$as_me:33539: checking if ascii case-conversion should be used" >&5 echo $ECHO_N "checking if ascii case-conversion should be used... $ECHO_C" >&6 # Check whether --enable-ascii-ctypes or --disable-ascii-ctypes was given. @@ -33552,14 +33553,14 @@ else use_ascii_ctypes=yes fi; -echo "$as_me:33555: result: $use_ascii_ctypes" >&5 +echo "$as_me:33556: result: $use_ascii_ctypes" >&5 echo "${ECHO_T}$use_ascii_ctypes" >&6 test $use_ascii_ctypes != no && cat >>confdefs.h <<\EOF #define USE_ASCII_CTYPES 1 EOF -echo "$as_me:33562: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:33563: 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. @@ -33576,14 +33577,14 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:33579: result: $use_ext_htmldtd" >&5 +echo "$as_me:33580: 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:33586: checking if file-upload logic should be used" >&5 +echo "$as_me:33587: 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. @@ -33600,14 +33601,14 @@ else use_file_upload=yes fi; -echo "$as_me:33603: result: $use_file_upload" >&5 +echo "$as_me:33604: 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:33610: checking if IDNA support should be used" >&5 +echo "$as_me:33611: checking if IDNA support should be used" >&5 echo $ECHO_N "checking if IDNA support should be used... $ECHO_C" >&6 # Check whether --enable-idna or --disable-idna was given. @@ -33624,7 +33625,7 @@ else use_idna=yes fi; -echo "$as_me:33627: result: $use_idna" >&5 +echo "$as_me:33628: result: $use_idna" >&5 echo "${ECHO_T}$use_idna" >&6 if test "$use_idna" = yes ; then @@ -33663,7 +33664,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33666 "configure" +#line 33667 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33675,16 +33676,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33678: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33679: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33681: \$? = $ac_status" >&5 + echo "$as_me:33682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33684: \"$ac_try\"") >&5 + { (eval echo "$as_me:33685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33687: \$? = $ac_status" >&5 + echo "$as_me:33688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33701,7 +33702,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:33704: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33705: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33744,7 +33745,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 33747 "configure" +#line 33748 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33756,16 +33757,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33759: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33760: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33762: \$? = $ac_status" >&5 + echo "$as_me:33763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33765: \"$ac_try\"") >&5 + { (eval echo "$as_me:33766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33768: \$? = $ac_status" >&5 + echo "$as_me:33769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33782,7 +33783,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:33785: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:33786: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -33800,7 +33801,7 @@ echo "${as_me:-configure}:33785: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:33803: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:33804: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -33825,7 +33826,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:33828: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33829: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33854,7 +33855,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:33857: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:33858: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -33863,7 +33864,7 @@ echo "${as_me:-configure}:33857: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:33866: error: cannot find under $use_idna" >&5 +{ { echo "$as_me:33867: error: cannot find under $use_idna" >&5 echo "$as_me: error: cannot find under $use_idna" >&2;} { (exit 1); exit 1; }; } fi @@ -33877,12 +33878,12 @@ esac cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:33880: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33881: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33885 "configure" +#line 33886 "configure" #include "confdefs.h" #include <stdio.h> @@ -33900,16 +33901,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33903: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33904: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33906: \$? = $ac_status" >&5 + echo "$as_me:33907: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33909: \"$ac_try\"") >&5 + { (eval echo "$as_me:33910: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33912: \$? = $ac_status" >&5 + echo "$as_me:33913: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -33923,7 +33924,7 @@ cat conftest.$ac_ext >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33926 "configure" +#line 33927 "configure" #include "confdefs.h" #include <stdio.h> @@ -33941,16 +33942,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33944: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33945: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33947: \$? = $ac_status" >&5 + echo "$as_me:33948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33950: \"$ac_try\"") >&5 + { (eval echo "$as_me:33951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33953: \$? = $ac_status" >&5 + echo "$as_me:33954: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_idn=yes @@ -33967,9 +33968,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:33970: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:33971: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:33972: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:33973: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -34060,11 +34061,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_idn ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn" 1>&6 -echo "${as_me:-configure}:34063: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:34064: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 34067 "configure" +#line 34068 "configure" #include "confdefs.h" #include <stdio.h> @@ -34082,21 +34083,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34085: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34086: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34088: \$? = $ac_status" >&5 + echo "$as_me:34089: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34091: \"$ac_try\"") >&5 + { (eval echo "$as_me:34092: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34094: \$? = $ac_status" >&5 + echo "$as_me:34095: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found idn headers in $cf_cv_header_path_idn" 1>&6 -echo "${as_me:-configure}:34099: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:34100: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -34114,7 +34115,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:34117: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:34118: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -34189,13 +34190,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_idn ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_idn" 1>&6 -echo "${as_me:-configure}:34192: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:34193: testing ... testing $cf_cv_library_path_idn ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lidn $LIBICONV $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn" cat >conftest.$ac_ext <<_ACEOF -#line 34198 "configure" +#line 34199 "configure" #include "confdefs.h" #include <stdio.h> @@ -34213,21 +34214,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34216: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34217: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34219: \$? = $ac_status" >&5 + echo "$as_me:34220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34222: \"$ac_try\"") >&5 + { (eval echo "$as_me:34223: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34225: \$? = $ac_status" >&5 + echo "$as_me:34226: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found idn library in $cf_cv_library_path_idn" 1>&6 -echo "${as_me:-configure}:34230: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:34231: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -34286,7 +34287,7 @@ if test -n "$cf_cv_header_path_idn" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 34289 "configure" +#line 34290 "configure" #include "confdefs.h" #include <stdio.h> int @@ -34298,16 +34299,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34301: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34302: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34304: \$? = $ac_status" >&5 + echo "$as_me:34305: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34307: \"$ac_try\"") >&5 + { (eval echo "$as_me:34308: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34310: \$? = $ac_status" >&5 + echo "$as_me:34311: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -34324,7 +34325,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:34327: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:34328: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -34360,7 +34361,7 @@ if test -n "$cf_cv_library_path_idn" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:34363: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:34364: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -34385,7 +34386,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:34388: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:34389: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi @@ -34399,7 +34400,7 @@ fi fi -echo "$as_me:34402: checking if element-justification logic should be used" >&5 +echo "$as_me:34403: 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. @@ -34416,14 +34417,14 @@ else use_justify_elts=yes fi; -echo "$as_me:34419: result: $use_justify_elts" >&5 +echo "$as_me:34420: result: $use_justify_elts" >&5 echo "${ECHO_T}$use_justify_elts" >&6 test $use_justify_elts != no && cat >>confdefs.h <<\EOF #define USE_JUSTIFY_ELTS 1 EOF -echo "$as_me:34426: checking if partial-display should be used" >&5 +echo "$as_me:34427: 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. @@ -34440,14 +34441,14 @@ else use_partial_display=yes fi; -echo "$as_me:34443: result: $use_partial_display" >&5 +echo "$as_me:34444: 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:34450: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:34451: 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. @@ -34464,14 +34465,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:34467: result: $use_filed_cookies" >&5 +echo "$as_me:34468: 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:34474: checking if html source should be colorized" >&5 +echo "$as_me:34475: 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. @@ -34488,14 +34489,14 @@ else use_prettysrc=yes fi; -echo "$as_me:34491: result: $use_prettysrc" >&5 +echo "$as_me:34492: 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:34498: checking if progress-bar code should be used" >&5 +echo "$as_me:34499: checking if progress-bar code should be used" >&5 echo $ECHO_N "checking if progress-bar code should be used... $ECHO_C" >&6 # Check whether --enable-progressbar or --disable-progressbar was given. @@ -34512,14 +34513,14 @@ else use_progressbar=yes fi; -echo "$as_me:34515: result: $use_progressbar" >&5 +echo "$as_me:34516: result: $use_progressbar" >&5 echo "${ECHO_T}$use_progressbar" >&6 test $use_progressbar != no && cat >>confdefs.h <<\EOF #define USE_PROGRESSBAR 1 EOF -echo "$as_me:34522: checking if read-progress message should show ETA" >&5 +echo "$as_me:34523: 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. @@ -34536,14 +34537,14 @@ else use_read_eta=yes fi; -echo "$as_me:34539: result: $use_read_eta" >&5 +echo "$as_me:34540: 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:34546: checking if source caching should be used" >&5 +echo "$as_me:34547: 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. @@ -34560,14 +34561,14 @@ else use_source_cache=yes fi; -echo "$as_me:34563: result: $use_source_cache" >&5 +echo "$as_me:34564: 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:34570: checking if scrollbar code should be used" >&5 +echo "$as_me:34571: 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. @@ -34584,10 +34585,10 @@ else use_scrollbar=yes fi; -echo "$as_me:34587: result: $use_scrollbar" >&5 +echo "$as_me:34588: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:34590: checking if charset-selection logic should be used" >&5 +echo "$as_me:34591: checking if charset-selection logic should be used" >&5 echo $ECHO_N "checking if charset-selection logic should be used... $ECHO_C" >&6 # Check whether --enable-charset-choice or --disable-charset-choice was given. @@ -34604,14 +34605,14 @@ else use_charset_choice=no fi; -echo "$as_me:34607: result: $use_charset_choice" >&5 +echo "$as_me:34608: result: $use_charset_choice" >&5 echo "${ECHO_T}$use_charset_choice" >&6 test $use_charset_choice != no && cat >>confdefs.h <<\EOF #define USE_CHARSET_CHOICE 1 EOF -echo "$as_me:34614: checking if you want to use external commands" >&5 +echo "$as_me:34615: 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. @@ -34628,7 +34629,7 @@ else use_externs=no fi; -echo "$as_me:34631: result: $use_externs" >&5 +echo "$as_me:34632: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then @@ -34639,7 +34640,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:34642: checking if you want to use setfont support" >&5 +echo "$as_me:34643: 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. @@ -34656,7 +34657,7 @@ else use_setfont=no fi; -echo "$as_me:34659: result: $use_setfont" >&5 +echo "$as_me:34660: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -34667,7 +34668,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:34670: checking for $ac_word" >&5 +echo "$as_me:34671: 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 @@ -34684,7 +34685,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:34687: found $ac_dir/$ac_word" >&5 + echo "$as_me:34688: found $ac_dir/$ac_word" >&5 break fi done @@ -34695,10 +34696,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:34698: result: $SETFONT" >&5 + echo "$as_me:34699: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:34701: result: no" >&5 + echo "$as_me:34702: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -34757,7 +34758,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:34760: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:34761: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -34775,19 +34776,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:34778: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:34779: testing Assume $host_os has font-switching ..." 1>&5 ;; (*) SETFONT=unknown test -n "$verbose" && echo " Assume $host_os has no font-switching" 1>&6 -echo "${as_me:-configure}:34785: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:34786: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:34790: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:34791: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -34798,7 +34799,7 @@ EOF fi fi -echo "$as_me:34801: checking if you want cgi-link support" >&5 +echo "$as_me:34802: 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. @@ -34815,10 +34816,10 @@ EOF else enableval=no fi; -echo "$as_me:34818: result: $enableval" >&5 +echo "$as_me:34819: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:34821: checking if you want change-exec support" >&5 +echo "$as_me:34822: 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. @@ -34835,14 +34836,14 @@ else use_change_exec=no fi; -echo "$as_me:34838: result: $use_change_exec" >&5 +echo "$as_me:34839: 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:34845: checking if you want exec-links support" >&5 +echo "$as_me:34846: 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. @@ -34859,14 +34860,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:34862: result: $use_exec_links" >&5 +echo "$as_me:34863: 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:34869: checking if you want exec-scripts support" >&5 +echo "$as_me:34870: 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. @@ -34883,14 +34884,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:34886: result: $use_exec_scripts" >&5 +echo "$as_me:34887: 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:34893: checking if you want internal-links feature" >&5 +echo "$as_me:34894: 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. @@ -34907,14 +34908,14 @@ else use_internal_links=no fi; -echo "$as_me:34910: result: $use_internal_links" >&5 +echo "$as_me:34911: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test $use_internal_links = yes && cat >>confdefs.h <<\EOF #define TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:34917: checking if you want to fork NSL requests" >&5 +echo "$as_me:34918: 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. @@ -34931,7 +34932,7 @@ else use_nsl_fork=no fi; -echo "$as_me:34934: result: $use_nsl_fork" >&5 +echo "$as_me:34935: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -34952,7 +34953,7 @@ EOF esac fi -echo "$as_me:34955: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:34956: 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. @@ -34969,14 +34970,14 @@ else use_syslog=no fi; -echo "$as_me:34972: result: $use_syslog" >&5 +echo "$as_me:34973: 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:34979: checking if you want to underline links" >&5 +echo "$as_me:34980: 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. @@ -34993,7 +34994,7 @@ else use_underline=no fi; -echo "$as_me:34996: result: $use_underline" >&5 +echo "$as_me:34997: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF @@ -35005,7 +35006,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:35008: checking if help files should be gzip'ed" >&5 +echo "$as_me:35009: 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. @@ -35022,10 +35023,10 @@ else use_gzip_help=no fi; -echo "$as_me:35025: result: $use_gzip_help" >&5 +echo "$as_me:35026: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:35028: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:35029: 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. @@ -35035,7 +35036,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:35038: result: $use_bzlib" >&5 +echo "$as_me:35039: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -35074,7 +35075,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35077 "configure" +#line 35078 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35086,16 +35087,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35089: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35090: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35092: \$? = $ac_status" >&5 + echo "$as_me:35093: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35095: \"$ac_try\"") >&5 + { (eval echo "$as_me:35096: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35098: \$? = $ac_status" >&5 + echo "$as_me:35099: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35112,7 +35113,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:35115: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35116: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35155,7 +35156,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35158 "configure" +#line 35159 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35167,16 +35168,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35170: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35171: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35173: \$? = $ac_status" >&5 + echo "$as_me:35174: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35176: \"$ac_try\"") >&5 + { (eval echo "$as_me:35177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35179: \$? = $ac_status" >&5 + echo "$as_me:35180: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35193,7 +35194,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:35196: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35197: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35211,7 +35212,7 @@ echo "${as_me:-configure}:35196: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:35214: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:35215: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -35236,7 +35237,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:35239: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35240: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35265,7 +35266,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:35268: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35269: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35274,7 +35275,7 @@ echo "${as_me:-configure}:35268: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:35277: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:35278: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -35288,12 +35289,12 @@ esac cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:35291: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:35292: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35296 "configure" +#line 35297 "configure" #include "confdefs.h" #include <stdio.h> @@ -35310,16 +35311,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35313: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35314: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35316: \$? = $ac_status" >&5 + echo "$as_me:35317: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35319: \"$ac_try\"") >&5 + { (eval echo "$as_me:35320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35322: \$? = $ac_status" >&5 + echo "$as_me:35323: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -35333,7 +35334,7 @@ cat conftest.$ac_ext >&5 LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35336 "configure" +#line 35337 "configure" #include "confdefs.h" #include <stdio.h> @@ -35350,16 +35351,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35353: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35354: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35356: \$? = $ac_status" >&5 + echo "$as_me:35357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35359: \"$ac_try\"") >&5 + { (eval echo "$as_me:35360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35362: \$? = $ac_status" >&5 + echo "$as_me:35363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes @@ -35376,9 +35377,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:35379: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:35380: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:35381: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:35382: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -35469,11 +35470,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6 -echo "${as_me:-configure}:35472: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35473: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 35476 "configure" +#line 35477 "configure" #include "confdefs.h" #include <stdio.h> @@ -35490,21 +35491,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35493: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35494: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35496: \$? = $ac_status" >&5 + echo "$as_me:35497: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35499: \"$ac_try\"") >&5 + { (eval echo "$as_me:35500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35502: \$? = $ac_status" >&5 + echo "$as_me:35503: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 headers in $cf_cv_header_path_bz2" 1>&6 -echo "${as_me:-configure}:35507: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35508: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -35522,7 +35523,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:35525: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:35526: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -35530,7 +35531,7 @@ echo "${as_me:-configure}:35525: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 35533 "configure" +#line 35534 "configure" #include "confdefs.h" #include <stdio.h> @@ -35547,21 +35548,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35550: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35551: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35553: \$? = $ac_status" >&5 + echo "$as_me:35554: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35556: \"$ac_try\"") >&5 + { (eval echo "$as_me:35557: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35559: \$? = $ac_status" >&5 + echo "$as_me:35560: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:35564: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:35565: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -35642,13 +35643,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_bz2" 1>&6 -echo "${as_me:-configure}:35645: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35646: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 35651 "configure" +#line 35652 "configure" #include "confdefs.h" #include <stdio.h> @@ -35665,21 +35666,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35668: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35669: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35671: \$? = $ac_status" >&5 + echo "$as_me:35672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35674: \"$ac_try\"") >&5 + { (eval echo "$as_me:35675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35677: \$? = $ac_status" >&5 + echo "$as_me:35678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in $cf_cv_library_path_bz2" 1>&6 -echo "${as_me:-configure}:35682: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:35683: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -35738,7 +35739,7 @@ if test -n "$cf_cv_header_path_bz2" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35741 "configure" +#line 35742 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35750,16 +35751,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35753: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35754: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35756: \$? = $ac_status" >&5 + echo "$as_me:35757: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35759: \"$ac_try\"") >&5 + { (eval echo "$as_me:35760: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35762: \$? = $ac_status" >&5 + echo "$as_me:35763: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35776,7 +35777,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:35779: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35780: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35812,7 +35813,7 @@ if test -n "$cf_cv_library_path_bz2" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:35815: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:35816: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -35837,7 +35838,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:35840: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:35841: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -35848,7 +35849,7 @@ EOF fi -echo "$as_me:35851: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:35852: 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. @@ -35858,7 +35859,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:35861: result: $use_zlib" >&5 +echo "$as_me:35862: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -35897,7 +35898,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35900 "configure" +#line 35901 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35909,16 +35910,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35912: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35913: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35915: \$? = $ac_status" >&5 + echo "$as_me:35916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35918: \"$ac_try\"") >&5 + { (eval echo "$as_me:35919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35921: \$? = $ac_status" >&5 + echo "$as_me:35922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -35935,7 +35936,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:35938: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:35939: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -35978,7 +35979,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 35981 "configure" +#line 35982 "configure" #include "confdefs.h" #include <stdio.h> int @@ -35990,16 +35991,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35993: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35994: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35996: \$? = $ac_status" >&5 + echo "$as_me:35997: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35999: \"$ac_try\"") >&5 + { (eval echo "$as_me:36000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36002: \$? = $ac_status" >&5 + echo "$as_me:36003: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36016,7 +36017,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:36019: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36020: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36034,7 +36035,7 @@ echo "${as_me:-configure}:36019: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:36037: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:36038: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -36059,7 +36060,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:36062: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36063: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36088,7 +36089,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:36091: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36092: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36097,7 +36098,7 @@ echo "${as_me:-configure}:36091: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:36100: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:36101: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -36111,12 +36112,12 @@ esac cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:36114: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:36115: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36119 "configure" +#line 36120 "configure" #include "confdefs.h" #include <zlib.h> @@ -36132,16 +36133,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36135: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36136: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36138: \$? = $ac_status" >&5 + echo "$as_me:36139: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36141: \"$ac_try\"") >&5 + { (eval echo "$as_me:36142: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36144: \$? = $ac_status" >&5 + echo "$as_me:36145: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -36155,7 +36156,7 @@ cat conftest.$ac_ext >&5 LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36158 "configure" +#line 36159 "configure" #include "confdefs.h" #include <zlib.h> @@ -36171,16 +36172,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36174: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36175: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36177: \$? = $ac_status" >&5 + echo "$as_me:36178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36180: \"$ac_try\"") >&5 + { (eval echo "$as_me:36181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36183: \$? = $ac_status" >&5 + echo "$as_me:36184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes @@ -36197,9 +36198,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:36200: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:36201: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:36202: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:36203: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -36290,11 +36291,11 @@ cf_search="$cf_search $cf_header_path_list" if test -d $cf_cv_header_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6 -echo "${as_me:-configure}:36293: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:36294: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 36297 "configure" +#line 36298 "configure" #include "confdefs.h" #include <zlib.h> @@ -36310,21 +36311,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36313: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36314: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36316: \$? = $ac_status" >&5 + echo "$as_me:36317: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36319: \"$ac_try\"") >&5 + { (eval echo "$as_me:36320: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36322: \$? = $ac_status" >&5 + echo "$as_me:36323: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z headers in $cf_cv_header_path_z" 1>&6 -echo "${as_me:-configure}:36327: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:36328: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -36342,7 +36343,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:36345: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:36346: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -36350,7 +36351,7 @@ echo "${as_me:-configure}:36345: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36353 "configure" +#line 36354 "configure" #include "confdefs.h" #include <zlib.h> @@ -36366,21 +36367,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36369: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36370: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36372: \$? = $ac_status" >&5 + echo "$as_me:36373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36375: \"$ac_try\"") >&5 + { (eval echo "$as_me:36376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36378: \$? = $ac_status" >&5 + echo "$as_me:36379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:36383: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:36384: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -36461,13 +36462,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_z" 1>&6 -echo "${as_me:-configure}:36464: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:36465: testing ... testing $cf_cv_library_path_z ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 36470 "configure" +#line 36471 "configure" #include "confdefs.h" #include <zlib.h> @@ -36483,21 +36484,21 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36486: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36489: \$? = $ac_status" >&5 + echo "$as_me:36490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36492: \"$ac_try\"") >&5 + { (eval echo "$as_me:36493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36495: \$? = $ac_status" >&5 + echo "$as_me:36496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in $cf_cv_library_path_z" 1>&6 -echo "${as_me:-configure}:36500: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:36501: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -36556,7 +36557,7 @@ if test -n "$cf_cv_header_path_z" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 36559 "configure" +#line 36560 "configure" #include "confdefs.h" #include <stdio.h> int @@ -36568,16 +36569,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:36571: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:36572: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:36574: \$? = $ac_status" >&5 + echo "$as_me:36575: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:36577: \"$ac_try\"") >&5 + { (eval echo "$as_me:36578: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36580: \$? = $ac_status" >&5 + echo "$as_me:36581: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -36594,7 +36595,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:36597: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:36598: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -36630,7 +36631,7 @@ if test -n "$cf_cv_library_path_z" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:36633: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:36634: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -36655,7 +36656,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:36658: WARNING: Cannot find z library" >&5 +{ echo "$as_me:36659: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -36664,13 +36665,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:36667: checking for $ac_func" >&5 +echo "$as_me:36668: 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 36673 "configure" +#line 36674 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -36701,16 +36702,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36704: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36705: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36707: \$? = $ac_status" >&5 + echo "$as_me:36708: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36710: \"$ac_try\"") >&5 + { (eval echo "$as_me:36711: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36713: \$? = $ac_status" >&5 + echo "$as_me:36714: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -36720,7 +36721,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36723: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:36724: 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 @@ -36737,7 +36738,7 @@ EOF fi -echo "$as_me:36740: checking if you want to exclude FINGER code" >&5 +echo "$as_me:36741: 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. @@ -36754,14 +36755,14 @@ else use_finger=no fi; -echo "$as_me:36757: result: $use_finger" >&5 +echo "$as_me:36758: 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:36764: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:36765: 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. @@ -36778,14 +36779,14 @@ else use_gopher=no fi; -echo "$as_me:36781: result: $use_gopher" >&5 +echo "$as_me:36782: 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:36788: checking if you want to exclude NEWS code" >&5 +echo "$as_me:36789: 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. @@ -36802,14 +36803,14 @@ else use_news=no fi; -echo "$as_me:36805: result: $use_news" >&5 +echo "$as_me:36806: 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:36812: checking if you want to exclude FTP code" >&5 +echo "$as_me:36813: 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. @@ -36826,14 +36827,14 @@ else use_ftp=no fi; -echo "$as_me:36829: result: $use_ftp" >&5 +echo "$as_me:36830: result: $use_ftp" >&5 echo "${ECHO_T}$use_ftp" >&6 test $use_ftp != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FTP 1 EOF -echo "$as_me:36836: checking if you want to include WAIS code" >&5 +echo "$as_me:36837: checking if you want to include WAIS code" >&5 echo $ECHO_N "checking if you want to include WAIS code... $ECHO_C" >&6 # Check whether --enable-wais or --disable-wais was given. @@ -36850,13 +36851,13 @@ else use_wais=no fi; -echo "$as_me:36853: result: $use_wais" >&5 +echo "$as_me:36854: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test $use_wais != "no" then - echo "$as_me:36859: checking for fs_free in -lwais" >&5 + echo "$as_me:36860: checking for fs_free in -lwais" >&5 echo $ECHO_N "checking for fs_free in -lwais... $ECHO_C" >&6 if test "${ac_cv_lib_wais_fs_free+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -36864,7 +36865,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 36867 "configure" +#line 36868 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -36883,16 +36884,16 @@ fs_free (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36886: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36887: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36889: \$? = $ac_status" >&5 + echo "$as_me:36890: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36892: \"$ac_try\"") >&5 + { (eval echo "$as_me:36893: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36895: \$? = $ac_status" >&5 + echo "$as_me:36896: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -36903,18 +36904,18 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:36906: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:36907: result: $ac_cv_lib_wais_fs_free" >&5 echo "${ECHO_T}$ac_cv_lib_wais_fs_free" >&6 if test $ac_cv_lib_wais_fs_free = yes; then -echo "$as_me:36910: checking if -lm needed for math functions" >&5 +echo "$as_me:36911: checking if -lm needed for math functions" >&5 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6 if test "${cf_cv_need_libm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 36917 "configure" +#line 36918 "configure" #include "confdefs.h" #include <stdio.h> @@ -36930,16 +36931,16 @@ double x = rand(); printf("result = %g\n", sin(x)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:36933: \"$ac_link\"") >&5 +if { (eval echo "$as_me:36934: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:36936: \$? = $ac_status" >&5 + echo "$as_me:36937: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:36939: \"$ac_try\"") >&5 + { (eval echo "$as_me:36940: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:36942: \$? = $ac_status" >&5 + echo "$as_me:36943: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_libm=no else @@ -36949,7 +36950,7 @@ cf_cv_need_libm=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:36952: result: $cf_cv_need_libm" >&5 +echo "$as_me:36953: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -36991,23 +36992,23 @@ LIBS="$cf_add_libs" for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:36994: checking for $ac_header" >&5 +echo "$as_me:36995: 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 37000 "configure" +#line 37001 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:37004: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:37005: \"$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:37010: \$? = $ac_status" >&5 + echo "$as_me:37011: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -37026,7 +37027,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:37029: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:37030: 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 @@ -37039,7 +37040,7 @@ done MAKE_WAIS= else - { echo "$as_me:37042: WARNING: could not find WAIS library" >&5 + { echo "$as_me:37043: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -37047,7 +37048,7 @@ fi # All DirEd functions that were enabled on compilation can be disabled # or modified at run time via DIRED_MENU symbols in lynx.cfg. -echo "$as_me:37050: checking if directory-editor code should be used" >&5 +echo "$as_me:37051: 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. @@ -37064,7 +37065,7 @@ else use_dired=yes fi; -echo "$as_me:37067: result: $use_dired" >&5 +echo "$as_me:37068: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -37074,7 +37075,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:37077: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:37078: 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. @@ -37091,10 +37092,10 @@ EOF else enableval=yes fi; - echo "$as_me:37094: result: $enableval" >&5 + echo "$as_me:37095: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:37097: checking if DirEd mode should override keys" >&5 + echo "$as_me:37098: 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. @@ -37118,10 +37119,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:37121: result: $enableval" >&5 + echo "$as_me:37122: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:37124: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:37125: 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. @@ -37145,10 +37146,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:37148: result: $enableval" >&5 + echo "$as_me:37149: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:37151: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:37152: 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. @@ -37165,10 +37166,10 @@ EOF else enableval=yes fi; - echo "$as_me:37168: result: $enableval" >&5 + echo "$as_me:37169: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:37171: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:37172: 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. @@ -37192,10 +37193,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:37195: result: $enableval" >&5 + echo "$as_me:37196: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:37198: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:37199: 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. @@ -37219,10 +37220,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:37222: result: $enableval" >&5 + echo "$as_me:37223: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:37225: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:37226: 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. @@ -37246,10 +37247,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:37249: result: $enableval" >&5 + echo "$as_me:37250: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:37252: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:37253: 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. @@ -37273,11 +37274,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:37276: result: $enableval" >&5 + echo "$as_me:37277: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:37280: checking if you want long-directory listings" >&5 +echo "$as_me:37281: 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. @@ -37301,10 +37302,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:37304: result: $enableval" >&5 +echo "$as_me:37305: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:37307: checking if parent-directory references are permitted" >&5 +echo "$as_me:37308: 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. @@ -37321,7 +37322,7 @@ EOF else enableval=yes fi; -echo "$as_me:37324: result: $enableval" >&5 +echo "$as_me:37325: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -37329,7 +37330,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:37332: checking for $ac_word" >&5 +echo "$as_me:37333: 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 @@ -37346,7 +37347,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:37349: found $ac_dir/$ac_word" >&5 + echo "$as_me:37350: found $ac_dir/$ac_word" >&5 break fi done @@ -37357,10 +37358,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:37360: result: $TELNET" >&5 + echo "$as_me:37361: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:37363: result: no" >&5 + echo "$as_me:37364: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37419,7 +37420,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37422: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37423: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -37437,7 +37438,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:37440: checking for $ac_word" >&5 +echo "$as_me:37441: 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 @@ -37454,7 +37455,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:37457: found $ac_dir/$ac_word" >&5 + echo "$as_me:37458: found $ac_dir/$ac_word" >&5 break fi done @@ -37465,10 +37466,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:37468: result: $TN3270" >&5 + echo "$as_me:37469: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:37471: result: no" >&5 + echo "$as_me:37472: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37527,7 +37528,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37530: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37531: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -37545,7 +37546,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:37548: checking for $ac_word" >&5 +echo "$as_me:37549: 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 @@ -37562,7 +37563,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:37565: found $ac_dir/$ac_word" >&5 + echo "$as_me:37566: found $ac_dir/$ac_word" >&5 break fi done @@ -37573,10 +37574,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:37576: result: $RLOGIN" >&5 + echo "$as_me:37577: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:37579: result: no" >&5 + echo "$as_me:37580: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37635,7 +37636,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37638: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37639: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -37653,7 +37654,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:37656: checking for $ac_word" >&5 +echo "$as_me:37657: 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 @@ -37670,7 +37671,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:37673: found $ac_dir/$ac_word" >&5 + echo "$as_me:37674: found $ac_dir/$ac_word" >&5 break fi done @@ -37681,10 +37682,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:37684: result: $MV" >&5 + echo "$as_me:37685: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:37687: result: no" >&5 + echo "$as_me:37688: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37743,7 +37744,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37746: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37747: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -37761,7 +37762,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:37764: checking for $ac_word" >&5 +echo "$as_me:37765: 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 @@ -37778,7 +37779,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:37781: found $ac_dir/$ac_word" >&5 + echo "$as_me:37782: found $ac_dir/$ac_word" >&5 break fi done @@ -37789,10 +37790,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:37792: result: $GZIP" >&5 + echo "$as_me:37793: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:37795: result: no" >&5 + echo "$as_me:37796: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37851,7 +37852,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37854: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37855: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -37869,7 +37870,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:37872: checking for $ac_word" >&5 +echo "$as_me:37873: 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 @@ -37886,7 +37887,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:37889: found $ac_dir/$ac_word" >&5 + echo "$as_me:37890: found $ac_dir/$ac_word" >&5 break fi done @@ -37897,10 +37898,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:37900: result: $UNCOMPRESS" >&5 + echo "$as_me:37901: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:37903: result: no" >&5 + echo "$as_me:37904: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -37959,7 +37960,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:37962: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:37963: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -37977,7 +37978,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:37980: checking for $ac_word" >&5 +echo "$as_me:37981: 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 @@ -37994,7 +37995,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:37997: found $ac_dir/$ac_word" >&5 + echo "$as_me:37998: found $ac_dir/$ac_word" >&5 break fi done @@ -38005,10 +38006,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:38008: result: $UNZIP" >&5 + echo "$as_me:38009: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:38011: result: no" >&5 + echo "$as_me:38012: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38067,7 +38068,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38070: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38071: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -38085,7 +38086,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:38088: checking for $ac_word" >&5 +echo "$as_me:38089: 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 @@ -38102,7 +38103,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:38105: found $ac_dir/$ac_word" >&5 + echo "$as_me:38106: found $ac_dir/$ac_word" >&5 break fi done @@ -38113,10 +38114,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:38116: result: $BZIP2" >&5 + echo "$as_me:38117: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:38119: result: no" >&5 + echo "$as_me:38120: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38175,7 +38176,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38178: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38179: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -38193,7 +38194,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:38196: checking for $ac_word" >&5 +echo "$as_me:38197: 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 @@ -38210,7 +38211,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:38213: found $ac_dir/$ac_word" >&5 + echo "$as_me:38214: found $ac_dir/$ac_word" >&5 break fi done @@ -38221,10 +38222,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:38224: result: $TAR" >&5 + echo "$as_me:38225: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:38227: result: no" >&5 + echo "$as_me:38228: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38283,7 +38284,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38286: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38287: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -38341,7 +38342,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:38344: checking for $ac_word" >&5 +echo "$as_me:38345: 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 @@ -38358,7 +38359,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:38361: found $ac_dir/$ac_word" >&5 + echo "$as_me:38362: found $ac_dir/$ac_word" >&5 break fi done @@ -38369,10 +38370,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:38372: result: $COMPRESS" >&5 + echo "$as_me:38373: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:38375: result: no" >&5 + echo "$as_me:38376: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38431,7 +38432,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38434: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38435: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -38449,7 +38450,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:38452: checking for $ac_word" >&5 +echo "$as_me:38453: 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 @@ -38466,7 +38467,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:38469: found $ac_dir/$ac_word" >&5 + echo "$as_me:38470: found $ac_dir/$ac_word" >&5 break fi done @@ -38477,10 +38478,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:38480: result: $RM" >&5 + echo "$as_me:38481: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:38483: result: no" >&5 + echo "$as_me:38484: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38539,7 +38540,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38542: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38543: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -38557,7 +38558,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:38560: checking for $ac_word" >&5 +echo "$as_me:38561: 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 @@ -38574,7 +38575,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:38577: found $ac_dir/$ac_word" >&5 + echo "$as_me:38578: found $ac_dir/$ac_word" >&5 break fi done @@ -38585,10 +38586,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:38588: result: $UUDECODE" >&5 + echo "$as_me:38589: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:38591: result: no" >&5 + echo "$as_me:38592: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38647,7 +38648,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38650: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38651: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -38665,7 +38666,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:38668: checking for $ac_word" >&5 +echo "$as_me:38669: 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 @@ -38682,7 +38683,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:38685: found $ac_dir/$ac_word" >&5 + echo "$as_me:38686: found $ac_dir/$ac_word" >&5 break fi done @@ -38693,10 +38694,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:38696: result: $ZCAT" >&5 + echo "$as_me:38697: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:38699: result: no" >&5 + echo "$as_me:38700: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38755,7 +38756,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38758: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38759: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -38773,7 +38774,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:38776: checking for $ac_word" >&5 +echo "$as_me:38777: 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 @@ -38790,7 +38791,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:38793: found $ac_dir/$ac_word" >&5 + echo "$as_me:38794: found $ac_dir/$ac_word" >&5 break fi done @@ -38801,10 +38802,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:38804: result: $ZIP" >&5 + echo "$as_me:38805: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:38807: result: no" >&5 + echo "$as_me:38808: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38863,7 +38864,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38866: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38867: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -38891,7 +38892,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:38894: checking for $ac_word" >&5 +echo "$as_me:38895: 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 @@ -38908,7 +38909,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:38911: found $ac_dir/$ac_word" >&5 + echo "$as_me:38912: found $ac_dir/$ac_word" >&5 break fi done @@ -38919,10 +38920,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:38922: result: $INSTALL" >&5 + echo "$as_me:38923: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:38925: result: no" >&5 + echo "$as_me:38926: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -38981,7 +38982,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:38984: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:38985: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -39011,7 +39012,7 @@ if test $cf_cv_screen = pdcurses ; then case $host_os in (mingw*) -echo "$as_me:39014: checking for initscr in -lpdcurses" >&5 +echo "$as_me:39015: checking for initscr in -lpdcurses" >&5 echo $ECHO_N "checking for initscr in -lpdcurses... $ECHO_C" >&6 if test "${ac_cv_lib_pdcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -39019,7 +39020,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39022 "configure" +#line 39023 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39038,16 +39039,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39041: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39042: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39044: \$? = $ac_status" >&5 + echo "$as_me:39045: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39047: \"$ac_try\"") >&5 + { (eval echo "$as_me:39048: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39050: \$? = $ac_status" >&5 + echo "$as_me:39051: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -39058,7 +39059,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39061: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:39062: result: $ac_cv_lib_pdcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_pdcurses_initscr" >&6 if test $ac_cv_lib_pdcurses_initscr = yes; then @@ -39080,13 +39081,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:39083: checking for winwstr" >&5 + echo "$as_me:39084: checking for winwstr" >&5 echo $ECHO_N "checking for winwstr... $ECHO_C" >&6 if test "${ac_cv_func_winwstr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 39089 "configure" +#line 39090 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char winwstr (); below. */ @@ -39117,16 +39118,16 @@ f = winwstr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39120: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39121: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39123: \$? = $ac_status" >&5 + echo "$as_me:39124: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39126: \"$ac_try\"") >&5 + { (eval echo "$as_me:39127: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39129: \$? = $ac_status" >&5 + echo "$as_me:39130: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_winwstr=yes else @@ -39136,7 +39137,7 @@ ac_cv_func_winwstr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39139: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:39140: result: $ac_cv_func_winwstr" >&5 echo "${ECHO_T}$ac_cv_func_winwstr" >&6 if test $ac_cv_func_winwstr = yes; then cat >>confdefs.h <<\EOF @@ -39145,13 +39146,13 @@ EOF fi - echo "$as_me:39148: checking for pdcurses_dll_iname" >&5 + echo "$as_me:39149: checking for pdcurses_dll_iname" >&5 echo $ECHO_N "checking for pdcurses_dll_iname... $ECHO_C" >&6 if test "${ac_cv_func_pdcurses_dll_iname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 39154 "configure" +#line 39155 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pdcurses_dll_iname (); below. */ @@ -39182,16 +39183,16 @@ f = pdcurses_dll_iname; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39185: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39186: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39188: \$? = $ac_status" >&5 + echo "$as_me:39189: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39191: \"$ac_try\"") >&5 + { (eval echo "$as_me:39192: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39194: \$? = $ac_status" >&5 + echo "$as_me:39195: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -39201,7 +39202,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39204: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:39205: result: $ac_cv_func_pdcurses_dll_iname" >&5 echo "${ECHO_T}$ac_cv_func_pdcurses_dll_iname" >&6 if test $ac_cv_func_pdcurses_dll_iname = yes; then cat >>confdefs.h <<\EOF @@ -39214,7 +39215,7 @@ fi ;; (*) - echo "$as_me:39217: checking for X" >&5 + echo "$as_me:39218: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -39311,17 +39312,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 39314 "configure" +#line 39315 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:39318: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:39319: \"$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:39324: \$? = $ac_status" >&5 + echo "$as_me:39325: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -39354,7 +39355,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39357 "configure" +#line 39358 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -39366,16 +39367,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39369: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39370: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39372: \$? = $ac_status" >&5 + echo "$as_me:39373: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39375: \"$ac_try\"") >&5 + { (eval echo "$as_me:39376: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39378: \$? = $ac_status" >&5 + echo "$as_me:39379: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -39413,7 +39414,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:39416: result: $have_x" >&5 + echo "$as_me:39417: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -39423,7 +39424,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:39426: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:39427: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -39447,11 +39448,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:39450: checking whether -R must be followed by a space" >&5 + echo "$as_me:39451: 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 39454 "configure" +#line 39455 "configure" #include "confdefs.h" int @@ -39463,16 +39464,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39466: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39467: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39469: \$? = $ac_status" >&5 + echo "$as_me:39470: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39472: \"$ac_try\"") >&5 + { (eval echo "$as_me:39473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39475: \$? = $ac_status" >&5 + echo "$as_me:39476: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -39482,13 +39483,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:39485: result: no" >&5 + echo "$as_me:39486: 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 39491 "configure" +#line 39492 "configure" #include "confdefs.h" int @@ -39500,16 +39501,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39503: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39504: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39506: \$? = $ac_status" >&5 + echo "$as_me:39507: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39509: \"$ac_try\"") >&5 + { (eval echo "$as_me:39510: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39512: \$? = $ac_status" >&5 + echo "$as_me:39513: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -39519,11 +39520,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:39522: result: yes" >&5 + echo "$as_me:39523: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:39526: result: neither works" >&5 + echo "$as_me:39527: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -39543,7 +39544,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 39546 "configure" +#line 39547 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39562,22 +39563,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39565: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39568: \$? = $ac_status" >&5 + echo "$as_me:39569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39571: \"$ac_try\"") >&5 + { (eval echo "$as_me:39572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39574: \$? = $ac_status" >&5 + echo "$as_me:39575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:39580: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:39581: 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 @@ -39585,7 +39586,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39588 "configure" +#line 39589 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39604,16 +39605,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39607: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39608: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39610: \$? = $ac_status" >&5 + echo "$as_me:39611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39613: \"$ac_try\"") >&5 + { (eval echo "$as_me:39614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39616: \$? = $ac_status" >&5 + echo "$as_me:39617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -39624,14 +39625,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39627: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:39628: 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:39634: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:39635: 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 @@ -39639,7 +39640,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39642 "configure" +#line 39643 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39658,16 +39659,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39661: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39662: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39664: \$? = $ac_status" >&5 + echo "$as_me:39665: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39667: \"$ac_try\"") >&5 + { (eval echo "$as_me:39668: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39670: \$? = $ac_status" >&5 + echo "$as_me:39671: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -39678,7 +39679,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39681: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:39682: 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" @@ -39697,13 +39698,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:39700: checking for gethostbyname" >&5 + echo "$as_me:39701: 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 39706 "configure" +#line 39707 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -39734,16 +39735,16 @@ f = gethostbyname; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39737: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39738: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39740: \$? = $ac_status" >&5 + echo "$as_me:39741: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39743: \"$ac_try\"") >&5 + { (eval echo "$as_me:39744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39746: \$? = $ac_status" >&5 + echo "$as_me:39747: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -39753,11 +39754,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39756: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:39757: 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:39760: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:39761: 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 @@ -39765,7 +39766,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39768 "configure" +#line 39769 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39784,16 +39785,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39787: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39788: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39790: \$? = $ac_status" >&5 + echo "$as_me:39791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39793: \"$ac_try\"") >&5 + { (eval echo "$as_me:39794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39796: \$? = $ac_status" >&5 + echo "$as_me:39797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -39804,14 +39805,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39807: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:39808: 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:39814: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:39815: 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 @@ -39819,7 +39820,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39822 "configure" +#line 39823 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39838,16 +39839,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39841: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39842: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39844: \$? = $ac_status" >&5 + echo "$as_me:39845: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39847: \"$ac_try\"") >&5 + { (eval echo "$as_me:39848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39850: \$? = $ac_status" >&5 + echo "$as_me:39851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -39858,7 +39859,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39861: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:39862: 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" @@ -39874,13 +39875,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:39877: checking for connect" >&5 + echo "$as_me:39878: 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 39883 "configure" +#line 39884 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -39911,16 +39912,16 @@ f = connect; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39914: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39915: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39917: \$? = $ac_status" >&5 + echo "$as_me:39918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39920: \"$ac_try\"") >&5 + { (eval echo "$as_me:39921: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39923: \$? = $ac_status" >&5 + echo "$as_me:39924: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -39930,11 +39931,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:39933: result: $ac_cv_func_connect" >&5 +echo "$as_me:39934: 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:39937: checking for connect in -lsocket" >&5 + echo "$as_me:39938: 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 @@ -39942,7 +39943,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 39945 "configure" +#line 39946 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -39961,16 +39962,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:39964: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39965: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39967: \$? = $ac_status" >&5 + echo "$as_me:39968: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:39970: \"$ac_try\"") >&5 + { (eval echo "$as_me:39971: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39973: \$? = $ac_status" >&5 + echo "$as_me:39974: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -39981,7 +39982,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:39984: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:39985: 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" @@ -39990,13 +39991,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:39993: checking for remove" >&5 + echo "$as_me:39994: 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 39999 "configure" +#line 40000 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -40027,16 +40028,16 @@ f = remove; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40030: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40031: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40033: \$? = $ac_status" >&5 + echo "$as_me:40034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40036: \"$ac_try\"") >&5 + { (eval echo "$as_me:40037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40039: \$? = $ac_status" >&5 + echo "$as_me:40040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -40046,11 +40047,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40049: result: $ac_cv_func_remove" >&5 +echo "$as_me:40050: 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:40053: checking for remove in -lposix" >&5 + echo "$as_me:40054: 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 @@ -40058,7 +40059,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40061 "configure" +#line 40062 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40077,16 +40078,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40080: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40081: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40083: \$? = $ac_status" >&5 + echo "$as_me:40084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40086: \"$ac_try\"") >&5 + { (eval echo "$as_me:40087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40089: \$? = $ac_status" >&5 + echo "$as_me:40090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -40097,7 +40098,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40100: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:40101: 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" @@ -40106,13 +40107,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:40109: checking for shmat" >&5 + echo "$as_me:40110: 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 40115 "configure" +#line 40116 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -40143,16 +40144,16 @@ f = shmat; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40146: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40147: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40149: \$? = $ac_status" >&5 + echo "$as_me:40150: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40152: \"$ac_try\"") >&5 + { (eval echo "$as_me:40153: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40155: \$? = $ac_status" >&5 + echo "$as_me:40156: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -40162,11 +40163,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40165: result: $ac_cv_func_shmat" >&5 +echo "$as_me:40166: 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:40169: checking for shmat in -lipc" >&5 + echo "$as_me:40170: 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 @@ -40174,7 +40175,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40177 "configure" +#line 40178 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40193,16 +40194,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40196: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40197: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40199: \$? = $ac_status" >&5 + echo "$as_me:40200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40202: \"$ac_try\"") >&5 + { (eval echo "$as_me:40203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40205: \$? = $ac_status" >&5 + echo "$as_me:40206: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -40213,7 +40214,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40216: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:40217: 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" @@ -40231,7 +40232,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:40234: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:40235: 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 @@ -40239,7 +40240,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40242 "configure" +#line 40243 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40258,16 +40259,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40261: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40262: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40264: \$? = $ac_status" >&5 + echo "$as_me:40265: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40267: \"$ac_try\"") >&5 + { (eval echo "$as_me:40268: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40270: \$? = $ac_status" >&5 + echo "$as_me:40271: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -40278,7 +40279,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40281: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:40282: 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" @@ -40290,7 +40291,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:40293: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:40294: 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= @@ -40301,14 +40302,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:40304: result: yes" >&5 + echo "$as_me:40305: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:40307: result: no" >&5 + echo "$as_me:40308: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:40311: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:40312: checking if you want to link with Xaw 3d xft library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d xft library... $ECHO_C" >&6 withval= @@ -40319,14 +40320,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:40322: result: yes" >&5 + echo "$as_me:40323: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:40325: result: no" >&5 + echo "$as_me:40326: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:40329: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:40330: 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= @@ -40337,14 +40338,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:40340: result: yes" >&5 + echo "$as_me:40341: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:40343: result: no" >&5 + echo "$as_me:40344: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:40347: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:40348: 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= @@ -40355,10 +40356,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:40358: result: yes" >&5 + echo "$as_me:40359: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:40361: result: no" >&5 + echo "$as_me:40362: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -40378,17 +40379,17 @@ if test "$PKG_CONFIG" != none ; then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists $cf_athena_pkg; then test -n "$verbose" && echo " found package $cf_athena_pkg" 1>&6 -echo "${as_me:-configure}:40381: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:40382: testing found package $cf_athena_pkg ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags $cf_athena_pkg 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs $cf_athena_pkg 2>/dev/null`" test -n "$verbose" && echo " package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:40387: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40388: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package $cf_athena_pkg LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:40391: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40392: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40519,20 +40520,20 @@ EOF LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:40522: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:40523: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:40528: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:40529: checking for usable $cf_x_athena/Xmu package" >&5 echo $ECHO_N "checking for usable $cf_x_athena/Xmu package... $ECHO_C" >&6 if test "${cf_cv_xaw_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 40535 "configure" +#line 40536 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -40548,16 +40549,16 @@ int check = XmuCompareISOLatin1("big", "small") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40551: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40552: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40554: \$? = $ac_status" >&5 + echo "$as_me:40555: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40557: \"$ac_try\"") >&5 + { (eval echo "$as_me:40558: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40560: \$? = $ac_status" >&5 + echo "$as_me:40561: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xaw_compat=yes else @@ -40567,7 +40568,7 @@ cf_cv_xaw_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:40570: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:40571: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -40579,7 +40580,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 (*) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:40582: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:40583: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -40587,17 +40588,17 @@ echo "${as_me:-configure}:40582: testing work around broken package ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xmu; then test -n "$verbose" && echo " found package xmu" 1>&6 -echo "${as_me:-configure}:40590: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:40591: testing found package xmu ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags xmu 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs xmu 2>/dev/null`" test -n "$verbose" && echo " package xmu CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:40596: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40597: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xmu LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:40600: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40601: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40717,12 +40718,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:40720: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40721: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib $cf_pkgconfig_libs %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:40725: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40726: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -40730,12 +40731,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:40733: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:40734: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:40738: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:40739: testing ...after $LIBS ..." 1>&5 fi @@ -40746,7 +40747,7 @@ fi LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:40749: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:40750: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -40771,17 +40772,17 @@ if test -z "$cf_x_athena_lib" ; then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists Xext; then test -n "$verbose" && echo " found package Xext" 1>&6 -echo "${as_me:-configure}:40774: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:40775: testing found package Xext ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags Xext 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs Xext 2>/dev/null`" test -n "$verbose" && echo " package Xext CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:40780: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40781: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package Xext LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:40784: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40785: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -40902,7 +40903,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:40905: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:40906: 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 @@ -40910,7 +40911,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 40913 "configure" +#line 40914 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -40929,16 +40930,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:40932: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40933: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40935: \$? = $ac_status" >&5 + echo "$as_me:40936: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:40938: \"$ac_try\"") >&5 + { (eval echo "$as_me:40939: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40941: \$? = $ac_status" >&5 + echo "$as_me:40942: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -40949,7 +40950,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:40952: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:40953: 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 @@ -40985,17 +40986,17 @@ then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:40988: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:40989: testing found package x11 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags x11 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs x11 2>/dev/null`" test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:40994: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:40995: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:40998: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:40999: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41115,24 +41116,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:41118: WARNING: unable to find X11 library" >&5 + { echo "$as_me:41119: WARNING: unable to find X11 library" >&5 echo "$as_me: WARNING: unable to find X11 library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:41125: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:41126: testing found package ice ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags ice 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs ice 2>/dev/null`" test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:41131: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41132: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:41135: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41136: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41252,24 +41253,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:41255: WARNING: unable to find ICE library" >&5 + { echo "$as_me:41256: WARNING: unable to find ICE library" >&5 echo "$as_me: WARNING: unable to find ICE library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:41262: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:41263: testing found package sm ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags sm 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs sm 2>/dev/null`" test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:41268: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41269: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:41272: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41273: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41389,24 +41390,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:41392: WARNING: unable to find SM library" >&5 + { echo "$as_me:41393: WARNING: unable to find SM library" >&5 echo "$as_me: WARNING: unable to find SM library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xt; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:41399: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:41400: testing found package xt ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags xt 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs xt 2>/dev/null`" test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:41405: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41406: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:41409: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41410: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41526,7 +41527,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:41529: WARNING: unable to find Xt library" >&5 + { echo "$as_me:41530: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -41537,17 +41538,17 @@ cf_have_X_LIBS=no if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xt; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:41540: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:41541: testing found package xt ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags xt 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs xt 2>/dev/null`" test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:41546: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41547: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:41550: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41551: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41668,14 +41669,14 @@ LIBS="$cf_add_libs" ;; (*) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:41671: checking for usable X dependency" >&5 +echo "$as_me:41672: checking for usable X dependency" >&5 echo $ECHO_N "checking for usable X dependency... $ECHO_C" >&6 if test "${cf_cv_xt_x11_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 41678 "configure" +#line 41679 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -41694,16 +41695,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41697: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41698: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41700: \$? = $ac_status" >&5 + echo "$as_me:41701: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41703: \"$ac_try\"") >&5 + { (eval echo "$as_me:41704: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41706: \$? = $ac_status" >&5 + echo "$as_me:41707: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_x11_compat=yes else @@ -41713,30 +41714,30 @@ cf_cv_xt_x11_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41716: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:41717: result: $cf_cv_xt_x11_compat" >&5 echo "${ECHO_T}$cf_cv_xt_x11_compat" >&6 if test "$cf_cv_xt_x11_compat" = no then test -n "$verbose" && echo " work around broken X11 dependency" 1>&6 -echo "${as_me:-configure}:41722: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:41723: testing work around broken X11 dependency ..." 1>&5 # 2010/11/19 - good enough until a working Xt on Xcb is delivered. if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:41729: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:41730: testing found package x11 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags x11 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs x11 2>/dev/null`" test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:41735: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41736: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:41739: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41740: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -41859,12 +41860,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:41862: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:41863: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt -lX11 %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:41867: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:41868: testing ...after $LIBS ..." 1>&5 fi @@ -41872,14 +41873,14 @@ fi ;; esac -echo "$as_me:41875: checking for usable X Toolkit package" >&5 +echo "$as_me:41876: checking for usable X Toolkit package" >&5 echo $ECHO_N "checking for usable X Toolkit package... $ECHO_C" >&6 if test "${cf_cv_xt_ice_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 41882 "configure" +#line 41883 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -41894,16 +41895,16 @@ int num = IceConnectionNumber(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:41897: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41898: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41900: \$? = $ac_status" >&5 + echo "$as_me:41901: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:41903: \"$ac_try\"") >&5 + { (eval echo "$as_me:41904: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41906: \$? = $ac_status" >&5 + echo "$as_me:41907: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xt_ice_compat=yes else @@ -41913,7 +41914,7 @@ cf_cv_xt_ice_compat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:41916: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:41917: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -41927,22 +41928,22 @@ echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 (*) test -n "$verbose" && echo " work around broken ICE dependency" 1>&6 -echo "${as_me:-configure}:41930: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:41931: testing work around broken ICE dependency ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:41935: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:41936: testing found package ice ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags ice 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs ice 2>/dev/null`" test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:41941: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:41942: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:41945: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:41946: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -42061,17 +42062,17 @@ LIBS="$cf_add_libs" if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:42064: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:42065: testing found package sm ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags sm 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs sm 2>/dev/null`" test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:42070: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:42071: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:42074: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:42075: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -42200,12 +42201,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:42203: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:42204: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt $X_PRE_LIBS %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:42208: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:42209: testing ...after $LIBS ..." 1>&5 fi @@ -42225,7 +42226,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:42228: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:42229: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -42310,7 +42311,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:42313: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:42314: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -42320,7 +42321,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:42323: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:42324: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -42330,7 +42331,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:42333: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:42334: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -42339,7 +42340,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 42342 "configure" +#line 42343 "configure" #include "confdefs.h" #include <stdio.h> int @@ -42351,16 +42352,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42354: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42355: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42357: \$? = $ac_status" >&5 + echo "$as_me:42358: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42360: \"$ac_try\"") >&5 + { (eval echo "$as_me:42361: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42363: \$? = $ac_status" >&5 + echo "$as_me:42364: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -42368,12 +42369,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:42371: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:42372: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:42376: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:42377: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -42381,13 +42382,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi - echo "$as_me:42384: checking for XOpenDisplay" >&5 + echo "$as_me:42385: 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 42390 "configure" +#line 42391 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -42418,16 +42419,16 @@ f = XOpenDisplay; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42421: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42422: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42424: \$? = $ac_status" >&5 + echo "$as_me:42425: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42427: \"$ac_try\"") >&5 + { (eval echo "$as_me:42428: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42430: \$? = $ac_status" >&5 + echo "$as_me:42431: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -42437,13 +42438,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42440: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:42441: 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:42446: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:42447: 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 @@ -42451,7 +42452,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 42454 "configure" +#line 42455 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -42470,16 +42471,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42474: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42476: \$? = $ac_status" >&5 + echo "$as_me:42477: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42479: \"$ac_try\"") >&5 + { (eval echo "$as_me:42480: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42482: \$? = $ac_status" >&5 + echo "$as_me:42483: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -42490,7 +42491,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:42493: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:42494: 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 @@ -42514,13 +42515,13 @@ fi fi - echo "$as_me:42517: checking for XtAppInitialize" >&5 + echo "$as_me:42518: 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 42523 "configure" +#line 42524 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -42551,16 +42552,16 @@ f = XtAppInitialize; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42554: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42555: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42557: \$? = $ac_status" >&5 + echo "$as_me:42558: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42560: \"$ac_try\"") >&5 + { (eval echo "$as_me:42561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42563: \$? = $ac_status" >&5 + echo "$as_me:42564: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -42570,13 +42571,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:42573: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:42574: 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:42579: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:42580: 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 @@ -42584,7 +42585,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 42587 "configure" +#line 42588 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -42603,16 +42604,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42606: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42607: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42609: \$? = $ac_status" >&5 + echo "$as_me:42610: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42612: \"$ac_try\"") >&5 + { (eval echo "$as_me:42613: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42615: \$? = $ac_status" >&5 + echo "$as_me:42616: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -42623,7 +42624,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:42626: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:42627: 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 @@ -42640,7 +42641,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:42643: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:42644: 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 @@ -42662,14 +42663,14 @@ do cf_test=X11/$cf_x_athena_root/SimpleMenu.h if test $cf_path != default ; then CPPFLAGS="$cf_save -I$cf_path/include" - echo "$as_me:42665: checking for $cf_test in $cf_path" >&5 + echo "$as_me:42666: 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:42668: checking for $cf_test" >&5 + echo "$as_me:42669: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 42672 "configure" +#line 42673 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -42683,16 +42684,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:42686: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:42687: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:42689: \$? = $ac_status" >&5 + echo "$as_me:42690: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:42692: \"$ac_try\"") >&5 + { (eval echo "$as_me:42693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42695: \$? = $ac_status" >&5 + echo "$as_me:42696: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -42701,7 +42702,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:42704: result: $cf_result" >&5 + echo "$as_me:42705: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_inc=$cf_path @@ -42713,7 +42714,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:42716: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:42717: 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_inc" != default ; then CPPFLAGS="$CPPFLAGS -I$cf_x_athena_inc" @@ -42759,7 +42760,7 @@ do done LIBS="$cf_add_libs" - echo "$as_me:42762: checking for $cf_libs in $cf_path" >&5 + echo "$as_me:42763: checking for $cf_libs in $cf_path" >&5 echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6 else @@ -42779,11 +42780,11 @@ do done LIBS="$cf_add_libs" - echo "$as_me:42782: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:42783: checking for $cf_test in $cf_libs" >&5 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 42786 "configure" +#line 42787 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -42799,16 +42800,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:42802: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42803: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:42805: \$? = $ac_status" >&5 + echo "$as_me:42806: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:42808: \"$ac_try\"") >&5 + { (eval echo "$as_me:42809: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:42811: \$? = $ac_status" >&5 + echo "$as_me:42812: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -42817,7 +42818,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:42820: result: $cf_result" >&5 + echo "$as_me:42821: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_libs" @@ -42831,7 +42832,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:42834: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:42835: 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 @@ -42849,7 +42850,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:42852: checking for $ac_word" >&5 +echo "$as_me:42853: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -42864,7 +42865,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_XCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:42867: found $ac_dir/$ac_word" >&5 +echo "$as_me:42868: found $ac_dir/$ac_word" >&5 break done @@ -42872,10 +42873,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:42875: result: $XCURSES_CONFIG" >&5 + echo "$as_me:42876: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:42878: result: no" >&5 + echo "$as_me:42879: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42888,7 +42889,7 @@ if test -z "$XCURSES_CONFIG"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:42891: checking for $ac_word" >&5 +echo "$as_me:42892: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -42903,7 +42904,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_XCURSES_CONFIG="$ac_prog" -echo "$as_me:42906: found $ac_dir/$ac_word" >&5 +echo "$as_me:42907: found $ac_dir/$ac_word" >&5 break done @@ -42911,10 +42912,10 @@ fi fi ac_ct_XCURSES_CONFIG=$ac_cv_prog_ac_ct_XCURSES_CONFIG if test -n "$ac_ct_XCURSES_CONFIG"; then - echo "$as_me:42914: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:42915: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:42917: result: no" >&5 + echo "$as_me:42918: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42953,7 +42954,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:42956: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:42957: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -43038,7 +43039,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:43041: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:43042: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -43048,7 +43049,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:43051: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:43052: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -43058,7 +43059,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:43061: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:43062: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -43067,7 +43068,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 43070 "configure" +#line 43071 "configure" #include "confdefs.h" #include <stdio.h> int @@ -43079,16 +43080,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43082: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43083: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43085: \$? = $ac_status" >&5 + echo "$as_me:43086: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43088: \"$ac_try\"") >&5 + { (eval echo "$as_me:43089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43091: \$? = $ac_status" >&5 + echo "$as_me:43092: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -43096,12 +43097,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:43099: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:43100: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:43104: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:43105: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -43109,7 +43110,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43112: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:43113: 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 @@ -43117,7 +43118,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 43120 "configure" +#line 43121 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -43136,16 +43137,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43139: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43140: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43142: \$? = $ac_status" >&5 + echo "$as_me:43143: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43145: \"$ac_try\"") >&5 + { (eval echo "$as_me:43146: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43148: \$? = $ac_status" >&5 + echo "$as_me:43149: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -43156,7 +43157,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:43159: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:43160: 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 @@ -43178,7 +43179,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:43181: checking for XCurses library" >&5 +echo "$as_me:43182: 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 @@ -43201,7 +43202,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 43204 "configure" +#line 43205 "configure" #include "confdefs.h" #include <xcurses.h> @@ -43216,16 +43217,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43219: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43220: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43222: \$? = $ac_status" >&5 + echo "$as_me:43223: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43225: \"$ac_try\"") >&5 + { (eval echo "$as_me:43226: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43228: \$? = $ac_status" >&5 + echo "$as_me:43229: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -43236,7 +43237,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43239: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:43240: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -43251,23 +43252,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:43254: checking for xcurses.h" >&5 + echo "$as_me:43255: checking for xcurses.h" >&5 echo $ECHO_N "checking for xcurses.h... $ECHO_C" >&6 if test "${ac_cv_header_xcurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 43260 "configure" +#line 43261 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:43264: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:43265: \"$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:43270: \$? = $ac_status" >&5 + echo "$as_me:43271: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -43286,7 +43287,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:43289: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:43290: result: $ac_cv_header_xcurses_h" >&5 echo "${ECHO_T}$ac_cv_header_xcurses_h" >&6 if test $ac_cv_header_xcurses_h = yes; then @@ -43297,7 +43298,7 @@ EOF fi else - { { echo "$as_me:43300: error: Cannot link with XCurses" >&5 + { { echo "$as_me:43301: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -43306,7 +43307,7 @@ fi esac else -echo "$as_me:43309: checking if we can include termio.h with curses" >&5 +echo "$as_me:43310: 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 @@ -43316,7 +43317,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 43319 "configure" +#line 43320 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -43330,16 +43331,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43333: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43334: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43336: \$? = $ac_status" >&5 + echo "$as_me:43337: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43339: \"$ac_try\"") >&5 + { (eval echo "$as_me:43340: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43342: \$? = $ac_status" >&5 + echo "$as_me:43343: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -43352,7 +43353,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:43355: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:43356: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && @@ -43369,23 +43370,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:43372: checking for $ac_header" >&5 +echo "$as_me:43373: 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 43378 "configure" +#line 43379 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:43382: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:43383: \"$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:43388: \$? = $ac_status" >&5 + echo "$as_me:43389: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -43404,7 +43405,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:43407: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:43408: 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 @@ -43416,7 +43417,7 @@ done fi -echo "$as_me:43419: checking if curses supports alternate-character set" >&5 +echo "$as_me:43420: 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 @@ -43425,7 +43426,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 43428 "configure" +#line 43429 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43439,16 +43440,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43442: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43443: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43445: \$? = $ac_status" >&5 + echo "$as_me:43446: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43448: \"$ac_try\"") >&5 + { (eval echo "$as_me:43449: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43451: \$? = $ac_status" >&5 + echo "$as_me:43452: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -43462,21 +43463,21 @@ done fi -echo "$as_me:43465: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:43466: 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:43472: checking if curses supports fancy attributes" >&5 +echo "$as_me:43473: 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 43479 "configure" +#line 43480 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43494,16 +43495,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43497: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43498: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43500: \$? = $ac_status" >&5 + echo "$as_me:43501: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43503: \"$ac_try\"") >&5 + { (eval echo "$as_me:43504: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43506: \$? = $ac_status" >&5 + echo "$as_me:43507: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -43515,14 +43516,14 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43518: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:43519: 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:43525: checking for function curses_version" >&5 +echo "$as_me:43526: 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 @@ -43532,7 +43533,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 43535 "configure" +#line 43536 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43545,15 +43546,15 @@ int main(void) _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:43548: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43549: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43551: \$? = $ac_status" >&5 + echo "$as_me:43552: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:43553: \"$ac_try\"") >&5 + { (eval echo "$as_me:43554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43556: \$? = $ac_status" >&5 + echo "$as_me:43557: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -43568,7 +43569,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:43571: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:43572: 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 @@ -43576,14 +43577,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:43579: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:43580: 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 43586 "configure" +#line 43587 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43602,16 +43603,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43605: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43606: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43608: \$? = $ac_status" >&5 + echo "$as_me:43609: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43611: \"$ac_try\"") >&5 + { (eval echo "$as_me:43612: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43614: \$? = $ac_status" >&5 + echo "$as_me:43615: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -43623,10 +43624,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:43626: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:43627: 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:43629: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:43630: 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 @@ -43636,14 +43637,14 @@ EOF fi fi -echo "$as_me:43639: checking if curses supports color attributes" >&5 +echo "$as_me:43640: 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 43646 "configure" +#line 43647 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -43663,16 +43664,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:43666: \"$ac_link\"") >&5 +if { (eval echo "$as_me:43667: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43669: \$? = $ac_status" >&5 + echo "$as_me:43670: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:43672: \"$ac_try\"") >&5 + { (eval echo "$as_me:43673: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43675: \$? = $ac_status" >&5 + echo "$as_me:43676: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -43684,7 +43685,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:43687: result: $cf_cv_color_curses" >&5 +echo "$as_me:43688: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then @@ -43706,23 +43707,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:43709: checking for $ac_header" >&5 +echo "$as_me:43710: 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 43715 "configure" +#line 43716 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:43719: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:43720: \"$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:43725: \$? = $ac_status" >&5 + echo "$as_me:43726: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -43741,7 +43742,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:43744: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:43745: 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 @@ -43756,23 +43757,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:43759: checking for $ac_header" >&5 +echo "$as_me:43760: 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 43765 "configure" +#line 43766 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:43769: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:43770: \"$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:43775: \$? = $ac_status" >&5 + echo "$as_me:43776: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -43791,7 +43792,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:43794: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:43795: 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 @@ -43809,10 +43810,10 @@ if test "$ac_cv_header_termios_h" = yes ; then (*) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:43812: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:43813: 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 43815 "configure" +#line 43816 "configure" #include "confdefs.h" #include <termios.h> int @@ -43824,16 +43825,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43827: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43828: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43830: \$? = $ac_status" >&5 + echo "$as_me:43831: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43833: \"$ac_try\"") >&5 + { (eval echo "$as_me:43834: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43836: \$? = $ac_status" >&5 + echo "$as_me:43837: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -43841,7 +43842,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 43844 "configure" +#line 43845 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -43855,16 +43856,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43858: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43859: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43861: \$? = $ac_status" >&5 + echo "$as_me:43862: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43864: \"$ac_try\"") >&5 + { (eval echo "$as_me:43865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43867: \$? = $ac_status" >&5 + echo "$as_me:43868: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -43880,12 +43881,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:43883: result: $termios_bad" >&5 + echo "$as_me:43884: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:43888: checking declaration of size-change" >&5 +echo "$as_me:43889: 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 @@ -43900,7 +43901,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 43903 "configure" +#line 43904 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -43944,16 +43945,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:43947: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:43948: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:43950: \$? = $ac_status" >&5 + echo "$as_me:43951: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:43953: \"$ac_try\"") >&5 + { (eval echo "$as_me:43954: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43956: \$? = $ac_status" >&5 + echo "$as_me:43957: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -43972,7 +43973,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:43975: result: $cf_cv_sizechange" >&5 +echo "$as_me:43976: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -43990,14 +43991,14 @@ EOF esac fi -echo "$as_me:43993: checking if ttytype is declared in curses library" >&5 +echo "$as_me:43994: 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 44000 "configure" +#line 44001 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -44009,16 +44010,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44012: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44013: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44015: \$? = $ac_status" >&5 + echo "$as_me:44016: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44018: \"$ac_try\"") >&5 + { (eval echo "$as_me:44019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44021: \$? = $ac_status" >&5 + echo "$as_me:44022: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -44030,7 +44031,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44033: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:44034: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF @@ -44039,14 +44040,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:44042: checking if curses supports wide characters" >&5 +echo "$as_me:44043: 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 44049 "configure" +#line 44050 "configure" #include "confdefs.h" #include <stdlib.h> @@ -44065,16 +44066,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44068: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44069: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44071: \$? = $ac_status" >&5 + echo "$as_me:44072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44074: \"$ac_try\"") >&5 + { (eval echo "$as_me:44075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44077: \$? = $ac_status" >&5 + echo "$as_me:44078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -44085,7 +44086,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44088: result: $cf_cv_widec_curses" >&5 +echo "$as_me:44089: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -44095,14 +44096,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:44098: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:44099: 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 44105 "configure" +#line 44106 "configure" #include "confdefs.h" #include <stdlib.h> @@ -44116,23 +44117,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:44119: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:44120: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:44122: \$? = $ac_status" >&5 + echo "$as_me:44123: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:44125: \"$ac_try\"") >&5 + { (eval echo "$as_me:44126: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44128: \$? = $ac_status" >&5 + echo "$as_me:44129: \$? = $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 44135 "configure" +#line 44136 "configure" #include "confdefs.h" #include <stdlib.h> @@ -44147,16 +44148,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:44150: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:44151: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:44153: \$? = $ac_status" >&5 + echo "$as_me:44154: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:44156: \"$ac_try\"") >&5 + { (eval echo "$as_me:44157: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44159: \$? = $ac_status" >&5 + echo "$as_me:44160: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -44168,7 +44169,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:44171: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:44172: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -44191,7 +44192,7 @@ fi fi -echo "$as_me:44194: checking definition to turn on extended curses functions" >&5 +echo "$as_me:44195: checking definition to turn on extended curses functions" >&5 echo $ECHO_N "checking definition to turn on extended curses functions... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -44199,7 +44200,7 @@ else cf_cv_need_xopen_extension=unknown cat >conftest.$ac_ext <<_ACEOF -#line 44202 "configure" +#line 44203 "configure" #include "confdefs.h" #include <stdlib.h> @@ -44225,16 +44226,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44228: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44229: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44231: \$? = $ac_status" >&5 + echo "$as_me:44232: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44234: \"$ac_try\"") >&5 + { (eval echo "$as_me:44235: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44237: \$? = $ac_status" >&5 + echo "$as_me:44238: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=none else @@ -44244,7 +44245,7 @@ cat conftest.$ac_ext >&5 for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR do cat >conftest.$ac_ext <<_ACEOF -#line 44247 "configure" +#line 44248 "configure" #include "confdefs.h" #define $cf_try_xopen_extension 1 @@ -44266,16 +44267,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44269: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44272: \$? = $ac_status" >&5 + echo "$as_me:44273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44275: \"$ac_try\"") >&5 + { (eval echo "$as_me:44276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44278: \$? = $ac_status" >&5 + echo "$as_me:44279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=$cf_try_xopen_extension; break else @@ -44289,7 +44290,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44292: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:44293: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 case $cf_cv_need_xopen_extension in @@ -44298,7 +44299,7 @@ case $cf_cv_need_xopen_extension in ;; esac -echo "$as_me:44301: checking for term.h" >&5 +echo "$as_me:44302: 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 @@ -44319,7 +44320,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 44322 "configure" +#line 44323 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -44333,16 +44334,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:44336: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:44337: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:44339: \$? = $ac_status" >&5 + echo "$as_me:44340: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:44342: \"$ac_try\"") >&5 + { (eval echo "$as_me:44343: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44345: \$? = $ac_status" >&5 + echo "$as_me:44346: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -44361,7 +44362,7 @@ case $cf_cv_term_header in for cf_header in ncurses/term.h ncursesw/term.h do cat >conftest.$ac_ext <<_ACEOF -#line 44364 "configure" +#line 44365 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -44379,16 +44380,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:44382: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:44383: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:44385: \$? = $ac_status" >&5 + echo "$as_me:44386: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:44388: \"$ac_try\"") >&5 + { (eval echo "$as_me:44389: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44391: \$? = $ac_status" >&5 + echo "$as_me:44392: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -44403,7 +44404,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext esac fi -echo "$as_me:44406: result: $cf_cv_term_header" >&5 +echo "$as_me:44407: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in @@ -44430,7 +44431,7 @@ EOF ;; esac -echo "$as_me:44433: checking for unctrl.h" >&5 +echo "$as_me:44434: checking for unctrl.h" >&5 echo $ECHO_N "checking for unctrl.h... $ECHO_C" >&6 if test "${cf_cv_unctrl_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -44451,7 +44452,7 @@ esac for cf_header in $cf_header_list do cat >conftest.$ac_ext <<_ACEOF -#line 44454 "configure" +#line 44455 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -44465,16 +44466,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:44468: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:44469: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:44471: \$? = $ac_status" >&5 + echo "$as_me:44472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:44474: \"$ac_try\"") >&5 + { (eval echo "$as_me:44475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44477: \$? = $ac_status" >&5 + echo "$as_me:44478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_unctrl_header=$cf_header break @@ -44487,12 +44488,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:44490: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:44491: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case $cf_cv_unctrl_header in (no) - { echo "$as_me:44495: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:44496: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -44548,10 +44549,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:44551: checking for ${cf_func}" >&5 + echo "$as_me:44552: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:44554: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:44555: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -44560,7 +44561,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 44563 "configure" +#line 44564 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -44593,16 +44594,16 @@ if (foo + 1234L > 5678L) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44596: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44597: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44599: \$? = $ac_status" >&5 + echo "$as_me:44600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44602: \"$ac_try\"") >&5 + { (eval echo "$as_me:44603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44605: \$? = $ac_status" >&5 + echo "$as_me:44606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -44618,7 +44619,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:44621: result: $cf_result" >&5 + echo "$as_me:44622: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -44634,13 +44635,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:44637: checking for $ac_func" >&5 +echo "$as_me:44638: 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 44643 "configure" +#line 44644 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -44671,16 +44672,16 @@ f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44674: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44675: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44677: \$? = $ac_status" >&5 + echo "$as_me:44678: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44680: \"$ac_try\"") >&5 + { (eval echo "$as_me:44681: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44683: \$? = $ac_status" >&5 + echo "$as_me:44684: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -44690,7 +44691,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:44693: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:44694: 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 @@ -44704,12 +44705,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:44707: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:44708: 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:44712: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:44713: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -44717,7 +44718,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:44720: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:44721: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -44731,7 +44732,7 @@ fi # use rpath for libraries in unusual places LD_RPATH_OPT= -echo "$as_me:44734: checking for an rpath option" >&5 +echo "$as_me:44735: checking for an rpath option" >&5 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 case $cf_cv_system_name in (irix*) @@ -44762,12 +44763,12 @@ case $cf_cv_system_name in (*) ;; esac -echo "$as_me:44765: result: $LD_RPATH_OPT" >&5 +echo "$as_me:44766: result: $LD_RPATH_OPT" >&5 echo "${ECHO_T}$LD_RPATH_OPT" >&6 case "x$LD_RPATH_OPT" in (x-R*) - echo "$as_me:44770: checking if we need a space after rpath option" >&5 + echo "$as_me:44771: checking if we need a space after rpath option" >&5 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6 cf_save_LIBS="$LIBS" @@ -44788,7 +44789,7 @@ done LIBS="$cf_add_libs" cat >conftest.$ac_ext <<_ACEOF -#line 44791 "configure" +#line 44792 "configure" #include "confdefs.h" int @@ -44800,16 +44801,16 @@ main (void) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44803: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44804: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44806: \$? = $ac_status" >&5 + echo "$as_me:44807: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44809: \"$ac_try\"") >&5 + { (eval echo "$as_me:44810: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44812: \$? = $ac_status" >&5 + echo "$as_me:44813: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_space=no else @@ -44819,13 +44820,13 @@ cf_rpath_space=yes fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS="$cf_save_LIBS" - echo "$as_me:44822: result: $cf_rpath_space" >&5 + echo "$as_me:44823: result: $cf_rpath_space" >&5 echo "${ECHO_T}$cf_rpath_space" >&6 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " ;; esac -echo "$as_me:44828: checking if rpath-hack should be disabled" >&5 +echo "$as_me:44829: checking if rpath-hack should be disabled" >&5 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6 # Check whether --enable-rpath-hack or --disable-rpath-hack was given. @@ -44842,21 +44843,21 @@ else cf_disable_rpath_hack=no fi; -echo "$as_me:44845: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:44846: result: $cf_disable_rpath_hack" >&5 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 if test "$cf_disable_rpath_hack" = no ; then -echo "$as_me:44849: checking for updated LDFLAGS" >&5 +echo "$as_me:44850: checking for updated LDFLAGS" >&5 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6 if test -n "$LD_RPATH_OPT" ; then - echo "$as_me:44852: result: maybe" >&5 + echo "$as_me:44853: result: maybe" >&5 echo "${ECHO_T}maybe" >&6 for ac_prog in ldd do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:44859: checking for $ac_word" >&5 +echo "$as_me:44860: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -44871,7 +44872,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_cf_ldd_prog="$ac_prog" -echo "$as_me:44874: found $ac_dir/$ac_word" >&5 +echo "$as_me:44875: found $ac_dir/$ac_word" >&5 break done @@ -44879,10 +44880,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:44882: result: $cf_ldd_prog" >&5 + echo "$as_me:44883: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:44885: result: no" >&5 + echo "$as_me:44886: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -44896,7 +44897,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >conftest.$ac_ext <<_ACEOF -#line 44899 "configure" +#line 44900 "configure" #include "confdefs.h" #include <stdio.h> int @@ -44908,16 +44909,16 @@ printf("Hello"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:44911: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44912: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44914: \$? = $ac_status" >&5 + echo "$as_me:44915: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:44917: \"$ac_try\"") >&5 + { (eval echo "$as_me:44918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44920: \$? = $ac_status" >&5 + echo "$as_me:44921: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq` cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq` @@ -44945,7 +44946,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext then test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6 -echo "${as_me:-configure}:44948: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:44949: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -44957,11 +44958,11 @@ echo "${as_me:-configure}:44948: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:44960: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44961: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:44964: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:44965: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -44998,7 +44999,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:45001: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:45002: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -45011,11 +45012,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:45014: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:45015: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:45018: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:45019: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -45052,7 +45053,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:45055: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:45056: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -45065,14 +45066,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:45068: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:45069: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:45072: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:45073: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:45075: result: no" >&5 + echo "$as_me:45076: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -45179,7 +45180,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:45182: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:45183: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -45355,7 +45356,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:45358: error: ambiguous option: $1 + { { echo "$as_me:45359: 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;} @@ -45374,7 +45375,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:45377: error: unrecognized option: $1 + -*) { { echo "$as_me:45378: 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;} @@ -45427,7 +45428,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:45430: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:45431: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -45780,7 +45781,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:45783: creating $ac_file" >&5 + { echo "$as_me:45784: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -45798,7 +45799,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:45801: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:45802: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -45811,7 +45812,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:45814: error: cannot find input file: $f" >&5 + { { echo "$as_me:45815: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -45827,7 +45828,7 @@ cat >>$CONFIG_STATUS <<\EOF if test -n "$ac_seen"; then ac_used=`grep '@datarootdir@' $ac_item` if test -z "$ac_used"; then - { echo "$as_me:45830: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:45831: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&2;} @@ -45836,7 +45837,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' $ac_item` if test -n "$ac_seen"; then - { echo "$as_me:45839: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:45840: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&2;} @@ -45873,7 +45874,7 @@ s,@INSTALL@,$ac_INSTALL,;t t ac_init=`egrep '[ ]*'$ac_name'[ ]*=' $ac_file` if test -z "$ac_init"; then ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'` - { echo "$as_me:45876: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:45877: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&5 echo "$as_me: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&2;} @@ -45884,7 +45885,7 @@ $ac_seen" >&2;} egrep -n '@[A-Z_][A-Z_0-9]+@' $ac_file >>$tmp/out if test -s $tmp/out; then ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out` - { echo "$as_me:45887: WARNING: Some variables may not be substituted: + { echo "$as_me:45888: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -45933,7 +45934,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:45936: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:45937: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -45944,7 +45945,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:45947: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:45948: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -45957,7 +45958,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:45960: error: cannot find input file: $f" >&5 + { { echo "$as_me:45961: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -46075,7 +46076,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:46078: $ac_file is unchanged" >&5 + { echo "$as_me:46079: $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 f84f8fa8..a8d0b4ae 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.293 2017/08/08 22:32:03 tom Exp $ +dnl $LynxId: configure.in,v 1.294 2018/02/19 20:37:46 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -7,7 +7,7 @@ dnl by T.E.Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> dnl dnl --------------------------------------------------------------------------- -dnl Copyright 1997-2016,2017 by Thomas E. Dickey +dnl Copyright 1997-2017,2018 by Thomas E. Dickey dnl dnl Permission to use, copy, modify, and distribute this software and its dnl documentation for any purpose and without fee is hereby granted, @@ -271,12 +271,13 @@ case $host_os in (mingw*) # put these directly in CPPFLAGS since they will not work in lynx_cfg.h CF_ADD_CFLAGS(\ - -DWIN32_LEAN_AND_MEAN \ -DDOSPATH \ -DNOSIGHUP \ -DNOUSERS \ + -DWIN32_LEAN_AND_MEAN \ -DWIN_EX \ -D_CONSOLE \ + -D_GNU_SOURCE \ -D_MBCS \ -D_WINDOWS \ -D_WIN_CC \ diff --git a/lib/dirent.c b/lib/dirent.c index 603ece8d..373ba311 100644 --- a/lib/dirent.c +++ b/lib/dirent.c @@ -1,5 +1,5 @@ /* - * $LynxId: dirent.c,v 1.6 2013/12/07 13:46:58 tom Exp $ + * $LynxId: dirent.c,v 1.7 2018/02/17 17:52:45 tom Exp $ * * dir.c for MS-DOS by Samuel Lam <skl@van-bc.UUCP>, June/87 */ @@ -92,7 +92,7 @@ DIR *opendirx(char *name, char *pattern) break; } } - len = ip - name; + len = (int) (ip - name); if (len > 0) { unc = ((path[0] == '\\' || path[0] == '/') && (path[1] == '\\' || path[1] == '/')); @@ -207,7 +207,7 @@ struct dirent *readdir(DIR *dirp) dp.d_name = dirp->dd_cp->_d_entry; dp.d_namlen = dp.d_reclen = - strlen(dp.d_name); + (int) strlen(dp.d_name); dp.d_ino = (ino_t) (dirp->dd_loc + 1); /* fake the inode */ diff --git a/make-msc.bat b/make-msc.bat index 1229d53c..68535904 100644 --- a/make-msc.bat +++ b/make-msc.bat @@ -1,6 +1,9 @@ @echo off +setlocal +if "x%TARGET_ARCH"=="x" set TARGET_ARCH=x86 rem Build with Visual C++ cd src\chrtrans -nmake -f makefile.msc %1 %2 %3 %4 %5 %6 %7 %8 %9 +nmake -f makefile.msc MACHINE=%TARGET_ARCH% %1 %2 %3 %4 %5 %6 %7 %8 %9 cd ..\.. -nmake -f makefile.msc %1 %2 %3 %4 %5 %6 %7 %8 %9 +nmake -f makefile.msc MACHINE=%TARGET_ARCH% %1 %2 %3 %4 %5 %6 %7 %8 %9 +endlocal diff --git a/makefile.msc b/makefile.msc index f6d9249a..19eb0221 100644 --- a/makefile.msc +++ b/makefile.msc @@ -1,4 +1,4 @@ -# $LynxId: makefile.msc,v 1.30 2017/04/26 23:19:00 tom Exp $ +# $LynxId: makefile.msc,v 1.31 2018/02/17 17:17:38 tom Exp $ # # Makefile for `Lynx' browser for Microsoft Visual C++ 4.2 or later # @@ -60,7 +60,8 @@ SSL_LIBS = "$(SSL_DIR)\lib\ssleay32.lib" "$(SSL_DIR)\lib\libeay32.lib" SCREEN_DEFS = /D "PDCURSES" /D "COLOR_CURSES" /D "FANCY_CURSES" /D "WIDE_CURSES" SCREEN_LIB = pdcurses !else -SCREEN_DEFS = /D "USE_SLANG" /D "SLANG_DLL" +SCREEN_DEFS = /D "USE_SLANG" +# FIXME /D "SLANG_DLL" SCREEN_LIB = wslang32 !endif @@ -114,15 +115,16 @@ DEFS = /D "WIN32_LEAN_AND_MEAN" $(CS_DEFS) $(SOCK_DEFS) $(SSL_DEFS) $(SCREEN_DEF /D _WIN_CC="1" \ /D VC="2.14FM" -# /GX == /EHsc == +# /GX == /EHsc == # /EHs enable C++ EH (no SEH exceptions) /EHa enable C++ EH (w/ SEH exceptions) -# /EHc extern "C" defaults to nothrow +# /EHc extern "C" defaults to nothrow +MACHINE = i386 !if "$(DEBUG)" == "" CFLAGS = /nologo /MT /W3 /EHsc /O2 /c -LDFLAGS = /nologo /subsystem:console /incremental:no /machine:I386 +LDFLAGS = /nologo /subsystem:console /incremental:no /machine:$(MACHINE) !else CFLAGS = /nologo /MT /W3 /EHsc /Zi /c -LDFLAGS = /debug /nologo /subsystem:console /incremental:no /machine:I386 +LDFLAGS = /debug /nologo /subsystem:console /incremental:no /machine:$(MACHINE) !endif LIBS = kernel32.lib user32.lib wsock32.lib advapi32.lib /NODEFAULTLIB:libc\ @@ -405,7 +407,7 @@ LYIcon.obj : $(SRC_DIR)\LYIcon.rc cd $(SRC_DIR) $(RC) /r /fo ..\LYIcon.res LYIcon.rc cd .. - cvtres /verbose /machine:ix86 LYIcon.res + cvtres /verbose /machine:$(MACHINE) LYIcon.res dirent.obj : $(ETC_LIB)\dirent.c $(COMPILE) $(ETC_LIB)\dirent.c diff --git a/src/GridText.c b/src/GridText.c index 885141ce..48e7459b 100644 --- a/src/GridText.c +++ b/src/GridText.c @@ -1,5 +1,5 @@ /* - * $LynxId: GridText.c,v 1.302 2017/07/04 17:27:07 tom Exp $ + * $LynxId: GridText.c,v 1.306 2018/02/19 23:03:00 tom Exp $ * * Character grid hypertext object * =============================== @@ -89,6 +89,8 @@ static void HText_trimHightext(HText *text, int final, int stop_before); HTkcode last_kcode = NOKANJI; /* 1997/11/14 (Fri) 09:09:26 */ #endif +#undef CHAR_WIDTH + #ifdef CJK_EX #define CHAR_WIDTH 6 #else @@ -158,10 +160,19 @@ static void *LY_check_calloc(size_t nmemb, size_t size); #define ALIGN_SIZE sizeof(double) #endif +#define BITS_DIR 2 +#define BITS_POS 14 + +#define MASK_DIR ((1U << BITS_DIR) - 1) +#define CAST_DIR(n) ((MASK_DIR) & (unsigned)(n)) + +#define MASK_POS ((1U << BITS_POS) - 1) +#define CAST_POS(n) ((MASK_POS) & (unsigned)(n)) + typedef struct { - unsigned int sc_direction:2; /* on or off */ - unsigned int sc_horizpos:14; /* horizontal position of this change */ - unsigned int sc_style:16; /* which style to change to */ + unsigned sc_direction:BITS_DIR; /* on or off */ + unsigned sc_horizpos:BITS_POS; /* horizontal position of this change */ + unsigned sc_style:16; /* which style to change to */ } HTStyleChange; #if defined(USE_COLOR_STYLE) @@ -2696,7 +2707,7 @@ static HTLine *insert_blanks_in_line(HTLine *line, int line_number, istyle < line->numstyles && (int) NStyle.sc_horizpos < curlim; istyle++) /* Should not we include OFF-styles at curlim? */ - NStyle.sc_horizpos += shift; + NStyle.sc_horizpos = CAST_POS(NStyle.sc_horizpos + shift); #endif while (copied < pre) /* Copy verbatim to byte == pre */ *t++ = *copied++; @@ -2774,14 +2785,14 @@ static HTStyleChange *skip_matched_and_correct_offsets(HTStyleChange *end, } } if (tmp->sc_horizpos > split_pos) { - tmp->sc_horizpos = split_pos; + tmp->sc_horizpos = CAST_POS(split_pos); } } return result; } #endif /* USE_COLOR_STYLE */ -#define reset_horizpos(value) value = 0, value = ~value +#define reset_horizpos(value) value = 0, value ^= MASK_POS static void split_line(HText *text, unsigned split) { @@ -3031,11 +3042,16 @@ static void split_line(HText *text, unsigned split) while (from >= previous->styles && to >= line->styles) { *to = *from; if ((int) to->sc_horizpos > s_post) { - to->sc_horizpos += -s_post + SpecialAttrChars; + to->sc_horizpos = CAST_POS(to->sc_horizpos + + SpecialAttrChars + - s_post); } else if ((int) to->sc_horizpos > s_pre && (to->sc_direction == STACK_ON || to->sc_direction == ABS_ON)) { - to->sc_horizpos = ((int) to->sc_horizpos < s) ? 0 : SpecialAttrChars; + if ((int) to->sc_horizpos < s) + to->sc_horizpos = 0; + else + to->sc_horizpos = CAST_POS(SpecialAttrChars); } else { break; } @@ -3078,7 +3094,7 @@ static void split_line(HText *text, unsigned split) at_end++; at_end->sc_direction = STACK_OFF; at_end->sc_style = scan->sc_style; - at_end->sc_horizpos = s_pre; + at_end->sc_horizpos = CAST_POS(s_pre); CTRACE_STYLE((tfp, "split_line, %d:style[%d] %d (dir=%d)\n", s_pre, @@ -3093,7 +3109,7 @@ static void split_line(HText *text, unsigned split) to++; else if (to >= line->styles) { *to = *scan; - to->sc_horizpos = SpecialAttrChars; + to->sc_horizpos = CAST_POS(SpecialAttrChars); to--; } else { CTRACE((tfp, "BUG: style overflow after split_line.\n")); @@ -3101,7 +3117,7 @@ static void split_line(HText *text, unsigned split) } } if ((int) scan->sc_horizpos > s_pre) { - scan->sc_horizpos = s_pre; + scan->sc_horizpos = CAST_POS(s_pre); } scan--; } @@ -4533,7 +4549,7 @@ void _internal_HTC(HText *text, int style, int dir) */ line->numstyles--; } else if (line->numstyles < MAX_STYLES_ON_LINE) { - line->styles[line->numstyles].sc_horizpos = line->size; + line->styles[line->numstyles].sc_horizpos = CAST_POS(line->size); /* * Special chars for bold and underlining usually don't * occur with color style, but soft hyphen can. @@ -4541,10 +4557,12 @@ void _internal_HTC(HText *text, int style, int dir) * counted as ctrl_chars. - kw */ if ((int) line->styles[line->numstyles].sc_horizpos >= ctrl_chars_on_this_line) { - line->styles[line->numstyles].sc_horizpos -= ctrl_chars_on_this_line; + line->styles[line->numstyles].sc_horizpos = + CAST_POS(line->styles[line->numstyles].sc_horizpos + - ctrl_chars_on_this_line); } line->styles[line->numstyles].sc_style = (unsigned short) style; - line->styles[line->numstyles].sc_direction = dir; + line->styles[line->numstyles].sc_direction = CAST_DIR(dir); CTRACE_STYLE((tfp, "internal_HTC %d:style[%d] %d (dir=%d)\n", line->size, line->numstyles, diff --git a/src/LYExtern.c b/src/LYExtern.c index bed345f3..d36ba0b8 100644 --- a/src/LYExtern.c +++ b/src/LYExtern.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYExtern.c,v 1.54 2013/11/29 00:21:20 tom Exp $ + * $LynxId: LYExtern.c,v 1.55 2018/02/15 01:53:07 tom Exp $ * External application support. This feature allows lynx to pass a given URL to an external program. @@ -186,7 +186,7 @@ static char *format_command(char *command, int last_pos; LYStrNCpy(host, param + 9, sizeof(host)); - last_pos = strlen(host) - 1; + last_pos = (int) strlen(host) - 1; if (last_pos > 1 && host[last_pos] == '/') host[last_pos] = '\0'; @@ -371,7 +371,7 @@ BOOL run_external(char *param, confirmed = HTConfirm(LYElideString(cmdbuf, 40)) != NO; #endif if (confirmed) { - len = strlen(cmdbuf); + len = (int) strlen(cmdbuf); if (len > 255) { sprintf(buff, "Lynx: command line too long (%d > 255)", len); #ifdef WIN_GUI /* 1997/11/06 (Thu) 14:17:02 */ diff --git a/src/LYMain.c b/src/LYMain.c index e38ba5bb..38a9a7c9 100644 --- a/src/LYMain.c +++ b/src/LYMain.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMain.c,v 1.265 2017/07/03 23:31:21 tom Exp $ + * $LynxId: LYMain.c,v 1.266 2018/02/19 14:29:30 tom Exp $ */ #include <HTUtils.h> #include <HTTP.h> @@ -1193,8 +1193,8 @@ int main(int argc, /* * Zero the MultiBookmark arrays. */ - memset((void *) MBM_A_subbookmark, 0, sizeof(char) * (MBM_V_MAXFILES + 1)); - memset((void *) MBM_A_subdescript, 0, sizeof(char) * (MBM_V_MAXFILES + 1)); + memset((void *) MBM_A_subbookmark, 0, sizeof(char *) * (MBM_V_MAXFILES + 1)); + memset((void *) MBM_A_subdescript, 0, sizeof(char *) * (MBM_V_MAXFILES + 1)); #ifndef VMS StrAllocCopy(list_format, LIST_FORMAT); diff --git a/src/LYMainLoop.c b/src/LYMainLoop.c index 3329985e..dbf51dd4 100644 --- a/src/LYMainLoop.c +++ b/src/LYMainLoop.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMainLoop.c,v 1.235 2017/07/02 20:04:20 tom Exp $ + * $LynxId: LYMainLoop.c,v 1.236 2018/02/15 01:53:44 tom Exp $ */ #include <HTUtils.h> #include <HTAccess.h> @@ -725,7 +725,7 @@ static BOOL do_check_recall(int ch, for (;;) { #ifdef WIN_EX /* 1998/10/11 (Sun) 10:41:05 */ - int len = strlen((*user_input)->str); + int len = (int) strlen((*user_input)->str); if (len >= 3) { if (len < MAX_LINE - 1 diff --git a/src/LYStrings.c b/src/LYStrings.c index d063a171..f565c4e4 100644 --- a/src/LYStrings.c +++ b/src/LYStrings.c @@ -1,4 +1,4 @@ -/* $LynxId: LYStrings.c,v 1.268 2017/05/10 22:11:33 tom Exp $ */ +/* $LynxId: LYStrings.c,v 1.269 2018/02/19 21:22:53 tom Exp $ */ #include <HTUtils.h> #include <HTCJK.h> #include <UCAux.h> @@ -3323,8 +3323,8 @@ int LYDoEdit(FieldEditor * edit, int ch, */ if (!IS_CJK_TTY && LYlowest_eightbit[current_char_set] > 0x97) return (ch); - /* FALLTHRU */ #endif + /* FALLTHRU */ case LYE_CHAR: uch = UCH(ch); LYEditInsert(edit, &uch, 1, map_active, maxMessage); @@ -5265,8 +5265,8 @@ int LYgetBString(bstring **inputline, LYLineEdit(edit, ch, FALSE); break; } - /* FALLTHRU */ #endif + /* FALLTHRU */ case LYE_ENTER: BStrCopy0(*inputline, Buffer); if (!hidden) diff --git a/src/LYUtils.c b/src/LYUtils.c index 8f7dc7a8..61dc1c5d 100644 --- a/src/LYUtils.c +++ b/src/LYUtils.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYUtils.c,v 1.278 2017/07/02 20:42:32 tom Exp $ + * $LynxId: LYUtils.c,v 1.279 2018/02/15 01:54:02 tom Exp $ */ #include <HTUtils.h> #include <HTTCP.h> @@ -5303,7 +5303,7 @@ char *LYPathLeaf(char *pathname) #else int n; - for (leaf = 0, n = strlen(pathname) - 1; n >= 0; n--) { + for (leaf = 0, n = (int) strlen(pathname) - 1; n >= 0; n--) { if (StrChr("\\/:", pathname[n]) != 0) { leaf = pathname + n + 1; break; @@ -7738,7 +7738,7 @@ int put_clip(const char *szBuffer) if (szBuffer == NULL) return EOF; - len = strlen(szBuffer); + len = (int) strlen(szBuffer); if (len == 0) return EOF; else @@ -8060,7 +8060,7 @@ int unsafe_filename(const char *fname) sum = 0; cp = save; - len = strlen(fname); + len = (int) strlen(fname); while (cp < (save + len)) { if (*cp == '\0') { cp++; diff --git a/src/Xsystem.c b/src/Xsystem.c index ac977c8a..cc6cdd81 100644 --- a/src/Xsystem.c +++ b/src/Xsystem.c @@ -1,4 +1,4 @@ -/* $LynxId: Xsystem.c,v 1.28 2013/11/29 00:22:00 tom Exp $ +/* $LynxId: Xsystem.c,v 1.29 2018/02/17 14:58:15 tom Exp $ * like system("cmd") but return with exit code of "cmd" * for Turbo-C/MS-C/LSI-C * This code is in the public domain. @@ -55,12 +55,10 @@ extern char *mktemp(char *); #define isdeg(c) ('0' <= (c) && (c) <= '9') #ifndef NEAR -#if 0 /* MS-C */ -#define NEAR _near -#else #define NEAR #endif -#endif + +#define SAVE_FD 10 typedef struct _proc { struct _proc *next; @@ -71,8 +69,8 @@ typedef struct _proc { int infmod; char *outf; int outfmod; - int ored[10]; - int sred[10]; + int ored[SAVE_FD]; + int sred[SAVE_FD]; } PRO; static PRO *p1 = 0; @@ -112,7 +110,7 @@ static int NEAR is_builtin_command(char *s) }; int i, l, lc, count; - l = strlen(s); + l = (int) strlen(s); count = TABLESIZE(cmdtab); count--; #ifdef WIN_EX @@ -122,7 +120,7 @@ static int NEAR is_builtin_command(char *s) for (i = 0; i < count; i++) { if (strcasecomp(s, cmdtab[i]) == 0) return 1; - lc = strlen(cmdtab[i]); + lc = (int) strlen(cmdtab[i]); if (lc < l && strncasecomp(s, cmdtab[i], lc) == 0 && issep2(s[lc])) return 1; } @@ -145,11 +143,16 @@ static int NEAR getswchar(void) return result; } +#define spawnl_rc(flag, rc) \ + ((flag == P_WAIT) \ + ? (int)(rc) \ + : ((rc) == 0 ? -2 : 0)) + static int NEAR csystem(PRO * p, int flag) { char *cmp; char SW[3]; - int rc; + intptr_t rc; if ((cmp = LYGetEnv("COMSPEC")) == 0) return -2; @@ -157,7 +160,7 @@ static int NEAR csystem(PRO * p, int flag) SW[1] = 'c'; SW[2] = 0; rc = spawnl(flag, cmp, cmp, SW, p->cmd, p->arg, (char *) 0); - return rc < 0 ? -2 : rc; + return spawnl_rc(flag, rc); } static PRO *NEAR pars1c(char *s) @@ -293,16 +296,19 @@ static int NEAR try3(char *cnm, PRO * p, int flag) { char cmdb[STR_MAX]; int rc; + intptr_t rc2; sprintf(cmdb, "%.*s.com", (int) sizeof(cmdb) - 5, cnm); if ((rc = open(cmdb, O_RDONLY)) >= 0) { close(rc); - return spawnl(flag, cmdb, cmdb, p->arg, (char *) 0); + rc2 = spawnl(flag, cmdb, cmdb, p->arg, (char *) 0); + return spawnl_rc(flag, rc2); } sprintf(cmdb, "%.*s.exe", (int) sizeof(cmdb) - 5, cnm); if ((rc = open(cmdb, O_RDONLY)) >= 0) { close(rc); - return spawnl(flag, cmdb, cmdb, p->arg, (char *) 0); + rc2 = spawnl(flag, cmdb, cmdb, p->arg, (char *) 0); + return spawnl_rc(flag, rc2); } sprintf(cmdb, "%.*s.bat", (int) sizeof(cmdb) - 5, cnm); if ((rc = open(cmdb, O_RDONLY)) >= 0) { @@ -319,8 +325,9 @@ static int NEAR prog_go(PRO * p, int flag) char cmdb[STR_MAX]; char *ep; int rc, lc = 0, cmd_len; + intptr_t rc2; - cmd_len = strlen(p->cmd); + cmd_len = (int) strlen(p->cmd); s = p->cmd + cmd_len - 1; while (cmd_len && (*s != '\\') && (*s != '/') && (*s != ':')) { @@ -340,7 +347,8 @@ static int NEAR prog_go(PRO * p, int flag) if (extp) { /* has extension */ if ((rc = open(cmdb, O_RDONLY)) >= 0) { close(rc); - rc = spawnl(flag, cmdb, cmdb, p->arg, (char *) 0); + rc2 = spawnl(flag, cmdb, cmdb, p->arg, (char *) 0); + rc = spawnl_rc(flag, rc2); } } else { rc = try3(cmdb, p, flag); @@ -369,7 +377,8 @@ static int NEAR prog_go(PRO * p, int flag) if (extp) { /* has extension */ if ((rc = open(p->cmd, O_RDONLY)) >= 0) { close(rc); - return spawnl(flag, p->cmd, p->cmd, p->arg, (char *) 0); + rc2 = spawnl(flag, p->cmd, p->cmd, p->arg, (char *) 0); + return spawnl_rc(flag, rc2); } return -1; } else { @@ -386,7 +395,7 @@ static char *NEAR tmpf(char *tp) if ((ev = LYGetEnv("TMP")) != 0) { LYStrNCpy(tplate, ev, sizeof(tplate) - 2 - strlen(tp)); - i = strlen(ev); + i = (int) strlen(ev); if (i && ev[i - 1] != '\\' && ev[i - 1] != '/') strcat(tplate, "\\"); } else { diff --git a/src/chrtrans/makefile.msc b/src/chrtrans/makefile.msc index 28b7435d..48d074ab 100644 --- a/src/chrtrans/makefile.msc +++ b/src/chrtrans/makefile.msc @@ -9,7 +9,8 @@ INCLUDES = /I "." /I ".." /I "..\.." /I "..\..\WWW\Library\Implementation" /I ". DEFS = /D "WIN32_LEAN_AND_MEAN" /D "NDEBUG" /D "__WIN32__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /D "NO_FILEIO_H" /D "NO_UNISTD_H" /D "_WINDOWS" /D "DOSPATH" CFLAGS = /nologo /MT /W3 /EHsc /O2 /c -LDFLAGS = /nologo /subsystem:console /incremental:no /machine:I386 +MACHINE = i386 +LDFLAGS = /nologo /subsystem:console /incremental:no /machine:$(MACHINE) LIBS = user32.lib wsock32.lib COMPILE = $(CC) $(CFLAGS) $(INCLUDES) $(DEFS) diff --git a/src/parsdate.c b/src/parsdate.c index 26a344bc..15d9cce9 100644 --- a/src/parsdate.c +++ b/src/parsdate.c @@ -1,17 +1,18 @@ -#ifndef lint -static const char yysccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93"; -#endif +/* original parser id follows */ +/* yysccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93" */ +/* (use YYMAJOR/YYMINOR for ifdefs dependent on parser version) */ #define YYBYACC 1 #define YYMAJOR 1 #define YYMINOR 9 -#define YYPATCH 20121003 +#define YYPATCH 20140715 #define YYEMPTY (-1) #define yyclearin (yychar = YYEMPTY) #define yyerrok (yyerrflag = 0) #define YYRECOVERING() (yyerrflag != 0) - +#define YYENOMEM (-2) +#define YYEOF 0 #define YYPREFIX "yy" #define YYPURE 0 @@ -21,7 +22,7 @@ static const char yysccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93"; #include <LYLeaks.h> /* - * $LynxId: parsdate.c,v 1.16 2013/01/05 02:00:30 tom Exp $ + * $LynxId: parsdate.c,v 1.17 2018/02/19 15:14:58 tom Exp $ * * This module is adapted and extended from tin, to use for LYmktime(). * @@ -161,7 +162,7 @@ typedef union { enum _MERIDIAN Meridian; } YYSTYPE; #endif /* !YYSTYPE_IS_DECLARED */ -#line 164 "y.tab.c" +#line 166 "y.tab.c" /* compatibility with bison */ #ifdef YYPARSE_PARAM @@ -205,19 +206,20 @@ extern int YYPARSE_DECL(); #define tZONE 265 #define tDST 266 #define YYERRCODE 256 -static const short yylhs[] = { -1, +typedef short YYINT; +static const YYINT yylhs[] = { -1, 0, 0, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 2, 2, 2, 2, 2, 1, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 8, 8, 8, 8, 3, 3, }; -static const short yylen[] = { 2, +static const YYINT yylen[] = { 2, 0, 2, 1, 2, 1, 1, 2, 1, 2, 4, 4, 6, 6, 1, 1, 2, 2, 1, 1, 3, 5, 2, 4, 2, 3, 5, 6, 3, 9, 2, 2, 2, 2, 0, 1, }; -static const short yydefred[] = { 1, +static const YYINT yydefred[] = { 1, 0, 0, 0, 0, 0, 2, 0, 5, 0, 8, 0, 0, 0, 32, 30, 35, 0, 33, 31, 0, 0, 0, 9, 0, 19, 0, 18, 4, 7, 0, @@ -225,10 +227,10 @@ static const short yydefred[] = { 1, 0, 23, 0, 11, 10, 0, 0, 26, 0, 0, 21, 0, 27, 13, 12, 0, 0, 29, }; -static const short yydgoto[] = { 1, +static const YYINT yydgoto[] = { 1, 27, 28, 23, 6, 7, 8, 9, 10, }; -static const short yysindex[] = { 0, +static const YYINT yysindex[] = { 0, -240, -41, -256, -227, -45, 0, -251, 0, -251, 0, -254, -249, -22, 0, 0, 0, -237, 0, 0, -235, -228, -226, 0, -236, 0, -224, 0, 0, 0, -223, @@ -236,7 +238,7 @@ static const short yysindex[] = { 0, -215, 0, -218, 0, 0, -217, -216, 0, -214, -234, 0, -8, 0, 0, 0, -213, -212, 0, }; -static const short yyrindex[] = { 0, +static const YYINT yyrindex[] = { 0, 0, 0, 0, 0, 5, 0, 26, 0, 31, 0, 0, 0, 11, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 16, 0, 32, 0, 0, 0, 0, @@ -244,11 +246,11 @@ static const short yyrindex[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, }; -static const short yygindex[] = { 0, +static const YYINT yygindex[] = { 0, -17, 44, -31, 0, 0, 0, 0, 0, }; #define YYTABLESIZE 300 -static const short yytable[] = { 43, +static const YYINT yytable[] = { 43, 34, 22, 12, 45, 34, 41, 24, 13, 38, 30, 22, 25, 21, 26, 31, 15, 2, 44, 55, 3, 20, 32, 4, 5, 16, 3, 33, 34, 25, 37, @@ -280,7 +282,7 @@ static const short yytable[] = { 43, 20, 0, 3, 20, 20, 3, 0, 6, 14, 3, 6, 14, 0, 24, 6, 14, 24, 0, 0, 24, }; -static const short yycheck[] = { 58, +static const YYINT yycheck[] = { 58, 0, 47, 44, 35, 0, 45, 258, 264, 26, 264, 0, 263, 58, 265, 264, 0, 257, 35, 50, 260, 0, 44, 263, 264, 259, 0, 264, 263, 263, 266, @@ -317,8 +319,10 @@ static const short yycheck[] = { 58, #define YYDEBUG 0 #endif #define YYMAXTOKEN 266 +#define YYUNDFTOKEN 277 +#define YYTRANSLATE(a) ((a) > YYMAXTOKEN ? YYUNDFTOKEN : (a)) #if YYDEBUG -static const char *yyname[] = { +static const char *const yyname[] = { "end-of-file",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,"','","'-'",0,"'/'",0,0,0,0,0,0,0,0,0,0,"':'",0,0,0,0,0,0,0, @@ -328,9 +332,9 @@ static const char *yyname[] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"tDAY","tDAYZONE", "tMERIDIAN","tMONTH","tMONTH_UNIT","tSEC_UNIT","tSNUMBER","tUNUMBER","tZONE", -"tDST", +"tDST",0,0,0,0,0,0,0,0,0,0,"illegal-symbol", }; -static const char *yyrule[] = { +static const char *const yyrule[] = { "$accept : spec", "spec :", "spec : spec item", @@ -387,18 +391,18 @@ YYSTYPE yylval; #ifdef YYMAXDEPTH #define YYSTACKSIZE YYMAXDEPTH #else -#define YYSTACKSIZE 500 -#define YYMAXDEPTH 500 +#define YYSTACKSIZE 10000 +#define YYMAXDEPTH 10000 #endif #endif -#define YYINITSTACKSIZE 500 +#define YYINITSTACKSIZE 200 typedef struct { unsigned stacksize; - short *s_base; - short *s_mark; - short *s_last; + YYINT *s_base; + YYINT *s_mark; + YYINT *s_last; YYSTYPE *l_base; YYSTYPE *l_mark; } YYSTACKDATA; @@ -986,7 +990,7 @@ time_t parsedate(char *p, * from the error return value. (Alternately could set errno on error.) */ return (Start == (time_t) -1) ? 0 : Start; } -#line 989 "y.tab.c" +#line 994 "y.tab.c" #if YYDEBUG #include <stdio.h> /* needed for printf */ @@ -1000,27 +1004,27 @@ static int yygrowstack(YYSTACKDATA *data) { int i; unsigned newsize; - short *newss; + YYINT *newss; YYSTYPE *newvs; if ((newsize = data->stacksize) == 0) newsize = YYINITSTACKSIZE; else if (newsize >= YYMAXDEPTH) - return -1; + return YYENOMEM; else if ((newsize *= 2) > YYMAXDEPTH) newsize = YYMAXDEPTH; i = (int) (data->s_mark - data->s_base); - newss = (short *)realloc(data->s_base, newsize * sizeof(*newss)); + newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss)); if (newss == 0) - return -1; + return YYENOMEM; data->s_base = newss; data->s_mark = newss + i; newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs)); if (newvs == 0) - return -1; + return YYENOMEM; data->l_base = newvs; data->l_mark = newvs + i; @@ -1070,7 +1074,7 @@ YYPARSE_DECL() memset(&yystack, 0, sizeof(yystack)); #endif - if (yystack.s_base == NULL && yygrowstack(&yystack)) goto yyoverflow; + if (yystack.s_base == NULL && yygrowstack(&yystack) == YYENOMEM) goto yyoverflow; yystack.s_mark = yystack.s_base; yystack.l_mark = yystack.l_base; yystate = 0; @@ -1080,13 +1084,11 @@ yyloop: if ((yyn = yydefred[yystate]) != 0) goto yyreduce; if (yychar < 0) { - if ((yychar = YYLEX) < 0) yychar = 0; + if ((yychar = YYLEX) < 0) yychar = YYEOF; #if YYDEBUG if (yydebug) { - yys = 0; - if (yychar <= YYMAXTOKEN) yys = yyname[yychar]; - if (!yys) yys = "illegal-symbol"; + yys = yyname[YYTRANSLATE(yychar)]; printf("%sdebug: state %d, reading %d (%s)\n", YYPREFIX, yystate, yychar, yys); } @@ -1100,7 +1102,7 @@ yyloop: printf("%sdebug: state %d, shifting to state %d\n", YYPREFIX, yystate, yytable[yyn]); #endif - if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack)) + if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM) { goto yyoverflow; } @@ -1119,7 +1121,7 @@ yyloop: } if (yyerrflag) goto yyinrecovery; - yyerror("syntax error"); + YYERROR_CALL("syntax error"); goto yyerrlab; @@ -1140,7 +1142,7 @@ yyinrecovery: printf("%sdebug: state %d, error recovery shifting\ to state %d\n", YYPREFIX, *yystack.s_mark, yytable[yyn]); #endif - if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack)) + if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM) { goto yyoverflow; } @@ -1164,13 +1166,11 @@ yyinrecovery: } else { - if (yychar == 0) goto yyabort; + if (yychar == YYEOF) goto yyabort; #if YYDEBUG if (yydebug) { - yys = 0; - if (yychar <= YYMAXTOKEN) yys = yyname[yychar]; - if (!yys) yys = "illegal-symbol"; + yys = yyname[YYTRANSLATE(yychar)]; printf("%sdebug: state %d, error recovery discards token %d (%s)\n", YYPREFIX, yystate, yychar, yys); } @@ -1478,7 +1478,7 @@ case 35: yyval.Meridian = yystack.l_mark[0].Meridian; } break; -#line 1481 "y.tab.c" +#line 1482 "y.tab.c" } yystack.s_mark -= yym; yystate = *yystack.s_mark; @@ -1496,19 +1496,17 @@ break; *++yystack.l_mark = yyval; if (yychar < 0) { - if ((yychar = YYLEX) < 0) yychar = 0; + if ((yychar = YYLEX) < 0) yychar = YYEOF; #if YYDEBUG if (yydebug) { - yys = 0; - if (yychar <= YYMAXTOKEN) yys = yyname[yychar]; - if (!yys) yys = "illegal-symbol"; + yys = yyname[YYTRANSLATE(yychar)]; printf("%sdebug: state %d, reading %d (%s)\n", YYPREFIX, YYFINAL, yychar, yys); } #endif } - if (yychar == 0) goto yyaccept; + if (yychar == YYEOF) goto yyaccept; goto yyloop; } if ((yyn = yygindex[yym]) && (yyn += yystate) >= 0 && @@ -1521,16 +1519,16 @@ break; printf("%sdebug: after reduction, shifting from state %d \ to state %d\n", YYPREFIX, *yystack.s_mark, yystate); #endif - if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack)) + if (yystack.s_mark >= yystack.s_last && yygrowstack(&yystack) == YYENOMEM) { goto yyoverflow; } - *++yystack.s_mark = (short) yystate; + *++yystack.s_mark = (YYINT) yystate; *++yystack.l_mark = yyval; goto yyloop; yyoverflow: - yyerror("yacc stack overflow"); + YYERROR_CALL("yacc stack overflow"); yyabort: yyfreestack(&yystack); |