Codebase list lynx / 43babf7
Imported Upstream version 2.8.8pre2 Axel Beckert 9 years ago
24 changed file(s) with 3552 addition(s) and 3538 deletion(s). Raw diff Collapse all Expand all
0 -- $LynxId: CHANGES,v 1.701 2013/11/29 01:16:04 tom Exp $
0 -- $LynxId: CHANGES,v 1.713 2013/12/17 23:20:50 tom Exp $
11 ===============================================================================
22 Changes since Lynx 2.8 release
33 ===============================================================================
4
5 2013-12-17 (2.8.8pre.2)
6 * change makefile.msc and lynx-slang.iss to use dll for slang -TD
7 * change URL for HELPFILE in lynx.cfg, etc., to omit version-specifics -TD
8 * update example of options menu shown in user-guide -TD
9 * restore ^Z maxscreen-toggle for Windows, omitted in 2.8.8dev.17 cleanup -TD
10 * typographical fixes for manpage (Bjarni I. Gislason, Debian #732236).
11 * allow fallback sleep() function to be used for MinGW -GV
12 * remove special case in configure.in which added "-lcompat" to $LIBS
13 for OpenBSD, MirBSD and EkkoBSD (Christian Weisgerber, Thorsten Glaser).
14 * build-fix for --disable-forms-options -TD
15 * omit request for admin-access in NullSoft installer, since lynx could be
16 installed in user's directory -TD
17 * change Windows default for LYNX_LSS_FILE to not use a directory-path -TD
418
519 2013-11-28 (2.8.8pre.1)
620 2013-11-28 (2.8.8dev.17)
0 lynx-dev (2.8.8dev.17) unstable; urgency=low
0 lynx-dev (2.8.8pre.2) unstable; urgency=low
11
2 * changes for dev.17
2 * maintenance updates
33
4 -- Thomas E. Dickey <dickey@invisible-island.net> Sun, 29 Sep 2013 19:33:16 -0400
4 -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 30 Nov 2013 20:12:55 -0500
55
66 lynx-dev (2.8.8dev.16) unstable; urgency=high
77
0 ; $LynxId: lynx-slang.iss,v 1.1 2008/12/29 13:28:38 tom Exp $
0 ; $LynxId: lynx-slang.iss,v 1.2 2013/12/17 23:04:59 tom Exp $
11 ;
22 ; This is an installer for the "color-style" flavor of Lynx.
33 ;
66
77 #define SetupBaseName "lynx-sl"
88 #define SourceExeName "lynx-slang.exe"
9 #define NoScreenDll
9 #define ScreenDllName "wslang32.dll"
1010
1111 #include "lynx.iss"
0 ; $LynxId: lynx.nsi,v 1.9 2013/10/17 00:52:26 tom Exp $
0 ; $LynxId: lynx.nsi,v 1.11 2013/12/01 01:31:22 tom Exp $
11 ; Script originally generated with the Venis Install Wizard, but customized.
22 ; The Inno Setup script is preferred; but this can be built via cross-compiling.
33
88 !define VERSION_EPOCH "2"
99 !define VERSION_MAJOR "8"
1010 !define VERSION_MINOR "8"
11 !define VERSION_LEVEL "1017"
12 !define VERSION_PATCH "dev.17"
11 !define VERSION_LEVEL "2002"
12 !define VERSION_PATCH "pre.2"
1313
1414 !define SUBKEY "Lynx"
1515
2121 InstallDir "$PROGRAMFILES\${INSTALL}"
2222 InstallDirRegKey HKLM "Software\${SUBKEY}" "$INSTDIR\bin"
2323 OutFile "NSIS-Output\${APPNAME}-${VERSION}-setup.exe"
24
25 RequestExecutionLevel highest
2624
2725 CRCCheck on
2826 SetCompressor /SOLID lzma
0 # $LynxId: lynx.spec,v 1.19 2013/10/24 00:21:20 tom Exp $
0 # $LynxId: lynx.spec,v 1.20 2013/12/01 01:12:55 tom Exp $
11 Summary: A text-based Web browser
22 Name: lynx
33 Version: 2.8.8
4 Release: dev.17
4 Release: pre.2
55 License: GPLv2
66 Group: Applications/Internet
77 Source: lynx%{version}%{release}.tgz
00 ; version used for Inno Setup files.
11
22 ; $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$
3 #define LYNX_VERSION "2.8.8pre.1"
3 #define LYNX_VERSION "2.8.8pre.2"
44
55 ; most-recent full release and target
66 #define LYNX_RELEASE "2.8.7"
00 /*
1 * $LynxId: HTTCP.c,v 1.128 2013/11/28 11:14:59 tom Exp $
1 * $LynxId: HTTCP.c,v 1.129 2013/12/07 15:36:55 tom Exp $
22 *
33 * Generic Communication Code HTTCP.c
44 * ==========================
14851485 * packed, uninitialized gaps make it hard to analyse with valgrind.
14861486 */
14871487 /* *INDENT-EQLS* */
1488 actual->ai_flags = phost->ai_flags;
1489 actual->ai_family = phost->ai_family;
1488 actual->ai_flags = phost->ai_flags;
1489 actual->ai_family = phost->ai_family;
14901490 actual->ai_socktype = phost->ai_socktype;
14911491 actual->ai_protocol = phost->ai_protocol;
1492 actual->ai_addrlen = phost->ai_addrlen;
1493 actual->ai_addr = (struct sockaddr *) (void *) heap;
1492 actual->ai_addrlen = phost->ai_addrlen;
1493 actual->ai_addr = (struct sockaddr *) (void *) heap;
14941494
14951495 MemCpy(heap, phost->ai_addr, phost->ai_addrlen);
14961496 heap += phost->ai_addrlen;
+3409
-3412
configure less more
00 #! /bin/sh
1 # From configure.in 2.8.8dev.17.
1 # From configure.in 2.8.8pre.2.
22 # Guess values for system-dependent variables and create Makefiles.
33 # Generated by Autoconf 2.52.20121002.
44 #
12721272
12731273 PACKAGE=lynx
12741274 # $Format: "VERSION=$ProjectVersion$"$
1275 VERSION=2.8.8pre.1
1275 VERSION=2.8.8pre.2
12761276
12771277 echo "$as_me:1278: checking for DESTDIR" >&5
12781278 echo $ECHO_N "checking for DESTDIR... $ECHO_C" >&6
44594459 next*)
44604460 TRY_CFLAGS="$TRY_CFLAGS -DNEXT"
44614461 ;;
4462 openbsd* | ekkobsd* | mirbsd*)
4463 LIBS="$LIBS -lcompat"
4464 ;;
44654462 osf4*)
44664463 # The -Olimit flag (see below) is no longer available with
44674464 # Digital C 5.2, which is bundled with Digital UNIX 4.0.
44814478 # SCO's cc (which is reported to have broken const/volatile).
44824479 case "$CC" in #(vi
44834480 cc|*/cc)
4484 { echo "$as_me:4485: WARNING: You should consider using gcc or rcc if available" >&5
4481 { echo "$as_me:4482: WARNING: You should consider using gcc or rcc if available" >&5
44854482 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;}
44864483 unset ac_cv_prog_CC
44874484 for ac_prog in gcc rcc
44884485 do
44894486 # Extract the first word of "$ac_prog", so it can be a program name with args.
44904487 set dummy $ac_prog; ac_word=$2
4491 echo "$as_me:4492: checking for $ac_word" >&5
4488 echo "$as_me:4489: checking for $ac_word" >&5
44924489 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
44934490 if test "${ac_cv_prog_CC+set}" = set; then
44944491 echo $ECHO_N "(cached) $ECHO_C" >&6
45034500 test -z "$ac_dir" && ac_dir=.
45044501 $as_executable_p "$ac_dir/$ac_word" || continue
45054502 ac_cv_prog_CC="$ac_prog"
4506 echo "$as_me:4507: found $ac_dir/$ac_word" >&5
4503 echo "$as_me:4504: found $ac_dir/$ac_word" >&5
45074504 break
45084505 done
45094506
45114508 fi
45124509 CC=$ac_cv_prog_CC
45134510 if test -n "$CC"; then
4514 echo "$as_me:4515: result: $CC" >&5
4511 echo "$as_me:4512: result: $CC" >&5
45154512 echo "${ECHO_T}$CC" >&6
45164513 else
4517 echo "$as_me:4518: result: no" >&5
4514 echo "$as_me:4515: result: no" >&5
45184515 echo "${ECHO_T}no" >&6
45194516 fi
45204517
45374534 for ac_header in jcurses.h
45384535 do
45394536 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
4540 echo "$as_me:4541: checking for $ac_header" >&5
4537 echo "$as_me:4538: checking for $ac_header" >&5
45414538 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
45424539 if eval "test \"\${$as_ac_Header+set}\" = set"; then
45434540 echo $ECHO_N "(cached) $ECHO_C" >&6
45444541 else
45454542 cat >conftest.$ac_ext <<_ACEOF
4546 #line 4547 "configure"
4543 #line 4544 "configure"
45474544 #include "confdefs.h"
45484545 #include <$ac_header>
45494546 _ACEOF
4550 if { (eval echo "$as_me:4551: \"$ac_cpp conftest.$ac_ext\"") >&5
4547 if { (eval echo "$as_me:4548: \"$ac_cpp conftest.$ac_ext\"") >&5
45514548 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
45524549 ac_status=$?
45534550 egrep -v '^ *\+' conftest.er1 >conftest.err
45544551 rm -f conftest.er1
45554552 cat conftest.err >&5
4556 echo "$as_me:4557: \$? = $ac_status" >&5
4553 echo "$as_me:4554: \$? = $ac_status" >&5
45574554 (exit $ac_status); } >/dev/null; then
45584555 if test -s conftest.err; then
45594556 ac_cpp_err=$ac_c_preproc_warn_flag
45724569 fi
45734570 rm -f conftest.err conftest.$ac_ext
45744571 fi
4575 echo "$as_me:4576: result: `eval echo '${'$as_ac_Header'}'`" >&5
4572 echo "$as_me:4573: result: `eval echo '${'$as_ac_Header'}'`" >&5
45764573 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
45774574 if test `eval echo '${'$as_ac_Header'}'` = yes; then
45784575 cat >>confdefs.h <<EOF
46004597 for ac_header in cursesX.h
46014598 do
46024599 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
4603 echo "$as_me:4604: checking for $ac_header" >&5
4600 echo "$as_me:4601: checking for $ac_header" >&5
46044601 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
46054602 if eval "test \"\${$as_ac_Header+set}\" = set"; then
46064603 echo $ECHO_N "(cached) $ECHO_C" >&6
46074604 else
46084605 cat >conftest.$ac_ext <<_ACEOF
4609 #line 4610 "configure"
4606 #line 4607 "configure"
46104607 #include "confdefs.h"
46114608 #include <$ac_header>
46124609 _ACEOF
4613 if { (eval echo "$as_me:4614: \"$ac_cpp conftest.$ac_ext\"") >&5
4610 if { (eval echo "$as_me:4611: \"$ac_cpp conftest.$ac_ext\"") >&5
46144611 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
46154612 ac_status=$?
46164613 egrep -v '^ *\+' conftest.er1 >conftest.err
46174614 rm -f conftest.er1
46184615 cat conftest.err >&5
4619 echo "$as_me:4620: \$? = $ac_status" >&5
4616 echo "$as_me:4617: \$? = $ac_status" >&5
46204617 (exit $ac_status); } >/dev/null; then
46214618 if test -s conftest.err; then
46224619 ac_cpp_err=$ac_c_preproc_warn_flag
46354632 fi
46364633 rm -f conftest.err conftest.$ac_ext
46374634 fi
4638 echo "$as_me:4639: result: `eval echo '${'$as_ac_Header'}'`" >&5
4635 echo "$as_me:4636: result: `eval echo '${'$as_ac_Header'}'`" >&5
46394636 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
46404637 if test `eval echo '${'$as_ac_Header'}'` = yes; then
46414638 cat >>confdefs.h <<EOF
46624659 # This should have been defined by AC_PROG_CC
46634660 : ${CC:=cc}
46644661
4665 echo "$as_me:4666: checking \$CC variable" >&5
4662 echo "$as_me:4663: checking \$CC variable" >&5
46664663 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6
46674664 case "$CC" in #(vi
46684665 *[\ \ ]-[IUD]*)
4669 echo "$as_me:4670: result: broken" >&5
4666 echo "$as_me:4667: result: broken" >&5
46704667 echo "${ECHO_T}broken" >&6
4671 { echo "$as_me:4672: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
4668 { echo "$as_me:4669: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
46724669 echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;}
46734670 # humor him...
46744671 cf_flags=`echo "$CC" | sed -e 's/^[^ ]*[ ]//'`
47544751
47554752 ;;
47564753 *)
4757 echo "$as_me:4758: result: ok" >&5
4754 echo "$as_me:4755: result: ok" >&5
47584755 echo "${ECHO_T}ok" >&6
47594756 ;;
47604757 esac
47614758
4762 echo "$as_me:4763: checking for ${CC:-cc} option to accept ANSI C" >&5
4759 echo "$as_me:4760: checking for ${CC:-cc} option to accept ANSI C" >&5
47634760 echo $ECHO_N "checking for ${CC:-cc} option to accept ANSI C... $ECHO_C" >&6
47644761 if test "${cf_cv_ansi_cc+set}" = set; then
47654762 echo $ECHO_N "(cached) $ECHO_C" >&6
48634860 fi
48644861
48654862 cat >conftest.$ac_ext <<_ACEOF
4866 #line 4867 "configure"
4863 #line 4864 "configure"
48674864 #include "confdefs.h"
48684865
48694866 #ifndef CC_HAS_PROTOS
48844881 }
48854882 _ACEOF
48864883 rm -f conftest.$ac_objext
4887 if { (eval echo "$as_me:4888: \"$ac_compile\"") >&5
4884 if { (eval echo "$as_me:4885: \"$ac_compile\"") >&5
48884885 (eval $ac_compile) 2>&5
48894886 ac_status=$?
4890 echo "$as_me:4891: \$? = $ac_status" >&5
4887 echo "$as_me:4888: \$? = $ac_status" >&5
48914888 (exit $ac_status); } &&
48924889 { ac_try='test -s conftest.$ac_objext'
4893 { (eval echo "$as_me:4894: \"$ac_try\"") >&5
4890 { (eval echo "$as_me:4891: \"$ac_try\"") >&5
48944891 (eval $ac_try) 2>&5
48954892 ac_status=$?
4896 echo "$as_me:4897: \$? = $ac_status" >&5
4893 echo "$as_me:4894: \$? = $ac_status" >&5
48974894 (exit $ac_status); }; }; then
48984895 cf_cv_ansi_cc="$cf_arg"; break
48994896 else
49064903 CPPFLAGS="$cf_save_CPPFLAGS"
49074904
49084905 fi
4909 echo "$as_me:4910: result: $cf_cv_ansi_cc" >&5
4906 echo "$as_me:4907: result: $cf_cv_ansi_cc" >&5
49104907 echo "${ECHO_T}$cf_cv_ansi_cc" >&6
49114908
49124909 if test "$cf_cv_ansi_cc" != "no"; then
50004997 fi
50014998
50024999 if test "$cf_cv_ansi_cc" = "no"; then
5003 { { echo "$as_me:5004: error: Your compiler does not appear to recognize prototypes.
5000 { { echo "$as_me:5001: error: Your compiler does not appear to recognize prototypes.
50045001 You have the following choices:
50055002 a. adjust your compiler options
50065003 b. get an up-to-date compiler
50205017 fi;
50215018 if test "$enable_largefile" != no; then
50225019
5023 echo "$as_me:5024: checking for special C compiler options needed for large files" >&5
5020 echo "$as_me:5021: checking for special C compiler options needed for large files" >&5
50245021 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
50255022 if test "${ac_cv_sys_largefile_CC+set}" = set; then
50265023 echo $ECHO_N "(cached) $ECHO_C" >&6
50325029 # IRIX 6.2 and later do not support large files by default,
50335030 # so use the C compiler's -n32 option if that helps.
50345031 cat >conftest.$ac_ext <<_ACEOF
5035 #line 5036 "configure"
5032 #line 5033 "configure"
50365033 #include "confdefs.h"
50375034 #include <sys/types.h>
50385035 /* Check that off_t can represent 2**63 - 1 correctly.
50525049 }
50535050 _ACEOF
50545051 rm -f conftest.$ac_objext
5055 if { (eval echo "$as_me:5056: \"$ac_compile\"") >&5
5052 if { (eval echo "$as_me:5053: \"$ac_compile\"") >&5
50565053 (eval $ac_compile) 2>&5
50575054 ac_status=$?
5058 echo "$as_me:5059: \$? = $ac_status" >&5
5055 echo "$as_me:5056: \$? = $ac_status" >&5
50595056 (exit $ac_status); } &&
50605057 { ac_try='test -s conftest.$ac_objext'
5061 { (eval echo "$as_me:5062: \"$ac_try\"") >&5
5058 { (eval echo "$as_me:5059: \"$ac_try\"") >&5
50625059 (eval $ac_try) 2>&5
50635060 ac_status=$?
5064 echo "$as_me:5065: \$? = $ac_status" >&5
5061 echo "$as_me:5062: \$? = $ac_status" >&5
50655062 (exit $ac_status); }; }; then
50665063 break
50675064 else
50715068 rm -f conftest.$ac_objext
50725069 CC="$CC -n32"
50735070 rm -f conftest.$ac_objext
5074 if { (eval echo "$as_me:5075: \"$ac_compile\"") >&5
5071 if { (eval echo "$as_me:5072: \"$ac_compile\"") >&5
50755072 (eval $ac_compile) 2>&5
50765073 ac_status=$?
5077 echo "$as_me:5078: \$? = $ac_status" >&5
5074 echo "$as_me:5075: \$? = $ac_status" >&5
50785075 (exit $ac_status); } &&
50795076 { ac_try='test -s conftest.$ac_objext'
5080 { (eval echo "$as_me:5081: \"$ac_try\"") >&5
5077 { (eval echo "$as_me:5078: \"$ac_try\"") >&5
50815078 (eval $ac_try) 2>&5
50825079 ac_status=$?
5083 echo "$as_me:5084: \$? = $ac_status" >&5
5080 echo "$as_me:5081: \$? = $ac_status" >&5
50845081 (exit $ac_status); }; }; then
50855082 ac_cv_sys_largefile_CC=' -n32'; break
50865083 else
50945091 rm -f conftest.$ac_ext
50955092 fi
50965093 fi
5097 echo "$as_me:5098: result: $ac_cv_sys_largefile_CC" >&5
5094 echo "$as_me:5095: result: $ac_cv_sys_largefile_CC" >&5
50985095 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
50995096 if test "$ac_cv_sys_largefile_CC" != no; then
51005097 CC=$CC$ac_cv_sys_largefile_CC
51015098 fi
51025099
5103 echo "$as_me:5104: checking for _FILE_OFFSET_BITS value needed for large files" >&5
5100 echo "$as_me:5101: checking for _FILE_OFFSET_BITS value needed for large files" >&5
51045101 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
51055102 if test "${ac_cv_sys_file_offset_bits+set}" = set; then
51065103 echo $ECHO_N "(cached) $ECHO_C" >&6
51085105 while :; do
51095106 ac_cv_sys_file_offset_bits=no
51105107 cat >conftest.$ac_ext <<_ACEOF
5111 #line 5112 "configure"
5108 #line 5109 "configure"
51125109 #include "confdefs.h"
51135110 #include <sys/types.h>
51145111 /* Check that off_t can represent 2**63 - 1 correctly.
51285125 }
51295126 _ACEOF
51305127 rm -f conftest.$ac_objext
5131 if { (eval echo "$as_me:5132: \"$ac_compile\"") >&5
5128 if { (eval echo "$as_me:5129: \"$ac_compile\"") >&5
51325129 (eval $ac_compile) 2>&5
51335130 ac_status=$?
5134 echo "$as_me:5135: \$? = $ac_status" >&5
5131 echo "$as_me:5132: \$? = $ac_status" >&5
51355132 (exit $ac_status); } &&
51365133 { ac_try='test -s conftest.$ac_objext'
5137 { (eval echo "$as_me:5138: \"$ac_try\"") >&5
5134 { (eval echo "$as_me:5135: \"$ac_try\"") >&5
51385135 (eval $ac_try) 2>&5
51395136 ac_status=$?
5140 echo "$as_me:5141: \$? = $ac_status" >&5
5137 echo "$as_me:5138: \$? = $ac_status" >&5
51415138 (exit $ac_status); }; }; then
51425139 break
51435140 else
51465143 fi
51475144 rm -f conftest.$ac_objext conftest.$ac_ext
51485145 cat >conftest.$ac_ext <<_ACEOF
5149 #line 5150 "configure"
5146 #line 5147 "configure"
51505147 #include "confdefs.h"
51515148 #define _FILE_OFFSET_BITS 64
51525149 #include <sys/types.h>
51675164 }
51685165 _ACEOF
51695166 rm -f conftest.$ac_objext
5170 if { (eval echo "$as_me:5171: \"$ac_compile\"") >&5
5167 if { (eval echo "$as_me:5168: \"$ac_compile\"") >&5
51715168 (eval $ac_compile) 2>&5
51725169 ac_status=$?
5173 echo "$as_me:5174: \$? = $ac_status" >&5
5170 echo "$as_me:5171: \$? = $ac_status" >&5
51745171 (exit $ac_status); } &&
51755172 { ac_try='test -s conftest.$ac_objext'
5176 { (eval echo "$as_me:5177: \"$ac_try\"") >&5
5173 { (eval echo "$as_me:5174: \"$ac_try\"") >&5
51775174 (eval $ac_try) 2>&5
51785175 ac_status=$?
5179 echo "$as_me:5180: \$? = $ac_status" >&5
5176 echo "$as_me:5177: \$? = $ac_status" >&5
51805177 (exit $ac_status); }; }; then
51815178 ac_cv_sys_file_offset_bits=64; break
51825179 else
51875184 break
51885185 done
51895186 fi
5190 echo "$as_me:5191: result: $ac_cv_sys_file_offset_bits" >&5
5187 echo "$as_me:5188: result: $ac_cv_sys_file_offset_bits" >&5
51915188 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
51925189 if test "$ac_cv_sys_file_offset_bits" != no; then
51935190
51975194
51985195 fi
51995196 rm -rf conftest*
5200 echo "$as_me:5201: checking for _LARGE_FILES value needed for large files" >&5
5197 echo "$as_me:5198: checking for _LARGE_FILES value needed for large files" >&5
52015198 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
52025199 if test "${ac_cv_sys_large_files+set}" = set; then
52035200 echo $ECHO_N "(cached) $ECHO_C" >&6
52055202 while :; do
52065203 ac_cv_sys_large_files=no
52075204 cat >conftest.$ac_ext <<_ACEOF
5208 #line 5209 "configure"
5205 #line 5206 "configure"
52095206 #include "confdefs.h"
52105207 #include <sys/types.h>
52115208 /* Check that off_t can represent 2**63 - 1 correctly.
52255222 }
52265223 _ACEOF
52275224 rm -f conftest.$ac_objext
5228 if { (eval echo "$as_me:5229: \"$ac_compile\"") >&5
5225 if { (eval echo "$as_me:5226: \"$ac_compile\"") >&5
52295226 (eval $ac_compile) 2>&5
52305227 ac_status=$?
5231 echo "$as_me:5232: \$? = $ac_status" >&5
5228 echo "$as_me:5229: \$? = $ac_status" >&5
52325229 (exit $ac_status); } &&
52335230 { ac_try='test -s conftest.$ac_objext'
5234 { (eval echo "$as_me:5235: \"$ac_try\"") >&5
5231 { (eval echo "$as_me:5232: \"$ac_try\"") >&5
52355232 (eval $ac_try) 2>&5
52365233 ac_status=$?
5237 echo "$as_me:5238: \$? = $ac_status" >&5
5234 echo "$as_me:5235: \$? = $ac_status" >&5
52385235 (exit $ac_status); }; }; then
52395236 break
52405237 else
52435240 fi
52445241 rm -f conftest.$ac_objext conftest.$ac_ext
52455242 cat >conftest.$ac_ext <<_ACEOF
5246 #line 5247 "configure"
5243 #line 5244 "configure"
52475244 #include "confdefs.h"
52485245 #define _LARGE_FILES 1
52495246 #include <sys/types.h>
52645261 }
52655262 _ACEOF
52665263 rm -f conftest.$ac_objext
5267 if { (eval echo "$as_me:5268: \"$ac_compile\"") >&5
5264 if { (eval echo "$as_me:5265: \"$ac_compile\"") >&5
52685265 (eval $ac_compile) 2>&5
52695266 ac_status=$?
5270 echo "$as_me:5271: \$? = $ac_status" >&5
5267 echo "$as_me:5268: \$? = $ac_status" >&5
52715268 (exit $ac_status); } &&
52725269 { ac_try='test -s conftest.$ac_objext'
5273 { (eval echo "$as_me:5274: \"$ac_try\"") >&5
5270 { (eval echo "$as_me:5271: \"$ac_try\"") >&5
52745271 (eval $ac_try) 2>&5
52755272 ac_status=$?
5276 echo "$as_me:5277: \$? = $ac_status" >&5
5273 echo "$as_me:5274: \$? = $ac_status" >&5
52775274 (exit $ac_status); }; }; then
52785275 ac_cv_sys_large_files=1; break
52795276 else
52845281 break
52855282 done
52865283 fi
5287 echo "$as_me:5288: result: $ac_cv_sys_large_files" >&5
5284 echo "$as_me:5285: result: $ac_cv_sys_large_files" >&5
52885285 echo "${ECHO_T}$ac_cv_sys_large_files" >&6
52895286 if test "$ac_cv_sys_large_files" != no; then
52905287
52975294 fi
52985295
52995296 if test "$enable_largefile" != no ; then
5300 echo "$as_me:5301: checking for _LARGEFILE_SOURCE value needed for large files" >&5
5297 echo "$as_me:5298: checking for _LARGEFILE_SOURCE value needed for large files" >&5
53015298 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
53025299 if test "${ac_cv_sys_largefile_source+set}" = set; then
53035300 echo $ECHO_N "(cached) $ECHO_C" >&6
53055302 while :; do
53065303 ac_cv_sys_largefile_source=no
53075304 cat >conftest.$ac_ext <<_ACEOF
5308 #line 5309 "configure"
5305 #line 5306 "configure"
53095306 #include "confdefs.h"
53105307 #include <stdio.h>
53115308 int
53175314 }
53185315 _ACEOF
53195316 rm -f conftest.$ac_objext
5320 if { (eval echo "$as_me:5321: \"$ac_compile\"") >&5
5317 if { (eval echo "$as_me:5318: \"$ac_compile\"") >&5
53215318 (eval $ac_compile) 2>&5
53225319 ac_status=$?
5323 echo "$as_me:5324: \$? = $ac_status" >&5
5320 echo "$as_me:5321: \$? = $ac_status" >&5
53245321 (exit $ac_status); } &&
53255322 { ac_try='test -s conftest.$ac_objext'
5326 { (eval echo "$as_me:5327: \"$ac_try\"") >&5
5323 { (eval echo "$as_me:5324: \"$ac_try\"") >&5
53275324 (eval $ac_try) 2>&5
53285325 ac_status=$?
5329 echo "$as_me:5330: \$? = $ac_status" >&5
5326 echo "$as_me:5327: \$? = $ac_status" >&5
53305327 (exit $ac_status); }; }; then
53315328 break
53325329 else
53355332 fi
53365333 rm -f conftest.$ac_objext conftest.$ac_ext
53375334 cat >conftest.$ac_ext <<_ACEOF
5338 #line 5339 "configure"
5335 #line 5336 "configure"
53395336 #include "confdefs.h"
53405337 #define _LARGEFILE_SOURCE 1
53415338 #include <stdio.h>
53485345 }
53495346 _ACEOF
53505347 rm -f conftest.$ac_objext
5351 if { (eval echo "$as_me:5352: \"$ac_compile\"") >&5
5348 if { (eval echo "$as_me:5349: \"$ac_compile\"") >&5
53525349 (eval $ac_compile) 2>&5
53535350 ac_status=$?
5354 echo "$as_me:5355: \$? = $ac_status" >&5
5351 echo "$as_me:5352: \$? = $ac_status" >&5
53555352 (exit $ac_status); } &&
53565353 { ac_try='test -s conftest.$ac_objext'
5357 { (eval echo "$as_me:5358: \"$ac_try\"") >&5
5354 { (eval echo "$as_me:5355: \"$ac_try\"") >&5
53585355 (eval $ac_try) 2>&5
53595356 ac_status=$?
5360 echo "$as_me:5361: \$? = $ac_status" >&5
5357 echo "$as_me:5358: \$? = $ac_status" >&5
53615358 (exit $ac_status); }; }; then
53625359 ac_cv_sys_largefile_source=1; break
53635360 else
53685365 break
53695366 done
53705367 fi
5371 echo "$as_me:5372: result: $ac_cv_sys_largefile_source" >&5
5368 echo "$as_me:5369: result: $ac_cv_sys_largefile_source" >&5
53725369 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
53735370 if test "$ac_cv_sys_largefile_source" != no; then
53745371
53825379 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
53835380 # in glibc 2.1.3, but that breaks too many other things.
53845381 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
5385 echo "$as_me:5386: checking for fseeko" >&5
5382 echo "$as_me:5383: checking for fseeko" >&5
53865383 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
53875384 if test "${ac_cv_func_fseeko+set}" = set; then
53885385 echo $ECHO_N "(cached) $ECHO_C" >&6
53895386 else
53905387 cat >conftest.$ac_ext <<_ACEOF
5391 #line 5392 "configure"
5388 #line 5389 "configure"
53925389 #include "confdefs.h"
53935390 #include <stdio.h>
53945391 int
54005397 }
54015398 _ACEOF
54025399 rm -f conftest.$ac_objext conftest$ac_exeext
5403 if { (eval echo "$as_me:5404: \"$ac_link\"") >&5
5400 if { (eval echo "$as_me:5401: \"$ac_link\"") >&5
54045401 (eval $ac_link) 2>&5
54055402 ac_status=$?
5406 echo "$as_me:5407: \$? = $ac_status" >&5
5403 echo "$as_me:5404: \$? = $ac_status" >&5
54075404 (exit $ac_status); } &&
54085405 { ac_try='test -s conftest$ac_exeext'
5409 { (eval echo "$as_me:5410: \"$ac_try\"") >&5
5406 { (eval echo "$as_me:5407: \"$ac_try\"") >&5
54105407 (eval $ac_try) 2>&5
54115408 ac_status=$?
5412 echo "$as_me:5413: \$? = $ac_status" >&5
5409 echo "$as_me:5410: \$? = $ac_status" >&5
54135410 (exit $ac_status); }; }; then
54145411 ac_cv_func_fseeko=yes
54155412 else
54195416 fi
54205417 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
54215418 fi
5422 echo "$as_me:5423: result: $ac_cv_func_fseeko" >&5
5419 echo "$as_me:5420: result: $ac_cv_func_fseeko" >&5
54235420 echo "${ECHO_T}$ac_cv_func_fseeko" >&6
54245421 if test $ac_cv_func_fseeko = yes; then
54255422
54405437 test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
54415438 test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits "
54425439
5443 echo "$as_me:5444: checking whether to use struct dirent64" >&5
5440 echo "$as_me:5441: checking whether to use struct dirent64" >&5
54445441 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
54455442 if test "${cf_cv_struct_dirent64+set}" = set; then
54465443 echo $ECHO_N "(cached) $ECHO_C" >&6
54475444 else
54485445
54495446 cat >conftest.$ac_ext <<_ACEOF
5450 #line 5451 "configure"
5447 #line 5448 "configure"
54515448 #include "confdefs.h"
54525449
54535450 #include <sys/types.h>
54685465 }
54695466 _ACEOF
54705467 rm -f conftest.$ac_objext
5471 if { (eval echo "$as_me:5472: \"$ac_compile\"") >&5
5468 if { (eval echo "$as_me:5469: \"$ac_compile\"") >&5
54725469 (eval $ac_compile) 2>&5
54735470 ac_status=$?
5474 echo "$as_me:5475: \$? = $ac_status" >&5
5471 echo "$as_me:5472: \$? = $ac_status" >&5
54755472 (exit $ac_status); } &&
54765473 { ac_try='test -s conftest.$ac_objext'
5477 { (eval echo "$as_me:5478: \"$ac_try\"") >&5
5474 { (eval echo "$as_me:5475: \"$ac_try\"") >&5
54785475 (eval $ac_try) 2>&5
54795476 ac_status=$?
5480 echo "$as_me:5481: \$? = $ac_status" >&5
5477 echo "$as_me:5478: \$? = $ac_status" >&5
54815478 (exit $ac_status); }; }; then
54825479 cf_cv_struct_dirent64=yes
54835480 else
54885485 rm -f conftest.$ac_objext conftest.$ac_ext
54895486
54905487 fi
5491 echo "$as_me:5492: result: $cf_cv_struct_dirent64" >&5
5488 echo "$as_me:5489: result: $cf_cv_struct_dirent64" >&5
54925489 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
54935490 test "$cf_cv_struct_dirent64" = yes &&
54945491 cat >>confdefs.h <<\EOF
55005497 if test -z "$ALL_LINGUAS" ; then
55015498 ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && echo *.po|sed -e 's/\.po//g' -e 's/*//'`
55025499
5503 echo "$as_me:5504: checking for PATH separator" >&5
5500 echo "$as_me:5501: checking for PATH separator" >&5
55045501 echo $ECHO_N "checking for PATH separator... $ECHO_C" >&6
55055502 case $cf_cv_system_name in
55065503 os2*) PATH_SEPARATOR=';' ;;
55075504 *) ${PATH_SEPARATOR:=':'} ;;
55085505 esac
55095506
5510 echo "$as_me:5511: result: $PATH_SEPARATOR" >&5
5507 echo "$as_me:5508: result: $PATH_SEPARATOR" >&5
55115508 echo "${ECHO_T}$PATH_SEPARATOR" >&6
55125509
55135510 # Extract the first word of "msginit", so it can be a program name with args.
55145511
55155512 set dummy msginit; ac_word=$2
5516 echo "$as_me:5517: checking for $ac_word" >&5
5513 echo "$as_me:5514: checking for $ac_word" >&5
55175514 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
55185515 if test "${ac_cv_path_MSGINIT+set}" = set; then
55195516 echo $ECHO_N "(cached) $ECHO_C" >&6
55405537 fi
55415538 MSGINIT="$ac_cv_path_MSGINIT"
55425539 if test "$MSGINIT" != ":"; then
5543 echo "$as_me:5544: result: $MSGINIT" >&5
5540 echo "$as_me:5541: result: $MSGINIT" >&5
55445541 echo "${ECHO_T}$MSGINIT" >&6
55455542 else
5546 echo "$as_me:5547: result: no" >&5
5543 echo "$as_me:5544: result: no" >&5
55475544 echo "${ECHO_T}no" >&6
55485545 fi
55495546
55505547 if test "$MSGINIT" != ":" ; then
55515548 test -n "$verbose" && echo " adding en.po" 1>&6
55525549
5553 echo "${as_me:-configure}:5554: testing adding en.po ..." 1>&5
5550 echo "${as_me:-configure}:5551: testing adding en.po ..." 1>&5
55545551
55555552 ALL_LINGUAS="$ALL_LINGUAS en"
55565553 fi
55595556 if test -n "$ac_tool_prefix"; then
55605557 # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
55615558 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5562 echo "$as_me:5563: checking for $ac_word" >&5
5559 echo "$as_me:5560: checking for $ac_word" >&5
55635560 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
55645561 if test "${ac_cv_prog_RANLIB+set}" = set; then
55655562 echo $ECHO_N "(cached) $ECHO_C" >&6
55745571 test -z "$ac_dir" && ac_dir=.
55755572 $as_executable_p "$ac_dir/$ac_word" || continue
55765573 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
5577 echo "$as_me:5578: found $ac_dir/$ac_word" >&5
5574 echo "$as_me:5575: found $ac_dir/$ac_word" >&5
55785575 break
55795576 done
55805577
55825579 fi
55835580 RANLIB=$ac_cv_prog_RANLIB
55845581 if test -n "$RANLIB"; then
5585 echo "$as_me:5586: result: $RANLIB" >&5
5582 echo "$as_me:5583: result: $RANLIB" >&5
55865583 echo "${ECHO_T}$RANLIB" >&6
55875584 else
5588 echo "$as_me:5589: result: no" >&5
5585 echo "$as_me:5586: result: no" >&5
55895586 echo "${ECHO_T}no" >&6
55905587 fi
55915588
55945591 ac_ct_RANLIB=$RANLIB
55955592 # Extract the first word of "ranlib", so it can be a program name with args.
55965593 set dummy ranlib; ac_word=$2
5597 echo "$as_me:5598: checking for $ac_word" >&5
5594 echo "$as_me:5595: checking for $ac_word" >&5
55985595 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
55995596 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
56005597 echo $ECHO_N "(cached) $ECHO_C" >&6
56095606 test -z "$ac_dir" && ac_dir=.
56105607 $as_executable_p "$ac_dir/$ac_word" || continue
56115608 ac_cv_prog_ac_ct_RANLIB="ranlib"
5612 echo "$as_me:5613: found $ac_dir/$ac_word" >&5
5609 echo "$as_me:5610: found $ac_dir/$ac_word" >&5
56135610 break
56145611 done
56155612
56185615 fi
56195616 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
56205617 if test -n "$ac_ct_RANLIB"; then
5621 echo "$as_me:5622: result: $ac_ct_RANLIB" >&5
5618 echo "$as_me:5619: result: $ac_ct_RANLIB" >&5
56225619 echo "${ECHO_T}$ac_ct_RANLIB" >&6
56235620 else
5624 echo "$as_me:5625: result: no" >&5
5621 echo "$as_me:5622: result: no" >&5
56255622 echo "${ECHO_T}no" >&6
56265623 fi
56275624
56305627 RANLIB="$ac_cv_prog_RANLIB"
56315628 fi
56325629
5633 echo "$as_me:5634: checking for ANSI C header files" >&5
5630 echo "$as_me:5631: checking for ANSI C header files" >&5
56345631 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
56355632 if test "${ac_cv_header_stdc+set}" = set; then
56365633 echo $ECHO_N "(cached) $ECHO_C" >&6
56375634 else
56385635 cat >conftest.$ac_ext <<_ACEOF
5639 #line 5640 "configure"
5636 #line 5637 "configure"
56405637 #include "confdefs.h"
56415638 #include <stdlib.h>
56425639 #include <stdarg.h>
56445641 #include <float.h>
56455642
56465643 _ACEOF
5647 if { (eval echo "$as_me:5648: \"$ac_cpp conftest.$ac_ext\"") >&5
5644 if { (eval echo "$as_me:5645: \"$ac_cpp conftest.$ac_ext\"") >&5
56485645 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
56495646 ac_status=$?
56505647 egrep -v '^ *\+' conftest.er1 >conftest.err
56515648 rm -f conftest.er1
56525649 cat conftest.err >&5
5653 echo "$as_me:5654: \$? = $ac_status" >&5
5650 echo "$as_me:5651: \$? = $ac_status" >&5
56545651 (exit $ac_status); } >/dev/null; then
56555652 if test -s conftest.err; then
56565653 ac_cpp_err=$ac_c_preproc_warn_flag
56725669 if test $ac_cv_header_stdc = yes; then
56735670 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
56745671 cat >conftest.$ac_ext <<_ACEOF
5675 #line 5676 "configure"
5672 #line 5673 "configure"
56765673 #include "confdefs.h"
56775674 #include <string.h>
56785675
56905687 if test $ac_cv_header_stdc = yes; then
56915688 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
56925689 cat >conftest.$ac_ext <<_ACEOF
5693 #line 5694 "configure"
5690 #line 5691 "configure"
56945691 #include "confdefs.h"
56955692 #include <stdlib.h>
56965693
57115708 :
57125709 else
57135710 cat >conftest.$ac_ext <<_ACEOF
5714 #line 5715 "configure"
5711 #line 5712 "configure"
57155712 #include "confdefs.h"
57165713 #include <ctype.h>
57175714 #if ((' ' & 0x0FF) == 0x020)
57375734 }
57385735 _ACEOF
57395736 rm -f conftest$ac_exeext
5740 if { (eval echo "$as_me:5741: \"$ac_link\"") >&5
5737 if { (eval echo "$as_me:5738: \"$ac_link\"") >&5
57415738 (eval $ac_link) 2>&5
57425739 ac_status=$?
5743 echo "$as_me:5744: \$? = $ac_status" >&5
5740 echo "$as_me:5741: \$? = $ac_status" >&5
57445741 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
5745 { (eval echo "$as_me:5746: \"$ac_try\"") >&5
5742 { (eval echo "$as_me:5743: \"$ac_try\"") >&5
57465743 (eval $ac_try) 2>&5
57475744 ac_status=$?
5748 echo "$as_me:5749: \$? = $ac_status" >&5
5745 echo "$as_me:5746: \$? = $ac_status" >&5
57495746 (exit $ac_status); }; }; then
57505747 :
57515748 else
57585755 fi
57595756 fi
57605757 fi
5761 echo "$as_me:5762: result: $ac_cv_header_stdc" >&5
5758 echo "$as_me:5759: result: $ac_cv_header_stdc" >&5
57625759 echo "${ECHO_T}$ac_cv_header_stdc" >&6
57635760 if test $ac_cv_header_stdc = yes; then
57645761
57685765
57695766 fi
57705767
5771 echo "$as_me:5772: checking for inline" >&5
5768 echo "$as_me:5769: checking for inline" >&5
57725769 echo $ECHO_N "checking for inline... $ECHO_C" >&6
57735770 if test "${ac_cv_c_inline+set}" = set; then
57745771 echo $ECHO_N "(cached) $ECHO_C" >&6
57765773 ac_cv_c_inline=no
57775774 for ac_kw in inline __inline__ __inline; do
57785775 cat >conftest.$ac_ext <<_ACEOF
5779 #line 5780 "configure"
5776 #line 5777 "configure"
57805777 #include "confdefs.h"
57815778 #ifndef __cplusplus
57825779 static $ac_kw int static_foo () {return 0; }
57855782
57865783 _ACEOF
57875784 rm -f conftest.$ac_objext
5788 if { (eval echo "$as_me:5789: \"$ac_compile\"") >&5
5785 if { (eval echo "$as_me:5786: \"$ac_compile\"") >&5
57895786 (eval $ac_compile) 2>&5
57905787 ac_status=$?
5791 echo "$as_me:5792: \$? = $ac_status" >&5
5788 echo "$as_me:5789: \$? = $ac_status" >&5
57925789 (exit $ac_status); } &&
57935790 { ac_try='test -s conftest.$ac_objext'
5794 { (eval echo "$as_me:5795: \"$ac_try\"") >&5
5791 { (eval echo "$as_me:5792: \"$ac_try\"") >&5
57955792 (eval $ac_try) 2>&5
57965793 ac_status=$?
5797 echo "$as_me:5798: \$? = $ac_status" >&5
5794 echo "$as_me:5795: \$? = $ac_status" >&5
57985795 (exit $ac_status); }; }; then
57995796 ac_cv_c_inline=$ac_kw; break
58005797 else
58055802 done
58065803
58075804 fi
5808 echo "$as_me:5809: result: $ac_cv_c_inline" >&5
5805 echo "$as_me:5806: result: $ac_cv_c_inline" >&5
58095806 echo "${ECHO_T}$ac_cv_c_inline" >&6
58105807 case $ac_cv_c_inline in
58115808 inline | yes) ;;
58265823 inttypes.h stdint.h unistd.h
58275824 do
58285825 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
5829 echo "$as_me:5830: checking for $ac_header" >&5
5826 echo "$as_me:5827: checking for $ac_header" >&5
58305827 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
58315828 if eval "test \"\${$as_ac_Header+set}\" = set"; then
58325829 echo $ECHO_N "(cached) $ECHO_C" >&6
58335830 else
58345831 cat >conftest.$ac_ext <<_ACEOF
5835 #line 5836 "configure"
5832 #line 5833 "configure"
58365833 #include "confdefs.h"
58375834 $ac_includes_default
58385835 #include <$ac_header>
58395836 _ACEOF
58405837 rm -f conftest.$ac_objext
5841 if { (eval echo "$as_me:5842: \"$ac_compile\"") >&5
5838 if { (eval echo "$as_me:5839: \"$ac_compile\"") >&5
58425839 (eval $ac_compile) 2>&5
58435840 ac_status=$?
5844 echo "$as_me:5845: \$? = $ac_status" >&5
5841 echo "$as_me:5842: \$? = $ac_status" >&5
58455842 (exit $ac_status); } &&
58465843 { ac_try='test -s conftest.$ac_objext'
5847 { (eval echo "$as_me:5848: \"$ac_try\"") >&5
5844 { (eval echo "$as_me:5845: \"$ac_try\"") >&5
58485845 (eval $ac_try) 2>&5
58495846 ac_status=$?
5850 echo "$as_me:5851: \$? = $ac_status" >&5
5847 echo "$as_me:5848: \$? = $ac_status" >&5
58515848 (exit $ac_status); }; }; then
58525849 eval "$as_ac_Header=yes"
58535850 else
58575854 fi
58585855 rm -f conftest.$ac_objext conftest.$ac_ext
58595856 fi
5860 echo "$as_me:5861: result: `eval echo '${'$as_ac_Header'}'`" >&5
5857 echo "$as_me:5858: result: `eval echo '${'$as_ac_Header'}'`" >&5
58615858 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
58625859 if test `eval echo '${'$as_ac_Header'}'` = yes; then
58635860 cat >>confdefs.h <<EOF
58675864 fi
58685865 done
58695866
5870 echo "$as_me:5871: checking for off_t" >&5
5867 echo "$as_me:5868: checking for off_t" >&5
58715868 echo $ECHO_N "checking for off_t... $ECHO_C" >&6
58725869 if test "${ac_cv_type_off_t+set}" = set; then
58735870 echo $ECHO_N "(cached) $ECHO_C" >&6
58745871 else
58755872 cat >conftest.$ac_ext <<_ACEOF
5876 #line 5877 "configure"
5873 #line 5874 "configure"
58775874 #include "confdefs.h"
58785875 $ac_includes_default
58795876 int
58885885 }
58895886 _ACEOF
58905887 rm -f conftest.$ac_objext
5891 if { (eval echo "$as_me:5892: \"$ac_compile\"") >&5
5888 if { (eval echo "$as_me:5889: \"$ac_compile\"") >&5
58925889 (eval $ac_compile) 2>&5
58935890 ac_status=$?
5894 echo "$as_me:5895: \$? = $ac_status" >&5
5891 echo "$as_me:5892: \$? = $ac_status" >&5
58955892 (exit $ac_status); } &&
58965893 { ac_try='test -s conftest.$ac_objext'
5897 { (eval echo "$as_me:5898: \"$ac_try\"") >&5
5894 { (eval echo "$as_me:5895: \"$ac_try\"") >&5
58985895 (eval $ac_try) 2>&5
58995896 ac_status=$?
5900 echo "$as_me:5901: \$? = $ac_status" >&5
5897 echo "$as_me:5898: \$? = $ac_status" >&5
59015898 (exit $ac_status); }; }; then
59025899 ac_cv_type_off_t=yes
59035900 else
59075904 fi
59085905 rm -f conftest.$ac_objext conftest.$ac_ext
59095906 fi
5910 echo "$as_me:5911: result: $ac_cv_type_off_t" >&5
5907 echo "$as_me:5908: result: $ac_cv_type_off_t" >&5
59115908 echo "${ECHO_T}$ac_cv_type_off_t" >&6
59125909 if test $ac_cv_type_off_t = yes; then
59135910 :
59195916
59205917 fi
59215918
5922 echo "$as_me:5923: checking for size_t" >&5
5919 echo "$as_me:5920: checking for size_t" >&5
59235920 echo $ECHO_N "checking for size_t... $ECHO_C" >&6
59245921 if test "${ac_cv_type_size_t+set}" = set; then
59255922 echo $ECHO_N "(cached) $ECHO_C" >&6
59265923 else
59275924 cat >conftest.$ac_ext <<_ACEOF
5928 #line 5929 "configure"
5925 #line 5926 "configure"
59295926 #include "confdefs.h"
59305927 $ac_includes_default
59315928 int
59405937 }
59415938 _ACEOF
59425939 rm -f conftest.$ac_objext
5943 if { (eval echo "$as_me:5944: \"$ac_compile\"") >&5
5940 if { (eval echo "$as_me:5941: \"$ac_compile\"") >&5
59445941 (eval $ac_compile) 2>&5
59455942 ac_status=$?
5946 echo "$as_me:5947: \$? = $ac_status" >&5
5943 echo "$as_me:5944: \$? = $ac_status" >&5
59475944 (exit $ac_status); } &&
59485945 { ac_try='test -s conftest.$ac_objext'
5949 { (eval echo "$as_me:5950: \"$ac_try\"") >&5
5946 { (eval echo "$as_me:5947: \"$ac_try\"") >&5
59505947 (eval $ac_try) 2>&5
59515948 ac_status=$?
5952 echo "$as_me:5953: \$? = $ac_status" >&5
5949 echo "$as_me:5950: \$? = $ac_status" >&5
59535950 (exit $ac_status); }; }; then
59545951 ac_cv_type_size_t=yes
59555952 else
59595956 fi
59605957 rm -f conftest.$ac_objext conftest.$ac_ext
59615958 fi
5962 echo "$as_me:5963: result: $ac_cv_type_size_t" >&5
5959 echo "$as_me:5960: result: $ac_cv_type_size_t" >&5
59635960 echo "${ECHO_T}$ac_cv_type_size_t" >&6
59645961 if test $ac_cv_type_size_t = yes; then
59655962 :
59735970
59745971 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
59755972 # for constant arguments. Useless!
5976 echo "$as_me:5977: checking for working alloca.h" >&5
5973 echo "$as_me:5974: checking for working alloca.h" >&5
59775974 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
59785975 if test "${ac_cv_working_alloca_h+set}" = set; then
59795976 echo $ECHO_N "(cached) $ECHO_C" >&6
59805977 else
59815978 cat >conftest.$ac_ext <<_ACEOF
5982 #line 5983 "configure"
5979 #line 5980 "configure"
59835980 #include "confdefs.h"
59845981 #include <alloca.h>
59855982 int
59915988 }
59925989 _ACEOF
59935990 rm -f conftest.$ac_objext conftest$ac_exeext
5994 if { (eval echo "$as_me:5995: \"$ac_link\"") >&5
5991 if { (eval echo "$as_me:5992: \"$ac_link\"") >&5
59955992 (eval $ac_link) 2>&5
59965993 ac_status=$?
5997 echo "$as_me:5998: \$? = $ac_status" >&5
5994 echo "$as_me:5995: \$? = $ac_status" >&5
59985995 (exit $ac_status); } &&
59995996 { ac_try='test -s conftest$ac_exeext'
6000 { (eval echo "$as_me:6001: \"$ac_try\"") >&5
5997 { (eval echo "$as_me:5998: \"$ac_try\"") >&5
60015998 (eval $ac_try) 2>&5
60025999 ac_status=$?
6003 echo "$as_me:6004: \$? = $ac_status" >&5
6000 echo "$as_me:6001: \$? = $ac_status" >&5
60046001 (exit $ac_status); }; }; then
60056002 ac_cv_working_alloca_h=yes
60066003 else
60106007 fi
60116008 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
60126009 fi
6013 echo "$as_me:6014: result: $ac_cv_working_alloca_h" >&5
6010 echo "$as_me:6011: result: $ac_cv_working_alloca_h" >&5
60146011 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
60156012 if test $ac_cv_working_alloca_h = yes; then
60166013
60206017
60216018 fi
60226019
6023 echo "$as_me:6024: checking for alloca" >&5
6020 echo "$as_me:6021: checking for alloca" >&5
60246021 echo $ECHO_N "checking for alloca... $ECHO_C" >&6
60256022 if test "${ac_cv_func_alloca_works+set}" = set; then
60266023 echo $ECHO_N "(cached) $ECHO_C" >&6
60276024 else
60286025 cat >conftest.$ac_ext <<_ACEOF
6029 #line 6030 "configure"
6026 #line 6027 "configure"
60306027 #include "confdefs.h"
60316028 #ifdef __GNUC__
60326029 # define alloca __builtin_alloca
60586055 }
60596056 _ACEOF
60606057 rm -f conftest.$ac_objext conftest$ac_exeext
6061 if { (eval echo "$as_me:6062: \"$ac_link\"") >&5
6058 if { (eval echo "$as_me:6059: \"$ac_link\"") >&5
60626059 (eval $ac_link) 2>&5
60636060 ac_status=$?
6064 echo "$as_me:6065: \$? = $ac_status" >&5
6061 echo "$as_me:6062: \$? = $ac_status" >&5
60656062 (exit $ac_status); } &&
60666063 { ac_try='test -s conftest$ac_exeext'
6067 { (eval echo "$as_me:6068: \"$ac_try\"") >&5
6064 { (eval echo "$as_me:6065: \"$ac_try\"") >&5
60686065 (eval $ac_try) 2>&5
60696066 ac_status=$?
6070 echo "$as_me:6071: \$? = $ac_status" >&5
6067 echo "$as_me:6068: \$? = $ac_status" >&5
60716068 (exit $ac_status); }; }; then
60726069 ac_cv_func_alloca_works=yes
60736070 else
60776074 fi
60786075 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
60796076 fi
6080 echo "$as_me:6081: result: $ac_cv_func_alloca_works" >&5
6077 echo "$as_me:6078: result: $ac_cv_func_alloca_works" >&5
60816078 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
60826079
60836080 if test $ac_cv_func_alloca_works = yes; then
60986095 #define C_ALLOCA 1
60996096 EOF
61006097
6101 echo "$as_me:6102: checking whether \`alloca.c' needs Cray hooks" >&5
6098 echo "$as_me:6099: checking whether \`alloca.c' needs Cray hooks" >&5
61026099 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
61036100 if test "${ac_cv_os_cray+set}" = set; then
61046101 echo $ECHO_N "(cached) $ECHO_C" >&6
61056102 else
61066103 cat >conftest.$ac_ext <<_ACEOF
6107 #line 6108 "configure"
6104 #line 6105 "configure"
61086105 #include "confdefs.h"
61096106 #if defined(CRAY) && ! defined(CRAY2)
61106107 webecray
61226119 rm -rf conftest*
61236120
61246121 fi
6125 echo "$as_me:6126: result: $ac_cv_os_cray" >&5
6122 echo "$as_me:6123: result: $ac_cv_os_cray" >&5
61266123 echo "${ECHO_T}$ac_cv_os_cray" >&6
61276124 if test $ac_cv_os_cray = yes; then
61286125 for ac_func in _getb67 GETB67 getb67; do
61296126 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
6130 echo "$as_me:6131: checking for $ac_func" >&5
6127 echo "$as_me:6128: checking for $ac_func" >&5
61316128 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
61326129 if eval "test \"\${$as_ac_var+set}\" = set"; then
61336130 echo $ECHO_N "(cached) $ECHO_C" >&6
61346131 else
61356132 cat >conftest.$ac_ext <<_ACEOF
6136 #line 6137 "configure"
6133 #line 6134 "configure"
61376134 #include "confdefs.h"
61386135 /* System header to define __stub macros and hopefully few prototypes,
61396136 which can conflict with char $ac_func (); below. */
61646161 }
61656162 _ACEOF
61666163 rm -f conftest.$ac_objext conftest$ac_exeext
6167 if { (eval echo "$as_me:6168: \"$ac_link\"") >&5
6164 if { (eval echo "$as_me:6165: \"$ac_link\"") >&5
61686165 (eval $ac_link) 2>&5
61696166 ac_status=$?
6170 echo "$as_me:6171: \$? = $ac_status" >&5
6167 echo "$as_me:6168: \$? = $ac_status" >&5
61716168 (exit $ac_status); } &&
61726169 { ac_try='test -s conftest$ac_exeext'
6173 { (eval echo "$as_me:6174: \"$ac_try\"") >&5
6170 { (eval echo "$as_me:6171: \"$ac_try\"") >&5
61746171 (eval $ac_try) 2>&5
61756172 ac_status=$?
6176 echo "$as_me:6177: \$? = $ac_status" >&5
6173 echo "$as_me:6174: \$? = $ac_status" >&5
61776174 (exit $ac_status); }; }; then
61786175 eval "$as_ac_var=yes"
61796176 else
61836180 fi
61846181 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
61856182 fi
6186 echo "$as_me:6187: result: `eval echo '${'$as_ac_var'}'`" >&5
6183 echo "$as_me:6184: result: `eval echo '${'$as_ac_var'}'`" >&5
61876184 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
61886185 if test `eval echo '${'$as_ac_var'}'` = yes; then
61896186
61976194 done
61986195 fi
61996196
6200 echo "$as_me:6201: checking stack direction for C alloca" >&5
6197 echo "$as_me:6198: checking stack direction for C alloca" >&5
62016198 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
62026199 if test "${ac_cv_c_stack_direction+set}" = set; then
62036200 echo $ECHO_N "(cached) $ECHO_C" >&6
62066203 ac_cv_c_stack_direction=0
62076204 else
62086205 cat >conftest.$ac_ext <<_ACEOF
6209 #line 6210 "configure"
6206 #line 6207 "configure"
62106207 #include "confdefs.h"
62116208 int
62126209 find_stack_direction ()
62296226 }
62306227 _ACEOF
62316228 rm -f conftest$ac_exeext
6232 if { (eval echo "$as_me:6233: \"$ac_link\"") >&5
6229 if { (eval echo "$as_me:6230: \"$ac_link\"") >&5
62336230 (eval $ac_link) 2>&5
62346231 ac_status=$?
6235 echo "$as_me:6236: \$? = $ac_status" >&5
6232 echo "$as_me:6233: \$? = $ac_status" >&5
62366233 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
6237 { (eval echo "$as_me:6238: \"$ac_try\"") >&5
6234 { (eval echo "$as_me:6235: \"$ac_try\"") >&5
62386235 (eval $ac_try) 2>&5
62396236 ac_status=$?
6240 echo "$as_me:6241: \$? = $ac_status" >&5
6237 echo "$as_me:6238: \$? = $ac_status" >&5
62416238 (exit $ac_status); }; }; then
62426239 ac_cv_c_stack_direction=1
62436240 else
62496246 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
62506247 fi
62516248 fi
6252 echo "$as_me:6253: result: $ac_cv_c_stack_direction" >&5
6249 echo "$as_me:6250: result: $ac_cv_c_stack_direction" >&5
62536250 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
62546251
62556252 cat >>confdefs.h <<EOF
62616258 for ac_header in stdlib.h unistd.h
62626259 do
62636260 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6264 echo "$as_me:6265: checking for $ac_header" >&5
6261 echo "$as_me:6262: checking for $ac_header" >&5
62656262 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
62666263 if eval "test \"\${$as_ac_Header+set}\" = set"; then
62676264 echo $ECHO_N "(cached) $ECHO_C" >&6
62686265 else
62696266 cat >conftest.$ac_ext <<_ACEOF
6270 #line 6271 "configure"
6267 #line 6268 "configure"
62716268 #include "confdefs.h"
62726269 #include <$ac_header>
62736270 _ACEOF
6274 if { (eval echo "$as_me:6275: \"$ac_cpp conftest.$ac_ext\"") >&5
6271 if { (eval echo "$as_me:6272: \"$ac_cpp conftest.$ac_ext\"") >&5
62756272 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
62766273 ac_status=$?
62776274 egrep -v '^ *\+' conftest.er1 >conftest.err
62786275 rm -f conftest.er1
62796276 cat conftest.err >&5
6280 echo "$as_me:6281: \$? = $ac_status" >&5
6277 echo "$as_me:6278: \$? = $ac_status" >&5
62816278 (exit $ac_status); } >/dev/null; then
62826279 if test -s conftest.err; then
62836280 ac_cpp_err=$ac_c_preproc_warn_flag
62966293 fi
62976294 rm -f conftest.err conftest.$ac_ext
62986295 fi
6299 echo "$as_me:6300: result: `eval echo '${'$as_ac_Header'}'`" >&5
6296 echo "$as_me:6297: result: `eval echo '${'$as_ac_Header'}'`" >&5
63006297 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
63016298 if test `eval echo '${'$as_ac_Header'}'` = yes; then
63026299 cat >>confdefs.h <<EOF
63096306 for ac_func in getpagesize
63106307 do
63116308 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
6312 echo "$as_me:6313: checking for $ac_func" >&5
6309 echo "$as_me:6310: checking for $ac_func" >&5
63136310 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
63146311 if eval "test \"\${$as_ac_var+set}\" = set"; then
63156312 echo $ECHO_N "(cached) $ECHO_C" >&6
63166313 else
63176314 cat >conftest.$ac_ext <<_ACEOF
6318 #line 6319 "configure"
6315 #line 6316 "configure"
63196316 #include "confdefs.h"
63206317 /* System header to define __stub macros and hopefully few prototypes,
63216318 which can conflict with char $ac_func (); below. */
63466343 }
63476344 _ACEOF
63486345 rm -f conftest.$ac_objext conftest$ac_exeext
6349 if { (eval echo "$as_me:6350: \"$ac_link\"") >&5
6346 if { (eval echo "$as_me:6347: \"$ac_link\"") >&5
63506347 (eval $ac_link) 2>&5
63516348 ac_status=$?
6352 echo "$as_me:6353: \$? = $ac_status" >&5
6349 echo "$as_me:6350: \$? = $ac_status" >&5
63536350 (exit $ac_status); } &&
63546351 { ac_try='test -s conftest$ac_exeext'
6355 { (eval echo "$as_me:6356: \"$ac_try\"") >&5
6352 { (eval echo "$as_me:6353: \"$ac_try\"") >&5
63566353 (eval $ac_try) 2>&5
63576354 ac_status=$?
6358 echo "$as_me:6359: \$? = $ac_status" >&5
6355 echo "$as_me:6356: \$? = $ac_status" >&5
63596356 (exit $ac_status); }; }; then
63606357 eval "$as_ac_var=yes"
63616358 else
63656362 fi
63666363 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
63676364 fi
6368 echo "$as_me:6369: result: `eval echo '${'$as_ac_var'}'`" >&5
6365 echo "$as_me:6366: result: `eval echo '${'$as_ac_var'}'`" >&5
63696366 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
63706367 if test `eval echo '${'$as_ac_var'}'` = yes; then
63716368 cat >>confdefs.h <<EOF
63756372 fi
63766373 done
63776374
6378 echo "$as_me:6379: checking for working mmap" >&5
6375 echo "$as_me:6376: checking for working mmap" >&5
63796376 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
63806377 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
63816378 echo $ECHO_N "(cached) $ECHO_C" >&6
63846381 ac_cv_func_mmap_fixed_mapped=no
63856382 else
63866383 cat >conftest.$ac_ext <<_ACEOF
6387 #line 6388 "configure"
6384 #line 6385 "configure"
63886385 #include "confdefs.h"
63896386 $ac_includes_default
63906387 /* Thanks to Mike Haertel and Jim Avera for this test.
65116508 }
65126509 _ACEOF
65136510 rm -f conftest$ac_exeext
6514 if { (eval echo "$as_me:6515: \"$ac_link\"") >&5
6511 if { (eval echo "$as_me:6512: \"$ac_link\"") >&5
65156512 (eval $ac_link) 2>&5
65166513 ac_status=$?
6517 echo "$as_me:6518: \$? = $ac_status" >&5
6514 echo "$as_me:6515: \$? = $ac_status" >&5
65186515 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
6519 { (eval echo "$as_me:6520: \"$ac_try\"") >&5
6516 { (eval echo "$as_me:6517: \"$ac_try\"") >&5
65206517 (eval $ac_try) 2>&5
65216518 ac_status=$?
6522 echo "$as_me:6523: \$? = $ac_status" >&5
6519 echo "$as_me:6520: \$? = $ac_status" >&5
65236520 (exit $ac_status); }; }; then
65246521 ac_cv_func_mmap_fixed_mapped=yes
65256522 else
65316528 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
65326529 fi
65336530 fi
6534 echo "$as_me:6535: result: $ac_cv_func_mmap_fixed_mapped" >&5
6531 echo "$as_me:6532: result: $ac_cv_func_mmap_fixed_mapped" >&5
65356532 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
65366533 if test $ac_cv_func_mmap_fixed_mapped = yes; then
65376534
65426539 fi
65436540 rm -f conftest.mmap
65446541
6545 echo "$as_me:6546: checking whether we are using the GNU C Library 2.1 or newer" >&5
6542 echo "$as_me:6543: checking whether we are using the GNU C Library 2.1 or newer" >&5
65466543 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6
65476544 if test "${ac_cv_gnu_library_2_1+set}" = set; then
65486545 echo $ECHO_N "(cached) $ECHO_C" >&6
65496546 else
65506547 cat >conftest.$ac_ext <<_ACEOF
6551 #line 6552 "configure"
6548 #line 6549 "configure"
65526549 #include "confdefs.h"
65536550
65546551 #include <features.h>
65686565 rm -rf conftest*
65696566
65706567 fi
6571 echo "$as_me:6572: result: $ac_cv_gnu_library_2_1" >&5
6568 echo "$as_me:6569: result: $ac_cv_gnu_library_2_1" >&5
65726569 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6
65736570
65746571 GLIBC21="$ac_cv_gnu_library_2_1"
65816578 : ${CONFIG_H:=config.h}
65826579
65836580 if test -z "$PACKAGE" ; then
6584 { { echo "$as_me:6585: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5
6581 { { echo "$as_me:6582: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&5
65856582 echo "$as_me: error: CF_BUNDLED_INTL used without setting PACKAGE variable" >&2;}
65866583 { (exit 1); exit 1; }; }
65876584 fi
65986595 stdlib.h string.h unistd.h sys/param.h
65996596 do
66006597 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
6601 echo "$as_me:6602: checking for $ac_header" >&5
6598 echo "$as_me:6599: checking for $ac_header" >&5
66026599 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
66036600 if eval "test \"\${$as_ac_Header+set}\" = set"; then
66046601 echo $ECHO_N "(cached) $ECHO_C" >&6
66056602 else
66066603 cat >conftest.$ac_ext <<_ACEOF
6607 #line 6608 "configure"
6604 #line 6605 "configure"
66086605 #include "confdefs.h"
66096606 #include <$ac_header>
66106607 _ACEOF
6611 if { (eval echo "$as_me:6612: \"$ac_cpp conftest.$ac_ext\"") >&5
6608 if { (eval echo "$as_me:6609: \"$ac_cpp conftest.$ac_ext\"") >&5
66126609 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
66136610 ac_status=$?
66146611 egrep -v '^ *\+' conftest.er1 >conftest.err
66156612 rm -f conftest.er1
66166613 cat conftest.err >&5
6617 echo "$as_me:6618: \$? = $ac_status" >&5
6614 echo "$as_me:6615: \$? = $ac_status" >&5
66186615 (exit $ac_status); } >/dev/null; then
66196616 if test -s conftest.err; then
66206617 ac_cpp_err=$ac_c_preproc_warn_flag
66336630 fi
66346631 rm -f conftest.err conftest.$ac_ext
66356632 fi
6636 echo "$as_me:6637: result: `eval echo '${'$as_ac_Header'}'`" >&5
6633 echo "$as_me:6634: result: `eval echo '${'$as_ac_Header'}'`" >&5
66376634 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
66386635 if test `eval echo '${'$as_ac_Header'}'` = yes; then
66396636 cat >>confdefs.h <<EOF
66486645 strdup strtoul tsearch __argz_count __argz_stringify __argz_next
66496646 do
66506647 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
6651 echo "$as_me:6652: checking for $ac_func" >&5
6648 echo "$as_me:6649: checking for $ac_func" >&5
66526649 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
66536650 if eval "test \"\${$as_ac_var+set}\" = set"; then
66546651 echo $ECHO_N "(cached) $ECHO_C" >&6
66556652 else
66566653 cat >conftest.$ac_ext <<_ACEOF
6657 #line 6658 "configure"
6654 #line 6655 "configure"
66586655 #include "confdefs.h"
66596656 /* System header to define __stub macros and hopefully few prototypes,
66606657 which can conflict with char $ac_func (); below. */
66856682 }
66866683 _ACEOF
66876684 rm -f conftest.$ac_objext conftest$ac_exeext
6688 if { (eval echo "$as_me:6689: \"$ac_link\"") >&5
6685 if { (eval echo "$as_me:6686: \"$ac_link\"") >&5
66896686 (eval $ac_link) 2>&5
66906687 ac_status=$?
6691 echo "$as_me:6692: \$? = $ac_status" >&5
6688 echo "$as_me:6689: \$? = $ac_status" >&5
66926689 (exit $ac_status); } &&
66936690 { ac_try='test -s conftest$ac_exeext'
6694 { (eval echo "$as_me:6695: \"$ac_try\"") >&5
6691 { (eval echo "$as_me:6692: \"$ac_try\"") >&5
66956692 (eval $ac_try) 2>&5
66966693 ac_status=$?
6697 echo "$as_me:6698: \$? = $ac_status" >&5
6694 echo "$as_me:6695: \$? = $ac_status" >&5
66986695 (exit $ac_status); }; }; then
66996696 eval "$as_ac_var=yes"
67006697 else
67046701 fi
67056702 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
67066703 fi
6707 echo "$as_me:6708: result: `eval echo '${'$as_ac_var'}'`" >&5
6704 echo "$as_me:6705: result: `eval echo '${'$as_ac_var'}'`" >&5
67086705 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
67096706 if test `eval echo '${'$as_ac_var'}'` = yes; then
67106707 cat >>confdefs.h <<EOF
67526749 cf_save_CPPFLAGS=$CPPFLAGS
67536750 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
67546751 cat >conftest.$ac_ext <<_ACEOF
6755 #line 6756 "configure"
6752 #line 6753 "configure"
67566753 #include "confdefs.h"
67576754 #include <stdio.h>
67586755 int
67646761 }
67656762 _ACEOF
67666763 rm -f conftest.$ac_objext
6767 if { (eval echo "$as_me:6768: \"$ac_compile\"") >&5
6764 if { (eval echo "$as_me:6765: \"$ac_compile\"") >&5
67686765 (eval $ac_compile) 2>&5
67696766 ac_status=$?
6770 echo "$as_me:6771: \$? = $ac_status" >&5
6767 echo "$as_me:6768: \$? = $ac_status" >&5
67716768 (exit $ac_status); } &&
67726769 { ac_try='test -s conftest.$ac_objext'
6773 { (eval echo "$as_me:6774: \"$ac_try\"") >&5
6770 { (eval echo "$as_me:6771: \"$ac_try\"") >&5
67746771 (eval $ac_try) 2>&5
67756772 ac_status=$?
6776 echo "$as_me:6777: \$? = $ac_status" >&5
6773 echo "$as_me:6774: \$? = $ac_status" >&5
67776774 (exit $ac_status); }; }; then
67786775 :
67796776 else
67906787 if test "$cf_have_incdir" = no ; then
67916788 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
67926789
6793 echo "${as_me:-configure}:6794: testing adding $cf_add_incdir to include-path ..." 1>&5
6790 echo "${as_me:-configure}:6791: testing adding $cf_add_incdir to include-path ..." 1>&5
67946791
67956792 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
67966793
68316828 cf_save_CPPFLAGS=$CPPFLAGS
68326829 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
68336830 cat >conftest.$ac_ext <<_ACEOF
6834 #line 6835 "configure"
6831 #line 6832 "configure"
68356832 #include "confdefs.h"
68366833 #include <stdio.h>
68376834 int
68436840 }
68446841 _ACEOF
68456842 rm -f conftest.$ac_objext
6846 if { (eval echo "$as_me:6847: \"$ac_compile\"") >&5
6843 if { (eval echo "$as_me:6844: \"$ac_compile\"") >&5
68476844 (eval $ac_compile) 2>&5
68486845 ac_status=$?
6849 echo "$as_me:6850: \$? = $ac_status" >&5
6846 echo "$as_me:6847: \$? = $ac_status" >&5
68506847 (exit $ac_status); } &&
68516848 { ac_try='test -s conftest.$ac_objext'
6852 { (eval echo "$as_me:6853: \"$ac_try\"") >&5
6849 { (eval echo "$as_me:6850: \"$ac_try\"") >&5
68536850 (eval $ac_try) 2>&5
68546851 ac_status=$?
6855 echo "$as_me:6856: \$? = $ac_status" >&5
6852 echo "$as_me:6853: \$? = $ac_status" >&5
68566853 (exit $ac_status); }; }; then
68576854 :
68586855 else
68696866 if test "$cf_have_incdir" = no ; then
68706867 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
68716868
6872 echo "${as_me:-configure}:6873: testing adding $cf_add_incdir to include-path ..." 1>&5
6869 echo "${as_me:-configure}:6870: testing adding $cf_add_incdir to include-path ..." 1>&5
68736870
68746871 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
68756872
68856882 fi
68866883
68876884 else
6888 { { echo "$as_me:6889: error: cannot find libiconv under $withval" >&5
6885 { { echo "$as_me:6886: error: cannot find libiconv under $withval" >&5
68896886 echo "$as_me: error: cannot find libiconv under $withval" >&2;}
68906887 { (exit 1); exit 1; }; }
68916888 fi
69106907 if test "$cf_have_libdir" = no ; then
69116908 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
69126909
6913 echo "${as_me:-configure}:6914: testing adding $cf_add_libdir to library-path ..." 1>&5
6910 echo "${as_me:-configure}:6911: testing adding $cf_add_libdir to library-path ..." 1>&5
69146911
69156912 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
69166913 fi
69396936 if test "$cf_have_libdir" = no ; then
69406937 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
69416938
6942 echo "${as_me:-configure}:6943: testing adding $cf_add_libdir to library-path ..." 1>&5
6939 echo "${as_me:-configure}:6940: testing adding $cf_add_libdir to library-path ..." 1>&5
69436940
69446941 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
69456942 fi
69486945 fi
69496946
69506947 else
6951 { { echo "$as_me:6952: error: cannot find libiconv under $withval" >&5
6948 { { echo "$as_me:6949: error: cannot find libiconv under $withval" >&5
69526949 echo "$as_me: error: cannot find libiconv under $withval" >&2;}
69536950 { (exit 1); exit 1; }; }
69546951 fi
69596956
69606957 fi;
69616958
6962 echo "$as_me:6963: checking for iconv" >&5
6959 echo "$as_me:6960: checking for iconv" >&5
69636960 echo $ECHO_N "checking for iconv... $ECHO_C" >&6
69646961 if test "${am_cv_func_iconv+set}" = set; then
69656962 echo $ECHO_N "(cached) $ECHO_C" >&6
69706967 cf_cv_header_path_iconv=
69716968 cf_cv_library_path_iconv=
69726969
6973 echo "${as_me:-configure}:6974: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5
6970 echo "${as_me:-configure}:6971: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5
69746971
69756972 cf_save_LIBS="$LIBS"
69766973
69776974 cat >conftest.$ac_ext <<_ACEOF
6978 #line 6979 "configure"
6975 #line 6976 "configure"
69796976 #include "confdefs.h"
69806977
69816978 #include <stdlib.h>
69946991 }
69956992 _ACEOF
69966993 rm -f conftest.$ac_objext conftest$ac_exeext
6997 if { (eval echo "$as_me:6998: \"$ac_link\"") >&5
6994 if { (eval echo "$as_me:6995: \"$ac_link\"") >&5
69986995 (eval $ac_link) 2>&5
69996996 ac_status=$?
7000 echo "$as_me:7001: \$? = $ac_status" >&5
6997 echo "$as_me:6998: \$? = $ac_status" >&5
70016998 (exit $ac_status); } &&
70026999 { ac_try='test -s conftest$ac_exeext'
7003 { (eval echo "$as_me:7004: \"$ac_try\"") >&5
7000 { (eval echo "$as_me:7001: \"$ac_try\"") >&5
70047001 (eval $ac_try) 2>&5
70057002 ac_status=$?
7006 echo "$as_me:7007: \$? = $ac_status" >&5
7003 echo "$as_me:7004: \$? = $ac_status" >&5
70077004 (exit $ac_status); }; }; then
70087005
70097006 cf_cv_find_linkage_iconv=yes
70177014 LIBS="-liconv $cf_save_LIBS"
70187015
70197016 cat >conftest.$ac_ext <<_ACEOF
7020 #line 7021 "configure"
7017 #line 7018 "configure"
70217018 #include "confdefs.h"
70227019
70237020 #include <stdlib.h>
70367033 }
70377034 _ACEOF
70387035 rm -f conftest.$ac_objext conftest$ac_exeext
7039 if { (eval echo "$as_me:7040: \"$ac_link\"") >&5
7036 if { (eval echo "$as_me:7037: \"$ac_link\"") >&5
70407037 (eval $ac_link) 2>&5
70417038 ac_status=$?
7042 echo "$as_me:7043: \$? = $ac_status" >&5
7039 echo "$as_me:7040: \$? = $ac_status" >&5
70437040 (exit $ac_status); } &&
70447041 { ac_try='test -s conftest$ac_exeext'
7045 { (eval echo "$as_me:7046: \"$ac_try\"") >&5
7042 { (eval echo "$as_me:7043: \"$ac_try\"") >&5
70467043 (eval $ac_try) 2>&5
70477044 ac_status=$?
7048 echo "$as_me:7049: \$? = $ac_status" >&5
7045 echo "$as_me:7046: \$? = $ac_status" >&5
70497046 (exit $ac_status); }; }; then
70507047
70517048 cf_cv_find_linkage_iconv=yes
70627059
70637060 test -n "$verbose" && echo " find linkage for iconv library" 1>&6
70647061
7065 echo "${as_me:-configure}:7066: testing find linkage for iconv library ..." 1>&5
7066
7067 echo "${as_me:-configure}:7068: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5
7062 echo "${as_me:-configure}:7063: testing find linkage for iconv library ..." 1>&5
7063
7064 echo "${as_me:-configure}:7065: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5
70687065
70697066 cf_save_CPPFLAGS="$CPPFLAGS"
70707067 cf_test_CPPFLAGS="$CPPFLAGS"
71777174 if test -d $cf_cv_header_path_iconv ; then
71787175 test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6
71797176
7180 echo "${as_me:-configure}:7181: testing ... testing $cf_cv_header_path_iconv ..." 1>&5
7177 echo "${as_me:-configure}:7178: testing ... testing $cf_cv_header_path_iconv ..." 1>&5
71817178
71827179 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv"
71837180 cat >conftest.$ac_ext <<_ACEOF
7184 #line 7185 "configure"
7181 #line 7182 "configure"
71857182 #include "confdefs.h"
71867183
71877184 #include <stdlib.h>
72007197 }
72017198 _ACEOF
72027199 rm -f conftest.$ac_objext
7203 if { (eval echo "$as_me:7204: \"$ac_compile\"") >&5
7200 if { (eval echo "$as_me:7201: \"$ac_compile\"") >&5
72047201 (eval $ac_compile) 2>&5
72057202 ac_status=$?
7206 echo "$as_me:7207: \$? = $ac_status" >&5
7203 echo "$as_me:7204: \$? = $ac_status" >&5
72077204 (exit $ac_status); } &&
72087205 { ac_try='test -s conftest.$ac_objext'
7209 { (eval echo "$as_me:7210: \"$ac_try\"") >&5
7206 { (eval echo "$as_me:7207: \"$ac_try\"") >&5
72107207 (eval $ac_try) 2>&5
72117208 ac_status=$?
7212 echo "$as_me:7213: \$? = $ac_status" >&5
7209 echo "$as_me:7210: \$? = $ac_status" >&5
72137210 (exit $ac_status); }; }; then
72147211
72157212 test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6
72167213
7217 echo "${as_me:-configure}:7218: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5
7214 echo "${as_me:-configure}:7215: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5
72187215
72197216 cf_cv_find_linkage_iconv=maybe
72207217 cf_test_CPPFLAGS="$CPPFLAGS"
72327229
72337230 if test "$cf_cv_find_linkage_iconv" = maybe ; then
72347231
7235 echo "${as_me:-configure}:7236: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5
7232 echo "${as_me:-configure}:7233: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5
72367233
72377234 cf_save_LIBS="$LIBS"
72387235 cf_save_LDFLAGS="$LDFLAGS"
73297326 if test -d $cf_cv_library_path_iconv ; then
73307327 test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6
73317328
7332 echo "${as_me:-configure}:7333: testing ... testing $cf_cv_library_path_iconv ..." 1>&5
7329 echo "${as_me:-configure}:7330: testing ... testing $cf_cv_library_path_iconv ..." 1>&5
73337330
73347331 CPPFLAGS="$cf_test_CPPFLAGS"
73357332 LIBS="-liconv $cf_save_LIBS"
73367333 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv"
73377334 cat >conftest.$ac_ext <<_ACEOF
7338 #line 7339 "configure"
7335 #line 7336 "configure"
73397336 #include "confdefs.h"
73407337
73417338 #include <stdlib.h>
73547351 }
73557352 _ACEOF
73567353 rm -f conftest.$ac_objext conftest$ac_exeext
7357 if { (eval echo "$as_me:7358: \"$ac_link\"") >&5
7354 if { (eval echo "$as_me:7355: \"$ac_link\"") >&5
73587355 (eval $ac_link) 2>&5
73597356 ac_status=$?
7360 echo "$as_me:7361: \$? = $ac_status" >&5
7357 echo "$as_me:7358: \$? = $ac_status" >&5
73617358 (exit $ac_status); } &&
73627359 { ac_try='test -s conftest$ac_exeext'
7363 { (eval echo "$as_me:7364: \"$ac_try\"") >&5
7360 { (eval echo "$as_me:7361: \"$ac_try\"") >&5
73647361 (eval $ac_try) 2>&5
73657362 ac_status=$?
7366 echo "$as_me:7367: \$? = $ac_status" >&5
7363 echo "$as_me:7364: \$? = $ac_status" >&5
73677364 (exit $ac_status); }; }; then
73687365
73697366 test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6
73707367
7371 echo "${as_me:-configure}:7372: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5
7368 echo "${as_me:-configure}:7369: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5
73727369
73737370 cf_cv_find_linkage_iconv=yes
73747371 cf_cv_library_file_iconv="-liconv"
74087405 fi
74097406
74107407 fi
7411 echo "$as_me:7412: result: $am_cv_func_iconv" >&5
7408 echo "$as_me:7409: result: $am_cv_func_iconv" >&5
74127409 echo "${ECHO_T}$am_cv_func_iconv" >&6
74137410
74147411 if test "$am_cv_func_iconv" = yes; then
74177414 #define HAVE_ICONV 1
74187415 EOF
74197416
7420 echo "$as_me:7421: checking if the declaration of iconv() needs const." >&5
7417 echo "$as_me:7418: checking if the declaration of iconv() needs const." >&5
74217418 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6
74227419 if test "${am_cv_proto_iconv_const+set}" = set; then
74237420 echo $ECHO_N "(cached) $ECHO_C" >&6
74247421 else
74257422
74267423 cat >conftest.$ac_ext <<_ACEOF
7427 #line 7428 "configure"
7424 #line 7425 "configure"
74287425 #include "confdefs.h"
74297426
74307427 #include <stdlib.h>
74497446 }
74507447 _ACEOF
74517448 rm -f conftest.$ac_objext
7452 if { (eval echo "$as_me:7453: \"$ac_compile\"") >&5
7449 if { (eval echo "$as_me:7450: \"$ac_compile\"") >&5
74537450 (eval $ac_compile) 2>&5
74547451 ac_status=$?
7455 echo "$as_me:7456: \$? = $ac_status" >&5
7452 echo "$as_me:7453: \$? = $ac_status" >&5
74567453 (exit $ac_status); } &&
74577454 { ac_try='test -s conftest.$ac_objext'
7458 { (eval echo "$as_me:7459: \"$ac_try\"") >&5
7455 { (eval echo "$as_me:7456: \"$ac_try\"") >&5
74597456 (eval $ac_try) 2>&5
74607457 ac_status=$?
7461 echo "$as_me:7462: \$? = $ac_status" >&5
7458 echo "$as_me:7459: \$? = $ac_status" >&5
74627459 (exit $ac_status); }; }; then
74637460 am_cv_proto_iconv_const=no
74647461 else
74687465 fi
74697466 rm -f conftest.$ac_objext conftest.$ac_ext
74707467 fi
7471 echo "$as_me:7472: result: $am_cv_proto_iconv_const" >&5
7468 echo "$as_me:7469: result: $am_cv_proto_iconv_const" >&5
74727469 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6
74737470
74747471 if test "$am_cv_proto_iconv_const" = yes ; then
75107507 cf_save_CPPFLAGS=$CPPFLAGS
75117508 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
75127509 cat >conftest.$ac_ext <<_ACEOF
7513 #line 7514 "configure"
7510 #line 7511 "configure"
75147511 #include "confdefs.h"
75157512 #include <stdio.h>
75167513 int
75227519 }
75237520 _ACEOF
75247521 rm -f conftest.$ac_objext
7525 if { (eval echo "$as_me:7526: \"$ac_compile\"") >&5
7522 if { (eval echo "$as_me:7523: \"$ac_compile\"") >&5
75267523 (eval $ac_compile) 2>&5
75277524 ac_status=$?
7528 echo "$as_me:7529: \$? = $ac_status" >&5
7525 echo "$as_me:7526: \$? = $ac_status" >&5
75297526 (exit $ac_status); } &&
75307527 { ac_try='test -s conftest.$ac_objext'
7531 { (eval echo "$as_me:7532: \"$ac_try\"") >&5
7528 { (eval echo "$as_me:7529: \"$ac_try\"") >&5
75327529 (eval $ac_try) 2>&5
75337530 ac_status=$?
7534 echo "$as_me:7535: \$? = $ac_status" >&5
7531 echo "$as_me:7532: \$? = $ac_status" >&5
75357532 (exit $ac_status); }; }; then
75367533 :
75377534 else
75487545 if test "$cf_have_incdir" = no ; then
75497546 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
75507547
7551 echo "${as_me:-configure}:7552: testing adding $cf_add_incdir to include-path ..." 1>&5
7548 echo "${as_me:-configure}:7549: testing adding $cf_add_incdir to include-path ..." 1>&5
75527549
75537550 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
75547551
75857582 if test "$cf_have_libdir" = no ; then
75867583 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
75877584
7588 echo "${as_me:-configure}:7589: testing adding $cf_add_libdir to library-path ..." 1>&5
7585 echo "${as_me:-configure}:7586: testing adding $cf_add_libdir to library-path ..." 1>&5
75897586
75907587 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
75917588 fi
75967593 fi
75977594 fi
75987595
7599 echo "$as_me:7600: checking for nl_langinfo and CODESET" >&5
7596 echo "$as_me:7597: checking for nl_langinfo and CODESET" >&5
76007597 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
76017598 if test "${am_cv_langinfo_codeset+set}" = set; then
76027599 echo $ECHO_N "(cached) $ECHO_C" >&6
76037600 else
76047601 cat >conftest.$ac_ext <<_ACEOF
7605 #line 7606 "configure"
7602 #line 7603 "configure"
76067603 #include "confdefs.h"
76077604 #include <langinfo.h>
76087605 int
76147611 }
76157612 _ACEOF
76167613 rm -f conftest.$ac_objext conftest$ac_exeext
7617 if { (eval echo "$as_me:7618: \"$ac_link\"") >&5
7614 if { (eval echo "$as_me:7615: \"$ac_link\"") >&5
76187615 (eval $ac_link) 2>&5
76197616 ac_status=$?
7620 echo "$as_me:7621: \$? = $ac_status" >&5
7617 echo "$as_me:7618: \$? = $ac_status" >&5
76217618 (exit $ac_status); } &&
76227619 { ac_try='test -s conftest$ac_exeext'
7623 { (eval echo "$as_me:7624: \"$ac_try\"") >&5
7620 { (eval echo "$as_me:7621: \"$ac_try\"") >&5
76247621 (eval $ac_try) 2>&5
76257622 ac_status=$?
7626 echo "$as_me:7627: \$? = $ac_status" >&5
7623 echo "$as_me:7624: \$? = $ac_status" >&5
76277624 (exit $ac_status); }; }; then
76287625 am_cv_langinfo_codeset=yes
76297626 else
76347631 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
76357632
76367633 fi
7637 echo "$as_me:7638: result: $am_cv_langinfo_codeset" >&5
7634 echo "$as_me:7635: result: $am_cv_langinfo_codeset" >&5
76387635 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
76397636 if test $am_cv_langinfo_codeset = yes; then
76407637
76457642 fi
76467643
76477644 if test $ac_cv_header_locale_h = yes; then
7648 echo "$as_me:7649: checking for LC_MESSAGES" >&5
7645 echo "$as_me:7646: checking for LC_MESSAGES" >&5
76497646 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6
76507647 if test "${am_cv_val_LC_MESSAGES+set}" = set; then
76517648 echo $ECHO_N "(cached) $ECHO_C" >&6
76527649 else
76537650 cat >conftest.$ac_ext <<_ACEOF
7654 #line 7655 "configure"
7651 #line 7652 "configure"
76557652 #include "confdefs.h"
76567653 #include <locale.h>
76577654 int
76637660 }
76647661 _ACEOF
76657662 rm -f conftest.$ac_objext conftest$ac_exeext
7666 if { (eval echo "$as_me:7667: \"$ac_link\"") >&5
7663 if { (eval echo "$as_me:7664: \"$ac_link\"") >&5
76677664 (eval $ac_link) 2>&5
76687665 ac_status=$?
7669 echo "$as_me:7670: \$? = $ac_status" >&5
7666 echo "$as_me:7667: \$? = $ac_status" >&5
76707667 (exit $ac_status); } &&
76717668 { ac_try='test -s conftest$ac_exeext'
7672 { (eval echo "$as_me:7673: \"$ac_try\"") >&5
7669 { (eval echo "$as_me:7670: \"$ac_try\"") >&5
76737670 (eval $ac_try) 2>&5
76747671 ac_status=$?
7675 echo "$as_me:7676: \$? = $ac_status" >&5
7672 echo "$as_me:7673: \$? = $ac_status" >&5
76767673 (exit $ac_status); }; }; then
76777674 am_cv_val_LC_MESSAGES=yes
76787675 else
76827679 fi
76837680 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
76847681 fi
7685 echo "$as_me:7686: result: $am_cv_val_LC_MESSAGES" >&5
7682 echo "$as_me:7683: result: $am_cv_val_LC_MESSAGES" >&5
76867683 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6
76877684 if test $am_cv_val_LC_MESSAGES = yes; then
76887685
76927689
76937690 fi
76947691 fi
7695 echo "$as_me:7696: checking whether NLS is requested" >&5
7692 echo "$as_me:7693: checking whether NLS is requested" >&5
76967693 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
76977694
76987695 # Check whether --enable-nls or --disable-nls was given.
77027699 else
77037700 USE_NLS=no
77047701 fi;
7705 echo "$as_me:7706: result: $USE_NLS" >&5
7702 echo "$as_me:7703: result: $USE_NLS" >&5
77067703 echo "${ECHO_T}$USE_NLS" >&6
77077704
77087705 BUILD_INCLUDED_LIBINTL=no
77157712 #define ENABLE_NLS 1
77167713 EOF
77177714
7718 echo "$as_me:7719: checking whether included gettext is requested" >&5
7715 echo "$as_me:7716: checking whether included gettext is requested" >&5
77197716 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6
77207717
77217718 # Check whether --with-included-gettext or --without-included-gettext was given.
77257722 else
77267723 nls_cv_force_use_gnu_gettext=no
77277724 fi;
7728 echo "$as_me:7729: result: $nls_cv_force_use_gnu_gettext" >&5
7725 echo "$as_me:7726: result: $nls_cv_force_use_gnu_gettext" >&5
77297726 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6
77307727
77317728 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
77347731
77357732 cf_save_LIBS_1="$LIBS"
77367733 LIBS="$LIBICONV $LIBS"
7737 echo "$as_me:7738: checking for libintl.h and gettext()" >&5
7734 echo "$as_me:7735: checking for libintl.h and gettext()" >&5
77387735 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6
77397736 if test "${cf_cv_func_gettext+set}" = set; then
77407737 echo $ECHO_N "(cached) $ECHO_C" >&6
77457742 cf_cv_header_path_intl=
77467743 cf_cv_library_path_intl=
77477744
7748 echo "${as_me:-configure}:7749: testing Starting FIND_LINKAGE(intl,) ..." 1>&5
7745 echo "${as_me:-configure}:7746: testing Starting FIND_LINKAGE(intl,) ..." 1>&5
77497746
77507747 cf_save_LIBS="$LIBS"
77517748
77527749 cat >conftest.$ac_ext <<_ACEOF
7753 #line 7754 "configure"
7750 #line 7751 "configure"
77547751 #include "confdefs.h"
77557752
77567753 #include <libintl.h>
77707767 }
77717768 _ACEOF
77727769 rm -f conftest.$ac_objext conftest$ac_exeext
7773 if { (eval echo "$as_me:7774: \"$ac_link\"") >&5
7770 if { (eval echo "$as_me:7771: \"$ac_link\"") >&5
77747771 (eval $ac_link) 2>&5
77757772 ac_status=$?
7776 echo "$as_me:7777: \$? = $ac_status" >&5
7773 echo "$as_me:7774: \$? = $ac_status" >&5
77777774 (exit $ac_status); } &&
77787775 { ac_try='test -s conftest$ac_exeext'
7779 { (eval echo "$as_me:7780: \"$ac_try\"") >&5
7776 { (eval echo "$as_me:7777: \"$ac_try\"") >&5
77807777 (eval $ac_try) 2>&5
77817778 ac_status=$?
7782 echo "$as_me:7783: \$? = $ac_status" >&5
7779 echo "$as_me:7780: \$? = $ac_status" >&5
77837780 (exit $ac_status); }; }; then
77847781
77857782 cf_cv_find_linkage_intl=yes
77937790 LIBS="-lintl $cf_save_LIBS"
77947791
77957792 cat >conftest.$ac_ext <<_ACEOF
7796 #line 7797 "configure"
7793 #line 7794 "configure"
77977794 #include "confdefs.h"
77987795
77997796 #include <libintl.h>
78137810 }
78147811 _ACEOF
78157812 rm -f conftest.$ac_objext conftest$ac_exeext
7816 if { (eval echo "$as_me:7817: \"$ac_link\"") >&5
7813 if { (eval echo "$as_me:7814: \"$ac_link\"") >&5
78177814 (eval $ac_link) 2>&5
78187815 ac_status=$?
7819 echo "$as_me:7820: \$? = $ac_status" >&5
7816 echo "$as_me:7817: \$? = $ac_status" >&5
78207817 (exit $ac_status); } &&
78217818 { ac_try='test -s conftest$ac_exeext'
7822 { (eval echo "$as_me:7823: \"$ac_try\"") >&5
7819 { (eval echo "$as_me:7820: \"$ac_try\"") >&5
78237820 (eval $ac_try) 2>&5
78247821 ac_status=$?
7825 echo "$as_me:7826: \$? = $ac_status" >&5
7822 echo "$as_me:7823: \$? = $ac_status" >&5
78267823 (exit $ac_status); }; }; then
78277824
78287825 cf_cv_find_linkage_intl=yes
78397836
78407837 test -n "$verbose" && echo " find linkage for intl library" 1>&6
78417838
7842 echo "${as_me:-configure}:7843: testing find linkage for intl library ..." 1>&5
7843
7844 echo "${as_me:-configure}:7845: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5
7839 echo "${as_me:-configure}:7840: testing find linkage for intl library ..." 1>&5
7840
7841 echo "${as_me:-configure}:7842: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5
78457842
78467843 cf_save_CPPFLAGS="$CPPFLAGS"
78477844 cf_test_CPPFLAGS="$CPPFLAGS"
79547951 if test -d $cf_cv_header_path_intl ; then
79557952 test -n "$verbose" && echo " ... testing $cf_cv_header_path_intl" 1>&6
79567953
7957 echo "${as_me:-configure}:7958: testing ... testing $cf_cv_header_path_intl ..." 1>&5
7954 echo "${as_me:-configure}:7955: testing ... testing $cf_cv_header_path_intl ..." 1>&5
79587955
79597956 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_intl"
79607957 cat >conftest.$ac_ext <<_ACEOF
7961 #line 7962 "configure"
7958 #line 7959 "configure"
79627959 #include "confdefs.h"
79637960
79647961 #include <libintl.h>
79787975 }
79797976 _ACEOF
79807977 rm -f conftest.$ac_objext
7981 if { (eval echo "$as_me:7982: \"$ac_compile\"") >&5
7978 if { (eval echo "$as_me:7979: \"$ac_compile\"") >&5
79827979 (eval $ac_compile) 2>&5
79837980 ac_status=$?
7984 echo "$as_me:7985: \$? = $ac_status" >&5
7981 echo "$as_me:7982: \$? = $ac_status" >&5
79857982 (exit $ac_status); } &&
79867983 { ac_try='test -s conftest.$ac_objext'
7987 { (eval echo "$as_me:7988: \"$ac_try\"") >&5
7984 { (eval echo "$as_me:7985: \"$ac_try\"") >&5
79887985 (eval $ac_try) 2>&5
79897986 ac_status=$?
7990 echo "$as_me:7991: \$? = $ac_status" >&5
7987 echo "$as_me:7988: \$? = $ac_status" >&5
79917988 (exit $ac_status); }; }; then
79927989
79937990 test -n "$verbose" && echo " ... found intl headers in $cf_cv_header_path_intl" 1>&6
79947991
7995 echo "${as_me:-configure}:7996: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5
7992 echo "${as_me:-configure}:7993: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5
79967993
79977994 cf_cv_find_linkage_intl=maybe
79987995 cf_test_CPPFLAGS="$CPPFLAGS"
80108007
80118008 if test "$cf_cv_find_linkage_intl" = maybe ; then
80128009
8013 echo "${as_me:-configure}:8014: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5
8010 echo "${as_me:-configure}:8011: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5
80148011
80158012 cf_save_LIBS="$LIBS"
80168013 cf_save_LDFLAGS="$LDFLAGS"
81078104 if test -d $cf_cv_library_path_intl ; then
81088105 test -n "$verbose" && echo " ... testing $cf_cv_library_path_intl" 1>&6
81098106
8110 echo "${as_me:-configure}:8111: testing ... testing $cf_cv_library_path_intl ..." 1>&5
8107 echo "${as_me:-configure}:8108: testing ... testing $cf_cv_library_path_intl ..." 1>&5
81118108
81128109 CPPFLAGS="$cf_test_CPPFLAGS"
81138110 LIBS="-lintl $cf_save_LIBS"
81148111 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_intl"
81158112 cat >conftest.$ac_ext <<_ACEOF
8116 #line 8117 "configure"
8113 #line 8114 "configure"
81178114 #include "confdefs.h"
81188115
81198116 #include <libintl.h>
81338130 }
81348131 _ACEOF
81358132 rm -f conftest.$ac_objext conftest$ac_exeext
8136 if { (eval echo "$as_me:8137: \"$ac_link\"") >&5
8133 if { (eval echo "$as_me:8134: \"$ac_link\"") >&5
81378134 (eval $ac_link) 2>&5
81388135 ac_status=$?
8139 echo "$as_me:8140: \$? = $ac_status" >&5
8136 echo "$as_me:8137: \$? = $ac_status" >&5
81408137 (exit $ac_status); } &&
81418138 { ac_try='test -s conftest$ac_exeext'
8142 { (eval echo "$as_me:8143: \"$ac_try\"") >&5
8139 { (eval echo "$as_me:8140: \"$ac_try\"") >&5
81438140 (eval $ac_try) 2>&5
81448141 ac_status=$?
8145 echo "$as_me:8146: \$? = $ac_status" >&5
8142 echo "$as_me:8143: \$? = $ac_status" >&5
81468143 (exit $ac_status); }; }; then
81478144
81488145 test -n "$verbose" && echo " ... found intl library in $cf_cv_library_path_intl" 1>&6
81498146
8150 echo "${as_me:-configure}:8151: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5
8147 echo "${as_me:-configure}:8148: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5
81518148
81528149 cf_cv_find_linkage_intl=yes
81538150 cf_cv_library_file_intl="-lintl"
81878184 fi
81888185
81898186 fi
8190 echo "$as_me:8191: result: $cf_cv_func_gettext" >&5
8187 echo "$as_me:8188: result: $cf_cv_func_gettext" >&5
81918188 echo "${ECHO_T}$cf_cv_func_gettext" >&6
81928189 LIBS="$cf_save_LIBS_1"
81938190
82278224 cf_save_CPPFLAGS=$CPPFLAGS
82288225 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
82298226 cat >conftest.$ac_ext <<_ACEOF
8230 #line 8231 "configure"
8227 #line 8228 "configure"
82318228 #include "confdefs.h"
82328229 #include <stdio.h>
82338230 int
82398236 }
82408237 _ACEOF
82418238 rm -f conftest.$ac_objext
8242 if { (eval echo "$as_me:8243: \"$ac_compile\"") >&5
8239 if { (eval echo "$as_me:8240: \"$ac_compile\"") >&5
82438240 (eval $ac_compile) 2>&5
82448241 ac_status=$?
8245 echo "$as_me:8246: \$? = $ac_status" >&5
8242 echo "$as_me:8243: \$? = $ac_status" >&5
82468243 (exit $ac_status); } &&
82478244 { ac_try='test -s conftest.$ac_objext'
8248 { (eval echo "$as_me:8249: \"$ac_try\"") >&5
8245 { (eval echo "$as_me:8246: \"$ac_try\"") >&5
82498246 (eval $ac_try) 2>&5
82508247 ac_status=$?
8251 echo "$as_me:8252: \$? = $ac_status" >&5
8248 echo "$as_me:8249: \$? = $ac_status" >&5
82528249 (exit $ac_status); }; }; then
82538250 :
82548251 else
82658262 if test "$cf_have_incdir" = no ; then
82668263 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
82678264
8268 echo "${as_me:-configure}:8269: testing adding $cf_add_incdir to include-path ..." 1>&5
8265 echo "${as_me:-configure}:8266: testing adding $cf_add_incdir to include-path ..." 1>&5
82698266
82708267 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
82718268
83028299 if test "$cf_have_libdir" = no ; then
83038300 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
83048301
8305 echo "${as_me:-configure}:8306: testing adding $cf_add_libdir to library-path ..." 1>&5
8302 echo "${as_me:-configure}:8303: testing adding $cf_add_libdir to library-path ..." 1>&5
83068303
83078304 INTLLIBS="-L$cf_add_libdir $INTLLIBS"
83088305 fi
83188315 for ac_func in dcgettext
83198316 do
83208317 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
8321 echo "$as_me:8322: checking for $ac_func" >&5
8318 echo "$as_me:8319: checking for $ac_func" >&5
83228319 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
83238320 if eval "test \"\${$as_ac_var+set}\" = set"; then
83248321 echo $ECHO_N "(cached) $ECHO_C" >&6
83258322 else
83268323 cat >conftest.$ac_ext <<_ACEOF
8327 #line 8328 "configure"
8324 #line 8325 "configure"
83288325 #include "confdefs.h"
83298326 /* System header to define __stub macros and hopefully few prototypes,
83308327 which can conflict with char $ac_func (); below. */
83558352 }
83568353 _ACEOF
83578354 rm -f conftest.$ac_objext conftest$ac_exeext
8358 if { (eval echo "$as_me:8359: \"$ac_link\"") >&5
8355 if { (eval echo "$as_me:8356: \"$ac_link\"") >&5
83598356 (eval $ac_link) 2>&5
83608357 ac_status=$?
8361 echo "$as_me:8362: \$? = $ac_status" >&5
8358 echo "$as_me:8359: \$? = $ac_status" >&5
83628359 (exit $ac_status); } &&
83638360 { ac_try='test -s conftest$ac_exeext'
8364 { (eval echo "$as_me:8365: \"$ac_try\"") >&5
8361 { (eval echo "$as_me:8362: \"$ac_try\"") >&5
83658362 (eval $ac_try) 2>&5
83668363 ac_status=$?
8367 echo "$as_me:8368: \$? = $ac_status" >&5
8364 echo "$as_me:8365: \$? = $ac_status" >&5
83688365 (exit $ac_status); }; }; then
83698366 eval "$as_ac_var=yes"
83708367 else
83748371 fi
83758372 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
83768373 fi
8377 echo "$as_me:8378: result: `eval echo '${'$as_ac_var'}'`" >&5
8374 echo "$as_me:8375: result: `eval echo '${'$as_ac_var'}'`" >&5
83788375 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
83798376 if test `eval echo '${'$as_ac_var'}'` = yes; then
83808377 cat >>confdefs.h <<EOF
83898386 # Extract the first word of "msgfmt", so it can be a program name with args.
83908387
83918388 set dummy msgfmt; ac_word=$2
8392 echo "$as_me:8393: checking for $ac_word" >&5
8389 echo "$as_me:8390: checking for $ac_word" >&5
83938390 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
83948391 if test "${ac_cv_path_MSGFMT+set}" = set; then
83958392 echo $ECHO_N "(cached) $ECHO_C" >&6
84168413 fi
84178414 MSGFMT="$ac_cv_path_MSGFMT"
84188415 if test "$MSGFMT" != ":"; then
8419 echo "$as_me:8420: result: $MSGFMT" >&5
8416 echo "$as_me:8417: result: $MSGFMT" >&5
84208417 echo "${ECHO_T}$MSGFMT" >&6
84218418 else
8422 echo "$as_me:8423: result: no" >&5
8419 echo "$as_me:8420: result: no" >&5
84238420 echo "${ECHO_T}no" >&6
84248421 fi
84258422
84268423 # Extract the first word of "gmsgfmt", so it can be a program name with args.
84278424 set dummy gmsgfmt; ac_word=$2
8428 echo "$as_me:8429: checking for $ac_word" >&5
8425 echo "$as_me:8426: checking for $ac_word" >&5
84298426 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
84308427 if test "${ac_cv_path_GMSGFMT+set}" = set; then
84318428 echo $ECHO_N "(cached) $ECHO_C" >&6
84428439 test -z "$ac_dir" && ac_dir=.
84438440 if $as_executable_p "$ac_dir/$ac_word"; then
84448441 ac_cv_path_GMSGFMT="$ac_dir/$ac_word"
8445 echo "$as_me:8446: found $ac_dir/$ac_word" >&5
8442 echo "$as_me:8443: found $ac_dir/$ac_word" >&5
84468443 break
84478444 fi
84488445 done
84548451 GMSGFMT=$ac_cv_path_GMSGFMT
84558452
84568453 if test -n "$GMSGFMT"; then
8457 echo "$as_me:8458: result: $GMSGFMT" >&5
8454 echo "$as_me:8455: result: $GMSGFMT" >&5
84588455 echo "${ECHO_T}$GMSGFMT" >&6
84598456 else
8460 echo "$as_me:8461: result: no" >&5
8457 echo "$as_me:8458: result: no" >&5
84618458 echo "${ECHO_T}no" >&6
84628459 fi
84638460
84648461 # Extract the first word of "xgettext", so it can be a program name with args.
84658462
84668463 set dummy xgettext; ac_word=$2
8467 echo "$as_me:8468: checking for $ac_word" >&5
8464 echo "$as_me:8465: checking for $ac_word" >&5
84688465 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
84698466 if test "${ac_cv_path_XGETTEXT+set}" = set; then
84708467 echo $ECHO_N "(cached) $ECHO_C" >&6
84918488 fi
84928489 XGETTEXT="$ac_cv_path_XGETTEXT"
84938490 if test "$XGETTEXT" != ":"; then
8494 echo "$as_me:8495: result: $XGETTEXT" >&5
8491 echo "$as_me:8492: result: $XGETTEXT" >&5
84958492 echo "${ECHO_T}$XGETTEXT" >&6
84968493 else
8497 echo "$as_me:8498: result: no" >&5
8494 echo "$as_me:8495: result: no" >&5
84988495 echo "${ECHO_T}no" >&6
84998496 fi
85008497
85098506
85108507 if test "$nls_cv_use_gnu_gettext" = "yes"; then
85118508 if test ! -d $srcdir/intl ; then
8512 { { echo "$as_me:8513: error: no NLS library is packaged with this application" >&5
8509 { { echo "$as_me:8510: error: no NLS library is packaged with this application" >&5
85138510 echo "$as_me: error: no NLS library is packaged with this application" >&2;}
85148511 { (exit 1); exit 1; }; }
85158512 fi
85178514 # Extract the first word of "msgfmt", so it can be a program name with args.
85188515
85198516 set dummy msgfmt; ac_word=$2
8520 echo "$as_me:8521: checking for $ac_word" >&5
8517 echo "$as_me:8518: checking for $ac_word" >&5
85218518 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
85228519 if test "${ac_cv_path_MSGFMT+set}" = set; then
85238520 echo $ECHO_N "(cached) $ECHO_C" >&6
85448541 fi
85458542 MSGFMT="$ac_cv_path_MSGFMT"
85468543 if test "$MSGFMT" != ":"; then
8547 echo "$as_me:8548: result: $MSGFMT" >&5
8544 echo "$as_me:8545: result: $MSGFMT" >&5
85488545 echo "${ECHO_T}$MSGFMT" >&6
85498546 else
8550 echo "$as_me:8551: result: no" >&5
8547 echo "$as_me:8548: result: no" >&5
85518548 echo "${ECHO_T}no" >&6
85528549 fi
85538550
85548551 # Extract the first word of "gmsgfmt", so it can be a program name with args.
85558552 set dummy gmsgfmt; ac_word=$2
8556 echo "$as_me:8557: checking for $ac_word" >&5
8553 echo "$as_me:8554: checking for $ac_word" >&5
85578554 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
85588555 if test "${ac_cv_path_GMSGFMT+set}" = set; then
85598556 echo $ECHO_N "(cached) $ECHO_C" >&6
85708567 test -z "$ac_dir" && ac_dir=.
85718568 if $as_executable_p "$ac_dir/$ac_word"; then
85728569 ac_cv_path_GMSGFMT="$ac_dir/$ac_word"
8573 echo "$as_me:8574: found $ac_dir/$ac_word" >&5
8570 echo "$as_me:8571: found $ac_dir/$ac_word" >&5
85748571 break
85758572 fi
85768573 done
85828579 GMSGFMT=$ac_cv_path_GMSGFMT
85838580
85848581 if test -n "$GMSGFMT"; then
8585 echo "$as_me:8586: result: $GMSGFMT" >&5
8582 echo "$as_me:8583: result: $GMSGFMT" >&5
85868583 echo "${ECHO_T}$GMSGFMT" >&6
85878584 else
8588 echo "$as_me:8589: result: no" >&5
8585 echo "$as_me:8586: result: no" >&5
85898586 echo "${ECHO_T}no" >&6
85908587 fi
85918588
85928589 # Extract the first word of "xgettext", so it can be a program name with args.
85938590
85948591 set dummy xgettext; ac_word=$2
8595 echo "$as_me:8596: checking for $ac_word" >&5
8592 echo "$as_me:8593: checking for $ac_word" >&5
85968593 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
85978594 if test "${ac_cv_path_XGETTEXT+set}" = set; then
85988595 echo $ECHO_N "(cached) $ECHO_C" >&6
86198616 fi
86208617 XGETTEXT="$ac_cv_path_XGETTEXT"
86218618 if test "$XGETTEXT" != ":"; then
8622 echo "$as_me:8623: result: $XGETTEXT" >&5
8619 echo "$as_me:8620: result: $XGETTEXT" >&5
86238620 echo "${ECHO_T}$XGETTEXT" >&6
86248621 else
8625 echo "$as_me:8626: result: no" >&5
8622 echo "$as_me:8623: result: no" >&5
86268623 echo "${ECHO_T}no" >&6
86278624 fi
86288625
86378634 if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then
86388635 : ;
86398636 else
8640 echo "$as_me:8641: result: found msgfmt program is not GNU msgfmt; ignore it" >&5
8637 echo "$as_me:8638: result: found msgfmt program is not GNU msgfmt; ignore it" >&5
86418638 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6
86428639 GMSGFMT=":"
86438640 fi
86478644 if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then
86488645 : ;
86498646 else
8650 echo "$as_me:8651: result: found xgettext program is not GNU xgettext; ignore it" >&5
8647 echo "$as_me:8648: result: found xgettext program is not GNU xgettext; ignore it" >&5
86518648 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
86528649 XGETTEXT=":"
86538650 fi
86678664 do
86688665 # Extract the first word of "$ac_prog", so it can be a program name with args.
86698666 set dummy $ac_prog; ac_word=$2
8670 echo "$as_me:8671: checking for $ac_word" >&5
8667 echo "$as_me:8668: checking for $ac_word" >&5
86718668 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
86728669 if test "${ac_cv_prog_INTLBISON+set}" = set; then
86738670 echo $ECHO_N "(cached) $ECHO_C" >&6
86828679 test -z "$ac_dir" && ac_dir=.
86838680 $as_executable_p "$ac_dir/$ac_word" || continue
86848681 ac_cv_prog_INTLBISON="$ac_prog"
8685 echo "$as_me:8686: found $ac_dir/$ac_word" >&5
8682 echo "$as_me:8683: found $ac_dir/$ac_word" >&5
86868683 break
86878684 done
86888685
86908687 fi
86918688 INTLBISON=$ac_cv_prog_INTLBISON
86928689 if test -n "$INTLBISON"; then
8693 echo "$as_me:8694: result: $INTLBISON" >&5
8690 echo "$as_me:8691: result: $INTLBISON" >&5
86948691 echo "${ECHO_T}$INTLBISON" >&6
86958692 else
8696 echo "$as_me:8697: result: no" >&5
8693 echo "$as_me:8694: result: no" >&5
86978694 echo "${ECHO_T}no" >&6
86988695 fi
86998696
87038700 if test -z "$INTLBISON"; then
87048701 ac_verc_fail=yes
87058702 else
8706 echo "$as_me:8707: checking version of bison" >&5
8703 echo "$as_me:8704: checking version of bison" >&5
87078704 echo $ECHO_N "checking version of bison... $ECHO_C" >&6
87088705 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
87098706 case $ac_prog_version in
87128709 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
87138710 *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
87148711 esac
8715 echo "$as_me:8716: result: $ac_prog_version" >&5
8712 echo "$as_me:8713: result: $ac_prog_version" >&5
87168713 echo "${ECHO_T}$ac_prog_version" >&6
87178714 fi
87188715 if test $ac_verc_fail = yes; then
87388735 if test "x$ALL_LINGUAS" = "x"; then
87398736 LINGUAS=
87408737 else
8741 echo "$as_me:8742: checking for catalogs to be installed" >&5
8738 echo "$as_me:8739: checking for catalogs to be installed" >&5
87428739 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
87438740 NEW_LINGUAS=
87448741 for presentlang in $ALL_LINGUAS; do
87588755 fi
87598756 done
87608757 LINGUAS=$NEW_LINGUAS
8761 echo "$as_me:8762: result: $LINGUAS" >&5
8758 echo "$as_me:8759: result: $LINGUAS" >&5
87628759 echo "${ECHO_T}$LINGUAS" >&6
87638760 fi
87648761
87948791 use_our_messages=no
87958792 if test "$USE_NLS" = yes ; then
87968793 if test -d $srcdir/po ; then
8797 echo "$as_me:8798: checking if we should use included message-library" >&5
8794 echo "$as_me:8795: checking if we should use included message-library" >&5
87988795 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6
87998796
88008797 # Check whether --enable-included-msgs or --disable-included-msgs was given.
88058802 use_our_messages=yes
88068803 fi;
88078804 fi
8808 echo "$as_me:8809: result: $use_our_messages" >&5
8805 echo "$as_me:8806: result: $use_our_messages" >&5
88098806 echo "${ECHO_T}$use_our_messages" >&6
88108807 fi
88118808
88478844 for ac_header in libintl.h
88488845 do
88498846 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
8850 echo "$as_me:8851: checking for $ac_header" >&5
8847 echo "$as_me:8848: checking for $ac_header" >&5
88518848 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
88528849 if eval "test \"\${$as_ac_Header+set}\" = set"; then
88538850 echo $ECHO_N "(cached) $ECHO_C" >&6
88548851 else
88558852 cat >conftest.$ac_ext <<_ACEOF
8856 #line 8857 "configure"
8853 #line 8854 "configure"
88578854 #include "confdefs.h"
88588855 #include <$ac_header>
88598856 _ACEOF
8860 if { (eval echo "$as_me:8861: \"$ac_cpp conftest.$ac_ext\"") >&5
8857 if { (eval echo "$as_me:8858: \"$ac_cpp conftest.$ac_ext\"") >&5
88618858 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
88628859 ac_status=$?
88638860 egrep -v '^ *\+' conftest.er1 >conftest.err
88648861 rm -f conftest.er1
88658862 cat conftest.err >&5
8866 echo "$as_me:8867: \$? = $ac_status" >&5
8863 echo "$as_me:8864: \$? = $ac_status" >&5
88678864 (exit $ac_status); } >/dev/null; then
88688865 if test -s conftest.err; then
88698866 ac_cpp_err=$ac_c_preproc_warn_flag
88828879 fi
88838880 rm -f conftest.err conftest.$ac_ext
88848881 fi
8885 echo "$as_me:8886: result: `eval echo '${'$as_ac_Header'}'`" >&5
8882 echo "$as_me:8883: result: `eval echo '${'$as_ac_Header'}'`" >&5
88868883 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
88878884 if test `eval echo '${'$as_ac_Header'}'` = yes; then
88888885 cat >>confdefs.h <<EOF
89688965 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
89698966 ;;
89708967 *)
8971 { { echo "$as_me:8972: error: expected a pathname, not \"$withval\"" >&5
8968 { { echo "$as_me:8969: error: expected a pathname, not \"$withval\"" >&5
89728969 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
89738970 { (exit 1); exit 1; }; }
89748971 ;;
89778974 fi
89788975 eval NLS_DATADIR="$withval"
89798976
8980 echo "$as_me:8981: checking if you want full utility pathnames" >&5
8977 echo "$as_me:8978: checking if you want full utility pathnames" >&5
89818978 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6
89828979
89838980 # Check whether --enable-full-paths or --disable-full-paths was given.
89948991 with_full_paths=yes
89958992
89968993 fi;
8997 echo "$as_me:8998: result: $with_full_paths" >&5
8994 echo "$as_me:8995: result: $with_full_paths" >&5
89988995 echo "${ECHO_T}$with_full_paths" >&6
89998996 test $with_full_paths = no &&
90008997 cat >>confdefs.h <<\EOF
90018998 #define USE_EXECVP 1
90028999 EOF
90039000
9004 echo "$as_me:9005: checking for system mailer" >&5
9001 echo "$as_me:9002: checking for system mailer" >&5
90059002 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6
90069003 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then
90079004 echo $ECHO_N "(cached) $ECHO_C" >&6
90219018
90229019 fi
90239020
9024 echo "$as_me:9025: result: $cf_cv_SYSTEM_MAIL" >&5
9021 echo "$as_me:9022: result: $cf_cv_SYSTEM_MAIL" >&5
90259022 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6
90269023
90279024 cat >>confdefs.h <<EOF
90289025 #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL"
90299026 EOF
90309027
9031 echo "$as_me:9032: checking system mail flags" >&5
9028 echo "$as_me:9029: checking system mail flags" >&5
90329029 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6
90339030 if test "${cf_cv_system_mail_flags+set}" = set; then
90349031 echo $ECHO_N "(cached) $ECHO_C" >&6
90449041
90459042 fi
90469043
9047 echo "$as_me:9048: result: $cf_cv_system_mail_flags" >&5
9044 echo "$as_me:9045: result: $cf_cv_system_mail_flags" >&5
90489045 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6
90499046
90509047 cat >>confdefs.h <<EOF
90959092 ;;
90969093 linux*|gnu*|mint*|k*bsd*-gnu) #(vi
90979094
9098 echo "$as_me:9099: checking if we must define _GNU_SOURCE" >&5
9095 echo "$as_me:9096: checking if we must define _GNU_SOURCE" >&5
90999096 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
91009097 if test "${cf_cv_gnu_source+set}" = set; then
91019098 echo $ECHO_N "(cached) $ECHO_C" >&6
91029099 else
91039100
91049101 cat >conftest.$ac_ext <<_ACEOF
9105 #line 9106 "configure"
9102 #line 9103 "configure"
91069103 #include "confdefs.h"
91079104 #include <sys/types.h>
91089105 int
91179114 }
91189115 _ACEOF
91199116 rm -f conftest.$ac_objext
9120 if { (eval echo "$as_me:9121: \"$ac_compile\"") >&5
9117 if { (eval echo "$as_me:9118: \"$ac_compile\"") >&5
91219118 (eval $ac_compile) 2>&5
91229119 ac_status=$?
9123 echo "$as_me:9124: \$? = $ac_status" >&5
9120 echo "$as_me:9121: \$? = $ac_status" >&5
91249121 (exit $ac_status); } &&
91259122 { ac_try='test -s conftest.$ac_objext'
9126 { (eval echo "$as_me:9127: \"$ac_try\"") >&5
9123 { (eval echo "$as_me:9124: \"$ac_try\"") >&5
91279124 (eval $ac_try) 2>&5
91289125 ac_status=$?
9129 echo "$as_me:9130: \$? = $ac_status" >&5
9126 echo "$as_me:9127: \$? = $ac_status" >&5
91309127 (exit $ac_status); }; }; then
91319128 cf_cv_gnu_source=no
91329129 else
91359132 cf_save="$CPPFLAGS"
91369133 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
91379134 cat >conftest.$ac_ext <<_ACEOF
9138 #line 9139 "configure"
9135 #line 9136 "configure"
91399136 #include "confdefs.h"
91409137 #include <sys/types.h>
91419138 int
91509147 }
91519148 _ACEOF
91529149 rm -f conftest.$ac_objext
9153 if { (eval echo "$as_me:9154: \"$ac_compile\"") >&5
9150 if { (eval echo "$as_me:9151: \"$ac_compile\"") >&5
91549151 (eval $ac_compile) 2>&5
91559152 ac_status=$?
9156 echo "$as_me:9157: \$? = $ac_status" >&5
9153 echo "$as_me:9154: \$? = $ac_status" >&5
91579154 (exit $ac_status); } &&
91589155 { ac_try='test -s conftest.$ac_objext'
9159 { (eval echo "$as_me:9160: \"$ac_try\"") >&5
9156 { (eval echo "$as_me:9157: \"$ac_try\"") >&5
91609157 (eval $ac_try) 2>&5
91619158 ac_status=$?
9162 echo "$as_me:9163: \$? = $ac_status" >&5
9159 echo "$as_me:9160: \$? = $ac_status" >&5
91639160 (exit $ac_status); }; }; then
91649161 cf_cv_gnu_source=no
91659162 else
91749171 rm -f conftest.$ac_objext conftest.$ac_ext
91759172
91769173 fi
9177 echo "$as_me:9178: result: $cf_cv_gnu_source" >&5
9174 echo "$as_me:9175: result: $cf_cv_gnu_source" >&5
91789175 echo "${ECHO_T}$cf_cv_gnu_source" >&6
91799176 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
91809177
91969193 sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \
91979194 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'`
91989195
9199 echo "$as_me:9200: checking if we should define _POSIX_C_SOURCE" >&5
9196 echo "$as_me:9197: checking if we should define _POSIX_C_SOURCE" >&5
92009197 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
92019198 if test "${cf_cv_posix_c_source+set}" = set; then
92029199 echo $ECHO_N "(cached) $ECHO_C" >&6
92039200 else
92049201
9205 echo "${as_me:-configure}:9206: testing if the symbol is already defined go no further ..." 1>&5
9202 echo "${as_me:-configure}:9203: testing if the symbol is already defined go no further ..." 1>&5
92069203
92079204 cat >conftest.$ac_ext <<_ACEOF
9208 #line 9209 "configure"
9205 #line 9206 "configure"
92099206 #include "confdefs.h"
92109207 #include <sys/types.h>
92119208 int
92209217 }
92219218 _ACEOF
92229219 rm -f conftest.$ac_objext
9223 if { (eval echo "$as_me:9224: \"$ac_compile\"") >&5
9220 if { (eval echo "$as_me:9221: \"$ac_compile\"") >&5
92249221 (eval $ac_compile) 2>&5
92259222 ac_status=$?
9226 echo "$as_me:9227: \$? = $ac_status" >&5
9223 echo "$as_me:9224: \$? = $ac_status" >&5
92279224 (exit $ac_status); } &&
92289225 { ac_try='test -s conftest.$ac_objext'
9229 { (eval echo "$as_me:9230: \"$ac_try\"") >&5
9226 { (eval echo "$as_me:9227: \"$ac_try\"") >&5
92309227 (eval $ac_try) 2>&5
92319228 ac_status=$?
9232 echo "$as_me:9233: \$? = $ac_status" >&5
9229 echo "$as_me:9230: \$? = $ac_status" >&5
92339230 (exit $ac_status); }; }; then
92349231 cf_cv_posix_c_source=no
92359232 else
92509247 esac
92519248 if test "$cf_want_posix_source" = yes ; then
92529249 cat >conftest.$ac_ext <<_ACEOF
9253 #line 9254 "configure"
9250 #line 9251 "configure"
92549251 #include "confdefs.h"
92559252 #include <sys/types.h>
92569253 int
92659262 }
92669263 _ACEOF
92679264 rm -f conftest.$ac_objext
9268 if { (eval echo "$as_me:9269: \"$ac_compile\"") >&5
9265 if { (eval echo "$as_me:9266: \"$ac_compile\"") >&5
92699266 (eval $ac_compile) 2>&5
92709267 ac_status=$?
9271 echo "$as_me:9272: \$? = $ac_status" >&5
9268 echo "$as_me:9269: \$? = $ac_status" >&5
92729269 (exit $ac_status); } &&
92739270 { ac_try='test -s conftest.$ac_objext'
9274 { (eval echo "$as_me:9275: \"$ac_try\"") >&5
9271 { (eval echo "$as_me:9272: \"$ac_try\"") >&5
92759272 (eval $ac_try) 2>&5
92769273 ac_status=$?
9277 echo "$as_me:9278: \$? = $ac_status" >&5
9274 echo "$as_me:9275: \$? = $ac_status" >&5
92789275 (exit $ac_status); }; }; then
92799276 :
92809277 else
92859282 rm -f conftest.$ac_objext conftest.$ac_ext
92869283 fi
92879284
9288 echo "${as_me:-configure}:9289: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
9285 echo "${as_me:-configure}:9286: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
92899286
92909287 CFLAGS="$cf_trim_CFLAGS"
92919288 CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
92929289
9293 echo "${as_me:-configure}:9294: testing if the second compile does not leave our definition intact error ..." 1>&5
9290 echo "${as_me:-configure}:9291: testing if the second compile does not leave our definition intact error ..." 1>&5
92949291
92959292 cat >conftest.$ac_ext <<_ACEOF
9296 #line 9297 "configure"
9293 #line 9294 "configure"
92979294 #include "confdefs.h"
92989295 #include <sys/types.h>
92999296 int
93089305 }
93099306 _ACEOF
93109307 rm -f conftest.$ac_objext
9311 if { (eval echo "$as_me:9312: \"$ac_compile\"") >&5
9308 if { (eval echo "$as_me:9309: \"$ac_compile\"") >&5
93129309 (eval $ac_compile) 2>&5
93139310 ac_status=$?
9314 echo "$as_me:9315: \$? = $ac_status" >&5
9311 echo "$as_me:9312: \$? = $ac_status" >&5
93159312 (exit $ac_status); } &&
93169313 { ac_try='test -s conftest.$ac_objext'
9317 { (eval echo "$as_me:9318: \"$ac_try\"") >&5
9314 { (eval echo "$as_me:9315: \"$ac_try\"") >&5
93189315 (eval $ac_try) 2>&5
93199316 ac_status=$?
9320 echo "$as_me:9321: \$? = $ac_status" >&5
9317 echo "$as_me:9318: \$? = $ac_status" >&5
93219318 (exit $ac_status); }; }; then
93229319 :
93239320 else
93339330 rm -f conftest.$ac_objext conftest.$ac_ext
93349331
93359332 fi
9336 echo "$as_me:9337: result: $cf_cv_posix_c_source" >&5
9333 echo "$as_me:9334: result: $cf_cv_posix_c_source" >&5
93379334 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
93389335
93399336 if test "$cf_cv_posix_c_source" != no ; then
94469443 ;;
94479444 *)
94489445
9449 echo "$as_me:9450: checking if we should define _XOPEN_SOURCE" >&5
9446 echo "$as_me:9447: checking if we should define _XOPEN_SOURCE" >&5
94509447 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
94519448 if test "${cf_cv_xopen_source+set}" = set; then
94529449 echo $ECHO_N "(cached) $ECHO_C" >&6
94539450 else
94549451
94559452 cat >conftest.$ac_ext <<_ACEOF
9456 #line 9457 "configure"
9453 #line 9454 "configure"
94579454 #include "confdefs.h"
94589455
94599456 #include <stdlib.h>
94729469 }
94739470 _ACEOF
94749471 rm -f conftest.$ac_objext
9475 if { (eval echo "$as_me:9476: \"$ac_compile\"") >&5
9472 if { (eval echo "$as_me:9473: \"$ac_compile\"") >&5
94769473 (eval $ac_compile) 2>&5
94779474 ac_status=$?
9478 echo "$as_me:9479: \$? = $ac_status" >&5
9475 echo "$as_me:9476: \$? = $ac_status" >&5
94799476 (exit $ac_status); } &&
94809477 { ac_try='test -s conftest.$ac_objext'
9481 { (eval echo "$as_me:9482: \"$ac_try\"") >&5
9478 { (eval echo "$as_me:9479: \"$ac_try\"") >&5
94829479 (eval $ac_try) 2>&5
94839480 ac_status=$?
9484 echo "$as_me:9485: \$? = $ac_status" >&5
9481 echo "$as_me:9482: \$? = $ac_status" >&5
94859482 (exit $ac_status); }; }; then
94869483 cf_cv_xopen_source=no
94879484 else
94909487 cf_save="$CPPFLAGS"
94919488 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
94929489 cat >conftest.$ac_ext <<_ACEOF
9493 #line 9494 "configure"
9490 #line 9491 "configure"
94949491 #include "confdefs.h"
94959492
94969493 #include <stdlib.h>
95099506 }
95109507 _ACEOF
95119508 rm -f conftest.$ac_objext
9512 if { (eval echo "$as_me:9513: \"$ac_compile\"") >&5
9509 if { (eval echo "$as_me:9510: \"$ac_compile\"") >&5
95139510 (eval $ac_compile) 2>&5
95149511 ac_status=$?
9515 echo "$as_me:9516: \$? = $ac_status" >&5
9512 echo "$as_me:9513: \$? = $ac_status" >&5
95169513 (exit $ac_status); } &&
95179514 { ac_try='test -s conftest.$ac_objext'
9518 { (eval echo "$as_me:9519: \"$ac_try\"") >&5
9515 { (eval echo "$as_me:9516: \"$ac_try\"") >&5
95199516 (eval $ac_try) 2>&5
95209517 ac_status=$?
9521 echo "$as_me:9522: \$? = $ac_status" >&5
9518 echo "$as_me:9519: \$? = $ac_status" >&5
95229519 (exit $ac_status); }; }; then
95239520 cf_cv_xopen_source=no
95249521 else
95339530 rm -f conftest.$ac_objext conftest.$ac_ext
95349531
95359532 fi
9536 echo "$as_me:9537: result: $cf_cv_xopen_source" >&5
9533 echo "$as_me:9534: result: $cf_cv_xopen_source" >&5
95379534 echo "${ECHO_T}$cf_cv_xopen_source" >&6
95389535
95399536 if test "$cf_cv_xopen_source" != no ; then
96419638 sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \
96429639 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'`
96439640
9644 echo "$as_me:9645: checking if we should define _POSIX_C_SOURCE" >&5
9641 echo "$as_me:9642: checking if we should define _POSIX_C_SOURCE" >&5
96459642 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
96469643 if test "${cf_cv_posix_c_source+set}" = set; then
96479644 echo $ECHO_N "(cached) $ECHO_C" >&6
96489645 else
96499646
9650 echo "${as_me:-configure}:9651: testing if the symbol is already defined go no further ..." 1>&5
9647 echo "${as_me:-configure}:9648: testing if the symbol is already defined go no further ..." 1>&5
96519648
96529649 cat >conftest.$ac_ext <<_ACEOF
9653 #line 9654 "configure"
9650 #line 9651 "configure"
96549651 #include "confdefs.h"
96559652 #include <sys/types.h>
96569653 int
96659662 }
96669663 _ACEOF
96679664 rm -f conftest.$ac_objext
9668 if { (eval echo "$as_me:9669: \"$ac_compile\"") >&5
9665 if { (eval echo "$as_me:9666: \"$ac_compile\"") >&5
96699666 (eval $ac_compile) 2>&5
96709667 ac_status=$?
9671 echo "$as_me:9672: \$? = $ac_status" >&5
9668 echo "$as_me:9669: \$? = $ac_status" >&5
96729669 (exit $ac_status); } &&
96739670 { ac_try='test -s conftest.$ac_objext'
9674 { (eval echo "$as_me:9675: \"$ac_try\"") >&5
9671 { (eval echo "$as_me:9672: \"$ac_try\"") >&5
96759672 (eval $ac_try) 2>&5
96769673 ac_status=$?
9677 echo "$as_me:9678: \$? = $ac_status" >&5
9674 echo "$as_me:9675: \$? = $ac_status" >&5
96789675 (exit $ac_status); }; }; then
96799676 cf_cv_posix_c_source=no
96809677 else
96959692 esac
96969693 if test "$cf_want_posix_source" = yes ; then
96979694 cat >conftest.$ac_ext <<_ACEOF
9698 #line 9699 "configure"
9695 #line 9696 "configure"
96999696 #include "confdefs.h"
97009697 #include <sys/types.h>
97019698 int
97109707 }
97119708 _ACEOF
97129709 rm -f conftest.$ac_objext
9713 if { (eval echo "$as_me:9714: \"$ac_compile\"") >&5
9710 if { (eval echo "$as_me:9711: \"$ac_compile\"") >&5
97149711 (eval $ac_compile) 2>&5
97159712 ac_status=$?
9716 echo "$as_me:9717: \$? = $ac_status" >&5
9713 echo "$as_me:9714: \$? = $ac_status" >&5
97179714 (exit $ac_status); } &&
97189715 { ac_try='test -s conftest.$ac_objext'
9719 { (eval echo "$as_me:9720: \"$ac_try\"") >&5
9716 { (eval echo "$as_me:9717: \"$ac_try\"") >&5
97209717 (eval $ac_try) 2>&5
97219718 ac_status=$?
9722 echo "$as_me:9723: \$? = $ac_status" >&5
9719 echo "$as_me:9720: \$? = $ac_status" >&5
97239720 (exit $ac_status); }; }; then
97249721 :
97259722 else
97309727 rm -f conftest.$ac_objext conftest.$ac_ext
97319728 fi
97329729
9733 echo "${as_me:-configure}:9734: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
9730 echo "${as_me:-configure}:9731: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
97349731
97359732 CFLAGS="$cf_trim_CFLAGS"
97369733 CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
97379734
9738 echo "${as_me:-configure}:9739: testing if the second compile does not leave our definition intact error ..." 1>&5
9735 echo "${as_me:-configure}:9736: testing if the second compile does not leave our definition intact error ..." 1>&5
97399736
97409737 cat >conftest.$ac_ext <<_ACEOF
9741 #line 9742 "configure"
9738 #line 9739 "configure"
97429739 #include "confdefs.h"
97439740 #include <sys/types.h>
97449741 int
97539750 }
97549751 _ACEOF
97559752 rm -f conftest.$ac_objext
9756 if { (eval echo "$as_me:9757: \"$ac_compile\"") >&5
9753 if { (eval echo "$as_me:9754: \"$ac_compile\"") >&5
97579754 (eval $ac_compile) 2>&5
97589755 ac_status=$?
9759 echo "$as_me:9760: \$? = $ac_status" >&5
9756 echo "$as_me:9757: \$? = $ac_status" >&5
97609757 (exit $ac_status); } &&
97619758 { ac_try='test -s conftest.$ac_objext'
9762 { (eval echo "$as_me:9763: \"$ac_try\"") >&5
9759 { (eval echo "$as_me:9760: \"$ac_try\"") >&5
97639760 (eval $ac_try) 2>&5
97649761 ac_status=$?
9765 echo "$as_me:9766: \$? = $ac_status" >&5
9762 echo "$as_me:9763: \$? = $ac_status" >&5
97669763 (exit $ac_status); }; }; then
97679764 :
97689765 else
97789775 rm -f conftest.$ac_objext conftest.$ac_ext
97799776
97809777 fi
9781 echo "$as_me:9782: result: $cf_cv_posix_c_source" >&5
9778 echo "$as_me:9779: result: $cf_cv_posix_c_source" >&5
97829779 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
97839780
97849781 if test "$cf_cv_posix_c_source" != no ; then
99519948 fi
99529949
99539950 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
9954 echo "$as_me:9955: checking if _XOPEN_SOURCE really is set" >&5
9951 echo "$as_me:9952: checking if _XOPEN_SOURCE really is set" >&5
99559952 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6
99569953 cat >conftest.$ac_ext <<_ACEOF
9957 #line 9958 "configure"
9954 #line 9955 "configure"
99589955 #include "confdefs.h"
99599956 #include <stdlib.h>
99609957 int
99699966 }
99709967 _ACEOF
99719968 rm -f conftest.$ac_objext
9972 if { (eval echo "$as_me:9973: \"$ac_compile\"") >&5
9969 if { (eval echo "$as_me:9970: \"$ac_compile\"") >&5
99739970 (eval $ac_compile) 2>&5
99749971 ac_status=$?
9975 echo "$as_me:9976: \$? = $ac_status" >&5
9972 echo "$as_me:9973: \$? = $ac_status" >&5
99769973 (exit $ac_status); } &&
99779974 { ac_try='test -s conftest.$ac_objext'
9978 { (eval echo "$as_me:9979: \"$ac_try\"") >&5
9975 { (eval echo "$as_me:9976: \"$ac_try\"") >&5
99799976 (eval $ac_try) 2>&5
99809977 ac_status=$?
9981 echo "$as_me:9982: \$? = $ac_status" >&5
9978 echo "$as_me:9979: \$? = $ac_status" >&5
99829979 (exit $ac_status); }; }; then
99839980 cf_XOPEN_SOURCE_set=yes
99849981 else
99879984 cf_XOPEN_SOURCE_set=no
99889985 fi
99899986 rm -f conftest.$ac_objext conftest.$ac_ext
9990 echo "$as_me:9991: result: $cf_XOPEN_SOURCE_set" >&5
9987 echo "$as_me:9988: result: $cf_XOPEN_SOURCE_set" >&5
99919988 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6
99929989 if test $cf_XOPEN_SOURCE_set = yes
99939990 then
99949991 cat >conftest.$ac_ext <<_ACEOF
9995 #line 9996 "configure"
9992 #line 9993 "configure"
99969993 #include "confdefs.h"
99979994 #include <stdlib.h>
99989995 int
1000710004 }
1000810005 _ACEOF
1000910006 rm -f conftest.$ac_objext
10010 if { (eval echo "$as_me:10011: \"$ac_compile\"") >&5
10007 if { (eval echo "$as_me:10008: \"$ac_compile\"") >&5
1001110008 (eval $ac_compile) 2>&5
1001210009 ac_status=$?
10013 echo "$as_me:10014: \$? = $ac_status" >&5
10010 echo "$as_me:10011: \$? = $ac_status" >&5
1001410011 (exit $ac_status); } &&
1001510012 { ac_try='test -s conftest.$ac_objext'
10016 { (eval echo "$as_me:10017: \"$ac_try\"") >&5
10013 { (eval echo "$as_me:10014: \"$ac_try\"") >&5
1001710014 (eval $ac_try) 2>&5
1001810015 ac_status=$?
10019 echo "$as_me:10020: \$? = $ac_status" >&5
10016 echo "$as_me:10017: \$? = $ac_status" >&5
1002010017 (exit $ac_status); }; }; then
1002110018 cf_XOPEN_SOURCE_set_ok=yes
1002210019 else
1002710024 rm -f conftest.$ac_objext conftest.$ac_ext
1002810025 if test $cf_XOPEN_SOURCE_set_ok = no
1002910026 then
10030 { echo "$as_me:10031: WARNING: _XOPEN_SOURCE is lower than requested" >&5
10027 { echo "$as_me:10028: WARNING: _XOPEN_SOURCE is lower than requested" >&5
1003110028 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;}
1003210029 fi
1003310030 else
1003410031
10035 echo "$as_me:10036: checking if we should define _XOPEN_SOURCE" >&5
10032 echo "$as_me:10033: checking if we should define _XOPEN_SOURCE" >&5
1003610033 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
1003710034 if test "${cf_cv_xopen_source+set}" = set; then
1003810035 echo $ECHO_N "(cached) $ECHO_C" >&6
1003910036 else
1004010037
1004110038 cat >conftest.$ac_ext <<_ACEOF
10042 #line 10043 "configure"
10039 #line 10040 "configure"
1004310040 #include "confdefs.h"
1004410041
1004510042 #include <stdlib.h>
1005810055 }
1005910056 _ACEOF
1006010057 rm -f conftest.$ac_objext
10061 if { (eval echo "$as_me:10062: \"$ac_compile\"") >&5
10058 if { (eval echo "$as_me:10059: \"$ac_compile\"") >&5
1006210059 (eval $ac_compile) 2>&5
1006310060 ac_status=$?
10064 echo "$as_me:10065: \$? = $ac_status" >&5
10061 echo "$as_me:10062: \$? = $ac_status" >&5
1006510062 (exit $ac_status); } &&
1006610063 { ac_try='test -s conftest.$ac_objext'
10067 { (eval echo "$as_me:10068: \"$ac_try\"") >&5
10064 { (eval echo "$as_me:10065: \"$ac_try\"") >&5
1006810065 (eval $ac_try) 2>&5
1006910066 ac_status=$?
10070 echo "$as_me:10071: \$? = $ac_status" >&5
10067 echo "$as_me:10068: \$? = $ac_status" >&5
1007110068 (exit $ac_status); }; }; then
1007210069 cf_cv_xopen_source=no
1007310070 else
1007610073 cf_save="$CPPFLAGS"
1007710074 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
1007810075 cat >conftest.$ac_ext <<_ACEOF
10079 #line 10080 "configure"
10076 #line 10077 "configure"
1008010077 #include "confdefs.h"
1008110078
1008210079 #include <stdlib.h>
1009510092 }
1009610093 _ACEOF
1009710094 rm -f conftest.$ac_objext
10098 if { (eval echo "$as_me:10099: \"$ac_compile\"") >&5
10095 if { (eval echo "$as_me:10096: \"$ac_compile\"") >&5
1009910096 (eval $ac_compile) 2>&5
1010010097 ac_status=$?
10101 echo "$as_me:10102: \$? = $ac_status" >&5
10098 echo "$as_me:10099: \$? = $ac_status" >&5
1010210099 (exit $ac_status); } &&
1010310100 { ac_try='test -s conftest.$ac_objext'
10104 { (eval echo "$as_me:10105: \"$ac_try\"") >&5
10101 { (eval echo "$as_me:10102: \"$ac_try\"") >&5
1010510102 (eval $ac_try) 2>&5
1010610103 ac_status=$?
10107 echo "$as_me:10108: \$? = $ac_status" >&5
10104 echo "$as_me:10105: \$? = $ac_status" >&5
1010810105 (exit $ac_status); }; }; then
1010910106 cf_cv_xopen_source=no
1011010107 else
1011910116 rm -f conftest.$ac_objext conftest.$ac_ext
1012010117
1012110118 fi
10122 echo "$as_me:10123: result: $cf_cv_xopen_source" >&5
10119 echo "$as_me:10120: result: $cf_cv_xopen_source" >&5
1012310120 echo "${ECHO_T}$cf_cv_xopen_source" >&6
1012410121
1012510122 if test "$cf_cv_xopen_source" != no ; then
1021710214 fi
1021810215 fi
1021910216
10220 echo "$as_me:10221: checking if SIGWINCH is defined" >&5
10217 echo "$as_me:10218: checking if SIGWINCH is defined" >&5
1022110218 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
1022210219 if test "${cf_cv_define_sigwinch+set}" = set; then
1022310220 echo $ECHO_N "(cached) $ECHO_C" >&6
1022410221 else
1022510222
1022610223 cat >conftest.$ac_ext <<_ACEOF
10227 #line 10228 "configure"
10224 #line 10225 "configure"
1022810225 #include "confdefs.h"
1022910226
1023010227 #include <sys/types.h>
1023910236 }
1024010237 _ACEOF
1024110238 rm -f conftest.$ac_objext
10242 if { (eval echo "$as_me:10243: \"$ac_compile\"") >&5
10239 if { (eval echo "$as_me:10240: \"$ac_compile\"") >&5
1024310240 (eval $ac_compile) 2>&5
1024410241 ac_status=$?
10245 echo "$as_me:10246: \$? = $ac_status" >&5
10242 echo "$as_me:10243: \$? = $ac_status" >&5
1024610243 (exit $ac_status); } &&
1024710244 { ac_try='test -s conftest.$ac_objext'
10248 { (eval echo "$as_me:10249: \"$ac_try\"") >&5
10245 { (eval echo "$as_me:10246: \"$ac_try\"") >&5
1024910246 (eval $ac_try) 2>&5
1025010247 ac_status=$?
10251 echo "$as_me:10252: \$? = $ac_status" >&5
10248 echo "$as_me:10249: \$? = $ac_status" >&5
1025210249 (exit $ac_status); }; }; then
1025310250 cf_cv_define_sigwinch=yes
1025410251 else
1025510252 echo "$as_me: failed program was:" >&5
1025610253 cat conftest.$ac_ext >&5
1025710254 cat >conftest.$ac_ext <<_ACEOF
10258 #line 10259 "configure"
10255 #line 10256 "configure"
1025910256 #include "confdefs.h"
1026010257
1026110258 #undef _XOPEN_SOURCE
1027310270 }
1027410271 _ACEOF
1027510272 rm -f conftest.$ac_objext
10276 if { (eval echo "$as_me:10277: \"$ac_compile\"") >&5
10273 if { (eval echo "$as_me:10274: \"$ac_compile\"") >&5
1027710274 (eval $ac_compile) 2>&5
1027810275 ac_status=$?
10279 echo "$as_me:10280: \$? = $ac_status" >&5
10276 echo "$as_me:10277: \$? = $ac_status" >&5
1028010277 (exit $ac_status); } &&
1028110278 { ac_try='test -s conftest.$ac_objext'
10282 { (eval echo "$as_me:10283: \"$ac_try\"") >&5
10279 { (eval echo "$as_me:10280: \"$ac_try\"") >&5
1028310280 (eval $ac_try) 2>&5
1028410281 ac_status=$?
10285 echo "$as_me:10286: \$? = $ac_status" >&5
10282 echo "$as_me:10283: \$? = $ac_status" >&5
1028610283 (exit $ac_status); }; }; then
1028710284 cf_cv_define_sigwinch=maybe
1028810285 else
1029610293 rm -f conftest.$ac_objext conftest.$ac_ext
1029710294
1029810295 fi
10299 echo "$as_me:10300: result: $cf_cv_define_sigwinch" >&5
10296 echo "$as_me:10297: result: $cf_cv_define_sigwinch" >&5
1030010297 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
1030110298
1030210299 if test "$cf_cv_define_sigwinch" = maybe ; then
10303 echo "$as_me:10304: checking for actual SIGWINCH definition" >&5
10300 echo "$as_me:10301: checking for actual SIGWINCH definition" >&5
1030410301 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
1030510302 if test "${cf_cv_fixup_sigwinch+set}" = set; then
1030610303 echo $ECHO_N "(cached) $ECHO_C" >&6
1031110308 while test $cf_sigwinch != 1
1031210309 do
1031310310 cat >conftest.$ac_ext <<_ACEOF
10314 #line 10315 "configure"
10311 #line 10312 "configure"
1031510312 #include "confdefs.h"
1031610313
1031710314 #undef _XOPEN_SOURCE
1033310330 }
1033410331 _ACEOF
1033510332 rm -f conftest.$ac_objext
10336 if { (eval echo "$as_me:10337: \"$ac_compile\"") >&5
10333 if { (eval echo "$as_me:10334: \"$ac_compile\"") >&5
1033710334 (eval $ac_compile) 2>&5
1033810335 ac_status=$?
10339 echo "$as_me:10340: \$? = $ac_status" >&5
10336 echo "$as_me:10337: \$? = $ac_status" >&5
1034010337 (exit $ac_status); } &&
1034110338 { ac_try='test -s conftest.$ac_objext'
10342 { (eval echo "$as_me:10343: \"$ac_try\"") >&5
10339 { (eval echo "$as_me:10340: \"$ac_try\"") >&5
1034310340 (eval $ac_try) 2>&5
1034410341 ac_status=$?
10345 echo "$as_me:10346: \$? = $ac_status" >&5
10342 echo "$as_me:10343: \$? = $ac_status" >&5
1034610343 (exit $ac_status); }; }; then
1034710344 cf_cv_fixup_sigwinch=$cf_sigwinch
1034810345 break
1035610353 done
1035710354
1035810355 fi
10359 echo "$as_me:10360: result: $cf_cv_fixup_sigwinch" >&5
10356 echo "$as_me:10357: result: $cf_cv_fixup_sigwinch" >&5
1036010357 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
1036110358
1036210359 if test "$cf_cv_fixup_sigwinch" != unknown ; then
1036810365
1036910366 test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6
1037010367
10371 echo "${as_me:-configure}:10372: testing checking additions to CFLAGS ..." 1>&5
10368 echo "${as_me:-configure}:10369: testing checking additions to CFLAGS ..." 1>&5
1037210369
1037310370 cf_check_cflags="$CFLAGS"
1037410371 cf_check_cppflags="$CPPFLAGS"
1043910436 if test -n "$cf_new_cflags" ; then
1044010437 test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6
1044110438
10442 echo "${as_me:-configure}:10443: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
10439 echo "${as_me:-configure}:10440: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
1044310440
1044410441 CFLAGS="$CFLAGS $cf_new_cflags"
1044510442 fi
1044710444 if test -n "$cf_new_cppflags" ; then
1044810445 test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6
1044910446
10450 echo "${as_me:-configure}:10451: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
10447 echo "${as_me:-configure}:10448: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
1045110448
1045210449 CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
1045310450 fi
1045510452 if test -n "$cf_new_extra_cppflags" ; then
1045610453 test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
1045710454
10458 echo "${as_me:-configure}:10459: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
10455 echo "${as_me:-configure}:10456: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
1045910456
1046010457 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
1046110458 fi
1046210459
1046310460 if test "$cf_check_cflags" != "$CFLAGS" ; then
1046410461 cat >conftest.$ac_ext <<_ACEOF
10465 #line 10466 "configure"
10462 #line 10463 "configure"
1046610463 #include "confdefs.h"
1046710464 #include <stdio.h>
1046810465 int
1047410471 }
1047510472 _ACEOF
1047610473 rm -f conftest.$ac_objext conftest$ac_exeext
10477 if { (eval echo "$as_me:10478: \"$ac_link\"") >&5
10474 if { (eval echo "$as_me:10475: \"$ac_link\"") >&5
1047810475 (eval $ac_link) 2>&5
1047910476 ac_status=$?
10480 echo "$as_me:10481: \$? = $ac_status" >&5
10477 echo "$as_me:10478: \$? = $ac_status" >&5
1048110478 (exit $ac_status); } &&
1048210479 { ac_try='test -s conftest$ac_exeext'
10483 { (eval echo "$as_me:10484: \"$ac_try\"") >&5
10480 { (eval echo "$as_me:10481: \"$ac_try\"") >&5
1048410481 (eval $ac_try) 2>&5
1048510482 ac_status=$?
10486 echo "$as_me:10487: \$? = $ac_status" >&5
10483 echo "$as_me:10484: \$? = $ac_status" >&5
1048710484 (exit $ac_status); }; }; then
1048810485 :
1048910486 else
1049110488 cat conftest.$ac_ext >&5
1049210489 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6
1049310490
10494 echo "${as_me:-configure}:10495: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5
10491 echo "${as_me:-configure}:10492: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5
1049510492
1049610493 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then
1049710494 test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6
1049810495
10499 echo "${as_me:-configure}:10500: testing but keeping change to \$CPPFLAGS ..." 1>&5
10496 echo "${as_me:-configure}:10497: testing but keeping change to \$CPPFLAGS ..." 1>&5
1050010497
1050110498 fi
1050210499 CFLAGS="$cf_check_flags"
1050810505
1050910506 ### Look for network libraries first, since some functions (such as gethostname)
1051010507 ### are used in a lot of places.
10511 echo "$as_me:10512: checking if you want NSS compatible SSL libraries" >&5
10508 echo "$as_me:10509: checking if you want NSS compatible SSL libraries" >&5
1051210509 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6
1051310510 if test "${cf_cv_use_libnss_compat+set}" = set; then
1051410511 echo $ECHO_N "(cached) $ECHO_C" >&6
1052310520 fi;
1052410521
1052510522 fi
10526 echo "$as_me:10527: result: $cf_cv_use_libnss_compat" >&5
10523 echo "$as_me:10524: result: $cf_cv_use_libnss_compat" >&5
1052710524 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6
1052810525
10529 echo "$as_me:10530: checking if you want ssl library" >&5
10526 echo "$as_me:10527: checking if you want ssl library" >&5
1053010527 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6
1053110528 if test "${cf_cv_use_libssl+set}" = set; then
1053210529 echo $ECHO_N "(cached) $ECHO_C" >&6
1054110538 fi;
1054210539
1054310540 fi
10544 echo "$as_me:10545: result: $cf_cv_use_libssl" >&5
10541 echo "$as_me:10542: result: $cf_cv_use_libssl" >&5
1054510542 echo "${ECHO_T}$cf_cv_use_libssl" >&6
1054610543
10547 echo "$as_me:10548: checking if you want gnutls support" >&5
10544 echo "$as_me:10545: checking if you want gnutls support" >&5
1054810545 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6
1054910546 if test "${cf_cv_use_libgnutls+set}" = set; then
1055010547 echo $ECHO_N "(cached) $ECHO_C" >&6
1055910556 fi;
1056010557
1056110558 fi
10562 echo "$as_me:10563: result: $cf_cv_use_libgnutls" >&5
10559 echo "$as_me:10560: result: $cf_cv_use_libgnutls" >&5
1056310560 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6
1056410561
1056510562 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS.
10566 echo "$as_me:10567: checking if you want gnutls-openssl compat" >&5
10563 echo "$as_me:10564: checking if you want gnutls-openssl compat" >&5
1056710564 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6
1056810565 if test "${cf_cv_gnutls_compat+set}" = set; then
1056910566 echo $ECHO_N "(cached) $ECHO_C" >&6
1057810575 fi;
1057910576
1058010577 fi
10581 echo "$as_me:10582: result: $cf_cv_gnutls_compat" >&5
10578 echo "$as_me:10579: result: $cf_cv_gnutls_compat" >&5
1058210579 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6
1058310580
10584 echo "$as_me:10585: checking if you want socks library" >&5
10581 echo "$as_me:10582: checking if you want socks library" >&5
1058510582 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6
1058610583 if test "${cf_cv_use_libsocks+set}" = set; then
1058710584 echo $ECHO_N "(cached) $ECHO_C" >&6
1059610593 fi;
1059710594
1059810595 fi
10599 echo "$as_me:10600: result: $cf_cv_use_libsocks" >&5
10596 echo "$as_me:10597: result: $cf_cv_use_libsocks" >&5
1060010597 echo "${ECHO_T}$cf_cv_use_libsocks" >&6
1060110598
10602 echo "$as_me:10603: checking if you want socks5 library" >&5
10599 echo "$as_me:10600: checking if you want socks5 library" >&5
1060310600 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6
1060410601 if test "${cf_cv_use_libsocks5+set}" = set; then
1060510602 echo $ECHO_N "(cached) $ECHO_C" >&6
1061410611 fi;
1061510612
1061610613 fi
10617 echo "$as_me:10618: result: $cf_cv_use_libsocks5" >&5
10614 echo "$as_me:10615: result: $cf_cv_use_libsocks5" >&5
1061810615 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6
1061910616
1062010617 if test "x$cf_cv_use_libsocks" != xno ; then
1065310650 cf_save_CPPFLAGS=$CPPFLAGS
1065410651 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1065510652 cat >conftest.$ac_ext <<_ACEOF
10656 #line 10657 "configure"
10653 #line 10654 "configure"
1065710654 #include "confdefs.h"
1065810655 #include <stdio.h>
1065910656 int
1066510662 }
1066610663 _ACEOF
1066710664 rm -f conftest.$ac_objext
10668 if { (eval echo "$as_me:10669: \"$ac_compile\"") >&5
10665 if { (eval echo "$as_me:10666: \"$ac_compile\"") >&5
1066910666 (eval $ac_compile) 2>&5
1067010667 ac_status=$?
10671 echo "$as_me:10672: \$? = $ac_status" >&5
10668 echo "$as_me:10669: \$? = $ac_status" >&5
1067210669 (exit $ac_status); } &&
1067310670 { ac_try='test -s conftest.$ac_objext'
10674 { (eval echo "$as_me:10675: \"$ac_try\"") >&5
10671 { (eval echo "$as_me:10672: \"$ac_try\"") >&5
1067510672 (eval $ac_try) 2>&5
1067610673 ac_status=$?
10677 echo "$as_me:10678: \$? = $ac_status" >&5
10674 echo "$as_me:10675: \$? = $ac_status" >&5
1067810675 (exit $ac_status); }; }; then
1067910676 :
1068010677 else
1069110688 if test "$cf_have_incdir" = no ; then
1069210689 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1069310690
10694 echo "${as_me:-configure}:10695: testing adding $cf_add_incdir to include-path ..." 1>&5
10691 echo "${as_me:-configure}:10692: testing adding $cf_add_incdir to include-path ..." 1>&5
1069510692
1069610693 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1069710694
1073210729 cf_save_CPPFLAGS=$CPPFLAGS
1073310730 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1073410731 cat >conftest.$ac_ext <<_ACEOF
10735 #line 10736 "configure"
10732 #line 10733 "configure"
1073610733 #include "confdefs.h"
1073710734 #include <stdio.h>
1073810735 int
1074410741 }
1074510742 _ACEOF
1074610743 rm -f conftest.$ac_objext
10747 if { (eval echo "$as_me:10748: \"$ac_compile\"") >&5
10744 if { (eval echo "$as_me:10745: \"$ac_compile\"") >&5
1074810745 (eval $ac_compile) 2>&5
1074910746 ac_status=$?
10750 echo "$as_me:10751: \$? = $ac_status" >&5
10747 echo "$as_me:10748: \$? = $ac_status" >&5
1075110748 (exit $ac_status); } &&
1075210749 { ac_try='test -s conftest.$ac_objext'
10753 { (eval echo "$as_me:10754: \"$ac_try\"") >&5
10750 { (eval echo "$as_me:10751: \"$ac_try\"") >&5
1075410751 (eval $ac_try) 2>&5
1075510752 ac_status=$?
10756 echo "$as_me:10757: \$? = $ac_status" >&5
10753 echo "$as_me:10754: \$? = $ac_status" >&5
1075710754 (exit $ac_status); }; }; then
1075810755 :
1075910756 else
1077010767 if test "$cf_have_incdir" = no ; then
1077110768 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1077210769
10773 echo "${as_me:-configure}:10774: testing adding $cf_add_incdir to include-path ..." 1>&5
10770 echo "${as_me:-configure}:10771: testing adding $cf_add_incdir to include-path ..." 1>&5
1077410771
1077510772 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1077610773
1078610783 fi
1078710784
1078810785 else
10789 { { echo "$as_me:10790: error: cannot find socks library under $cf_cv_use_libsocks" >&5
10786 { { echo "$as_me:10787: error: cannot find socks library under $cf_cv_use_libsocks" >&5
1079010787 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;}
1079110788 { (exit 1); exit 1; }; }
1079210789 fi
1081110808 if test "$cf_have_libdir" = no ; then
1081210809 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1081310810
10814 echo "${as_me:-configure}:10815: testing adding $cf_add_libdir to library-path ..." 1>&5
10811 echo "${as_me:-configure}:10812: testing adding $cf_add_libdir to library-path ..." 1>&5
1081510812
1081610813 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1081710814 fi
1084010837 if test "$cf_have_libdir" = no ; then
1084110838 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1084210839
10843 echo "${as_me:-configure}:10844: testing adding $cf_add_libdir to library-path ..." 1>&5
10840 echo "${as_me:-configure}:10841: testing adding $cf_add_libdir to library-path ..." 1>&5
1084410841
1084510842 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1084610843 fi
1084910846 fi
1085010847
1085110848 else
10852 { { echo "$as_me:10853: error: cannot find socks library under $cf_cv_use_libsocks" >&5
10849 { { echo "$as_me:10850: error: cannot find socks library under $cf_cv_use_libsocks" >&5
1085310850 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;}
1085410851 { (exit 1); exit 1; }; }
1085510852 fi
1086310860 cf_cv_header_path_socks=
1086410861 cf_cv_library_path_socks=
1086510862
10866 echo "${as_me:-configure}:10867: testing Starting FIND_LINKAGE(socks,) ..." 1>&5
10863 echo "${as_me:-configure}:10864: testing Starting FIND_LINKAGE(socks,) ..." 1>&5
1086710864
1086810865 cf_save_LIBS="$LIBS"
1086910866
1087010867 cat >conftest.$ac_ext <<_ACEOF
10871 #line 10872 "configure"
10868 #line 10869 "configure"
1087210869 #include "confdefs.h"
1087310870
1087410871 #include <stdio.h>
1088410881 }
1088510882 _ACEOF
1088610883 rm -f conftest.$ac_objext conftest$ac_exeext
10887 if { (eval echo "$as_me:10888: \"$ac_link\"") >&5
10884 if { (eval echo "$as_me:10885: \"$ac_link\"") >&5
1088810885 (eval $ac_link) 2>&5
1088910886 ac_status=$?
10890 echo "$as_me:10891: \$? = $ac_status" >&5
10887 echo "$as_me:10888: \$? = $ac_status" >&5
1089110888 (exit $ac_status); } &&
1089210889 { ac_try='test -s conftest$ac_exeext'
10893 { (eval echo "$as_me:10894: \"$ac_try\"") >&5
10890 { (eval echo "$as_me:10891: \"$ac_try\"") >&5
1089410891 (eval $ac_try) 2>&5
1089510892 ac_status=$?
10896 echo "$as_me:10897: \$? = $ac_status" >&5
10893 echo "$as_me:10894: \$? = $ac_status" >&5
1089710894 (exit $ac_status); }; }; then
1089810895
1089910896 cf_cv_find_linkage_socks=yes
1090710904 LIBS="-lsocks $cf_save_LIBS"
1090810905
1090910906 cat >conftest.$ac_ext <<_ACEOF
10910 #line 10911 "configure"
10907 #line 10908 "configure"
1091110908 #include "confdefs.h"
1091210909
1091310910 #include <stdio.h>
1092310920 }
1092410921 _ACEOF
1092510922 rm -f conftest.$ac_objext conftest$ac_exeext
10926 if { (eval echo "$as_me:10927: \"$ac_link\"") >&5
10923 if { (eval echo "$as_me:10924: \"$ac_link\"") >&5
1092710924 (eval $ac_link) 2>&5
1092810925 ac_status=$?
10929 echo "$as_me:10930: \$? = $ac_status" >&5
10926 echo "$as_me:10927: \$? = $ac_status" >&5
1093010927 (exit $ac_status); } &&
1093110928 { ac_try='test -s conftest$ac_exeext'
10932 { (eval echo "$as_me:10933: \"$ac_try\"") >&5
10929 { (eval echo "$as_me:10930: \"$ac_try\"") >&5
1093310930 (eval $ac_try) 2>&5
1093410931 ac_status=$?
10935 echo "$as_me:10936: \$? = $ac_status" >&5
10932 echo "$as_me:10933: \$? = $ac_status" >&5
1093610933 (exit $ac_status); }; }; then
1093710934
1093810935 cf_cv_find_linkage_socks=yes
1094910946
1095010947 test -n "$verbose" && echo " find linkage for socks library" 1>&6
1095110948
10952 echo "${as_me:-configure}:10953: testing find linkage for socks library ..." 1>&5
10953
10954 echo "${as_me:-configure}:10955: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5
10949 echo "${as_me:-configure}:10950: testing find linkage for socks library ..." 1>&5
10950
10951 echo "${as_me:-configure}:10952: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5
1095510952
1095610953 cf_save_CPPFLAGS="$CPPFLAGS"
1095710954 cf_test_CPPFLAGS="$CPPFLAGS"
1106411061 if test -d $cf_cv_header_path_socks ; then
1106511062 test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6
1106611063
11067 echo "${as_me:-configure}:11068: testing ... testing $cf_cv_header_path_socks ..." 1>&5
11064 echo "${as_me:-configure}:11065: testing ... testing $cf_cv_header_path_socks ..." 1>&5
1106811065
1106911066 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_socks"
1107011067 cat >conftest.$ac_ext <<_ACEOF
11071 #line 11072 "configure"
11068 #line 11069 "configure"
1107211069 #include "confdefs.h"
1107311070
1107411071 #include <stdio.h>
1108411081 }
1108511082 _ACEOF
1108611083 rm -f conftest.$ac_objext
11087 if { (eval echo "$as_me:11088: \"$ac_compile\"") >&5
11084 if { (eval echo "$as_me:11085: \"$ac_compile\"") >&5
1108811085 (eval $ac_compile) 2>&5
1108911086 ac_status=$?
11090 echo "$as_me:11091: \$? = $ac_status" >&5
11087 echo "$as_me:11088: \$? = $ac_status" >&5
1109111088 (exit $ac_status); } &&
1109211089 { ac_try='test -s conftest.$ac_objext'
11093 { (eval echo "$as_me:11094: \"$ac_try\"") >&5
11090 { (eval echo "$as_me:11091: \"$ac_try\"") >&5
1109411091 (eval $ac_try) 2>&5
1109511092 ac_status=$?
11096 echo "$as_me:11097: \$? = $ac_status" >&5
11093 echo "$as_me:11094: \$? = $ac_status" >&5
1109711094 (exit $ac_status); }; }; then
1109811095
1109911096 test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6
1110011097
11101 echo "${as_me:-configure}:11102: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5
11098 echo "${as_me:-configure}:11099: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5
1110211099
1110311100 cf_cv_find_linkage_socks=maybe
1110411101 cf_test_CPPFLAGS="$CPPFLAGS"
1111611113
1111711114 if test "$cf_cv_find_linkage_socks" = maybe ; then
1111811115
11119 echo "${as_me:-configure}:11120: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5
11116 echo "${as_me:-configure}:11117: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5
1112011117
1112111118 cf_save_LIBS="$LIBS"
1112211119 cf_save_LDFLAGS="$LDFLAGS"
1121311210 if test -d $cf_cv_library_path_socks ; then
1121411211 test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6
1121511212
11216 echo "${as_me:-configure}:11217: testing ... testing $cf_cv_library_path_socks ..." 1>&5
11213 echo "${as_me:-configure}:11214: testing ... testing $cf_cv_library_path_socks ..." 1>&5
1121711214
1121811215 CPPFLAGS="$cf_test_CPPFLAGS"
1121911216 LIBS="-lsocks $cf_save_LIBS"
1122011217 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks"
1122111218 cat >conftest.$ac_ext <<_ACEOF
11222 #line 11223 "configure"
11219 #line 11220 "configure"
1122311220 #include "confdefs.h"
1122411221
1122511222 #include <stdio.h>
1123511232 }
1123611233 _ACEOF
1123711234 rm -f conftest.$ac_objext conftest$ac_exeext
11238 if { (eval echo "$as_me:11239: \"$ac_link\"") >&5
11235 if { (eval echo "$as_me:11236: \"$ac_link\"") >&5
1123911236 (eval $ac_link) 2>&5
1124011237 ac_status=$?
11241 echo "$as_me:11242: \$? = $ac_status" >&5
11238 echo "$as_me:11239: \$? = $ac_status" >&5
1124211239 (exit $ac_status); } &&
1124311240 { ac_try='test -s conftest$ac_exeext'
11244 { (eval echo "$as_me:11245: \"$ac_try\"") >&5
11241 { (eval echo "$as_me:11242: \"$ac_try\"") >&5
1124511242 (eval $ac_try) 2>&5
1124611243 ac_status=$?
11247 echo "$as_me:11248: \$? = $ac_status" >&5
11244 echo "$as_me:11245: \$? = $ac_status" >&5
1124811245 (exit $ac_status); }; }; then
1124911246
1125011247 test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6
1125111248
11252 echo "${as_me:-configure}:11253: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5
11249 echo "${as_me:-configure}:11250: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5
1125311250
1125411251 cf_cv_find_linkage_socks=yes
1125511252 cf_cv_library_file_socks="-lsocks"
1130811305 cf_save_CPPFLAGS=$CPPFLAGS
1130911306 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1131011307 cat >conftest.$ac_ext <<_ACEOF
11311 #line 11312 "configure"
11308 #line 11309 "configure"
1131211309 #include "confdefs.h"
1131311310 #include <stdio.h>
1131411311 int
1132011317 }
1132111318 _ACEOF
1132211319 rm -f conftest.$ac_objext
11323 if { (eval echo "$as_me:11324: \"$ac_compile\"") >&5
11320 if { (eval echo "$as_me:11321: \"$ac_compile\"") >&5
1132411321 (eval $ac_compile) 2>&5
1132511322 ac_status=$?
11326 echo "$as_me:11327: \$? = $ac_status" >&5
11323 echo "$as_me:11324: \$? = $ac_status" >&5
1132711324 (exit $ac_status); } &&
1132811325 { ac_try='test -s conftest.$ac_objext'
11329 { (eval echo "$as_me:11330: \"$ac_try\"") >&5
11326 { (eval echo "$as_me:11327: \"$ac_try\"") >&5
1133011327 (eval $ac_try) 2>&5
1133111328 ac_status=$?
11332 echo "$as_me:11333: \$? = $ac_status" >&5
11329 echo "$as_me:11330: \$? = $ac_status" >&5
1133311330 (exit $ac_status); }; }; then
1133411331 :
1133511332 else
1134611343 if test "$cf_have_incdir" = no ; then
1134711344 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1134811345
11349 echo "${as_me:-configure}:11350: testing adding $cf_add_incdir to include-path ..." 1>&5
11346 echo "${as_me:-configure}:11347: testing adding $cf_add_incdir to include-path ..." 1>&5
1135011347
1135111348 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1135211349
1138011377 if test "$cf_have_libdir" = no ; then
1138111378 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1138211379
11383 echo "${as_me:-configure}:11384: testing adding $cf_add_libdir to library-path ..." 1>&5
11380 echo "${as_me:-configure}:11381: testing adding $cf_add_libdir to library-path ..." 1>&5
1138411381
1138511382 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1138611383 fi
1139111388 LIBS="-lsocks $LIBS"
1139211389
1139311390 else
11394 { echo "$as_me:11395: WARNING: Cannot find socks library" >&5
11391 { echo "$as_me:11392: WARNING: Cannot find socks library" >&5
1139511392 echo "$as_me: WARNING: Cannot find socks library" >&2;}
1139611393 fi
1139711394
1143411431 EOF
1143511432
1143611433 else
11437 { { echo "$as_me:11438: error: cannot link with socks library" >&5
11434 { { echo "$as_me:11435: error: cannot link with socks library" >&5
1143811435 echo "$as_me: error: cannot link with socks library" >&2;}
1143911436 { (exit 1); exit 1; }; }
1144011437 fi
1147511472 cf_save_CPPFLAGS=$CPPFLAGS
1147611473 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1147711474 cat >conftest.$ac_ext <<_ACEOF
11478 #line 11479 "configure"
11475 #line 11476 "configure"
1147911476 #include "confdefs.h"
1148011477 #include <stdio.h>
1148111478 int
1148711484 }
1148811485 _ACEOF
1148911486 rm -f conftest.$ac_objext
11490 if { (eval echo "$as_me:11491: \"$ac_compile\"") >&5
11487 if { (eval echo "$as_me:11488: \"$ac_compile\"") >&5
1149111488 (eval $ac_compile) 2>&5
1149211489 ac_status=$?
11493 echo "$as_me:11494: \$? = $ac_status" >&5
11490 echo "$as_me:11491: \$? = $ac_status" >&5
1149411491 (exit $ac_status); } &&
1149511492 { ac_try='test -s conftest.$ac_objext'
11496 { (eval echo "$as_me:11497: \"$ac_try\"") >&5
11493 { (eval echo "$as_me:11494: \"$ac_try\"") >&5
1149711494 (eval $ac_try) 2>&5
1149811495 ac_status=$?
11499 echo "$as_me:11500: \$? = $ac_status" >&5
11496 echo "$as_me:11497: \$? = $ac_status" >&5
1150011497 (exit $ac_status); }; }; then
1150111498 :
1150211499 else
1151311510 if test "$cf_have_incdir" = no ; then
1151411511 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1151511512
11516 echo "${as_me:-configure}:11517: testing adding $cf_add_incdir to include-path ..." 1>&5
11513 echo "${as_me:-configure}:11514: testing adding $cf_add_incdir to include-path ..." 1>&5
1151711514
1151811515 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1151911516
1155411551 cf_save_CPPFLAGS=$CPPFLAGS
1155511552 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1155611553 cat >conftest.$ac_ext <<_ACEOF
11557 #line 11558 "configure"
11554 #line 11555 "configure"
1155811555 #include "confdefs.h"
1155911556 #include <stdio.h>
1156011557 int
1156611563 }
1156711564 _ACEOF
1156811565 rm -f conftest.$ac_objext
11569 if { (eval echo "$as_me:11570: \"$ac_compile\"") >&5
11566 if { (eval echo "$as_me:11567: \"$ac_compile\"") >&5
1157011567 (eval $ac_compile) 2>&5
1157111568 ac_status=$?
11572 echo "$as_me:11573: \$? = $ac_status" >&5
11569 echo "$as_me:11570: \$? = $ac_status" >&5
1157311570 (exit $ac_status); } &&
1157411571 { ac_try='test -s conftest.$ac_objext'
11575 { (eval echo "$as_me:11576: \"$ac_try\"") >&5
11572 { (eval echo "$as_me:11573: \"$ac_try\"") >&5
1157611573 (eval $ac_try) 2>&5
1157711574 ac_status=$?
11578 echo "$as_me:11579: \$? = $ac_status" >&5
11575 echo "$as_me:11576: \$? = $ac_status" >&5
1157911576 (exit $ac_status); }; }; then
1158011577 :
1158111578 else
1159211589 if test "$cf_have_incdir" = no ; then
1159311590 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1159411591
11595 echo "${as_me:-configure}:11596: testing adding $cf_add_incdir to include-path ..." 1>&5
11592 echo "${as_me:-configure}:11593: testing adding $cf_add_incdir to include-path ..." 1>&5
1159611593
1159711594 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1159811595
1160811605 fi
1160911606
1161011607 else
11611 { { echo "$as_me:11612: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5
11608 { { echo "$as_me:11609: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5
1161211609 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;}
1161311610 { (exit 1); exit 1; }; }
1161411611 fi
1163311630 if test "$cf_have_libdir" = no ; then
1163411631 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1163511632
11636 echo "${as_me:-configure}:11637: testing adding $cf_add_libdir to library-path ..." 1>&5
11633 echo "${as_me:-configure}:11634: testing adding $cf_add_libdir to library-path ..." 1>&5
1163711634
1163811635 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1163911636 fi
1166211659 if test "$cf_have_libdir" = no ; then
1166311660 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1166411661
11665 echo "${as_me:-configure}:11666: testing adding $cf_add_libdir to library-path ..." 1>&5
11662 echo "${as_me:-configure}:11663: testing adding $cf_add_libdir to library-path ..." 1>&5
1166611663
1166711664 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1166811665 fi
1167111668 fi
1167211669
1167311670 else
11674 { { echo "$as_me:11675: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5
11671 { { echo "$as_me:11672: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5
1167511672 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;}
1167611673 { (exit 1); exit 1; }; }
1167711674 fi
1169011687 #define SOCKS 1
1169111688 EOF
1169211689
11693 echo "$as_me:11694: checking if the socks library uses socks4 prefix" >&5
11690 echo "$as_me:11691: checking if the socks library uses socks4 prefix" >&5
1169411691 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6
1169511692 cf_use_socks4=error
1169611693 cat >conftest.$ac_ext <<_ACEOF
11697 #line 11698 "configure"
11694 #line 11695 "configure"
1169811695 #include "confdefs.h"
1169911696
1170011697 #include <socks.h>
1170811705 }
1170911706 _ACEOF
1171011707 rm -f conftest.$ac_objext conftest$ac_exeext
11711 if { (eval echo "$as_me:11712: \"$ac_link\"") >&5
11708 if { (eval echo "$as_me:11709: \"$ac_link\"") >&5
1171211709 (eval $ac_link) 2>&5
1171311710 ac_status=$?
11714 echo "$as_me:11715: \$? = $ac_status" >&5
11711 echo "$as_me:11712: \$? = $ac_status" >&5
1171511712 (exit $ac_status); } &&
1171611713 { ac_try='test -s conftest$ac_exeext'
11717 { (eval echo "$as_me:11718: \"$ac_try\"") >&5
11714 { (eval echo "$as_me:11715: \"$ac_try\"") >&5
1171811715 (eval $ac_try) 2>&5
1171911716 ac_status=$?
11720 echo "$as_me:11721: \$? = $ac_status" >&5
11717 echo "$as_me:11718: \$? = $ac_status" >&5
1172111718 (exit $ac_status); }; }; then
1172211719
1172311720 cat >>confdefs.h <<\EOF
1172911726 echo "$as_me: failed program was:" >&5
1173011727 cat conftest.$ac_ext >&5
1173111728 cat >conftest.$ac_ext <<_ACEOF
11732 #line 11733 "configure"
11729 #line 11730 "configure"
1173311730 #include "confdefs.h"
1173411731 #include <socks.h>
1173511732 int
1174111738 }
1174211739 _ACEOF
1174311740 rm -f conftest.$ac_objext conftest$ac_exeext
11744 if { (eval echo "$as_me:11745: \"$ac_link\"") >&5
11741 if { (eval echo "$as_me:11742: \"$ac_link\"") >&5
1174511742 (eval $ac_link) 2>&5
1174611743 ac_status=$?
11747 echo "$as_me:11748: \$? = $ac_status" >&5
11744 echo "$as_me:11745: \$? = $ac_status" >&5
1174811745 (exit $ac_status); } &&
1174911746 { ac_try='test -s conftest$ac_exeext'
11750 { (eval echo "$as_me:11751: \"$ac_try\"") >&5
11747 { (eval echo "$as_me:11748: \"$ac_try\"") >&5
1175111748 (eval $ac_try) 2>&5
1175211749 ac_status=$?
11753 echo "$as_me:11754: \$? = $ac_status" >&5
11750 echo "$as_me:11751: \$? = $ac_status" >&5
1175411751 (exit $ac_status); }; }; then
1175511752 cf_use_socks4=no
1175611753 else
1175711754 echo "$as_me: failed program was:" >&5
1175811755 cat conftest.$ac_ext >&5
11759 { { echo "$as_me:11760: error: Cannot link with socks5 library" >&5
11756 { { echo "$as_me:11757: error: Cannot link with socks5 library" >&5
1176011757 echo "$as_me: error: Cannot link with socks5 library" >&2;}
1176111758 { (exit 1); exit 1; }; }
1176211759 fi
1176311760 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1176411761 fi
1176511762 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
11766 echo "$as_me:11767: result: $cf_use_socks4" >&5
11763 echo "$as_me:11764: result: $cf_use_socks4" >&5
1176711764 echo "${ECHO_T}$cf_use_socks4" >&6
1176811765
1176911766 if test "$cf_use_socks4" = "yes" ; then
1181811815
1181911816 fi
1182011817
11821 echo "$as_me:11822: checking if socks5p.h is available" >&5
11818 echo "$as_me:11819: checking if socks5p.h is available" >&5
1182211819 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6
1182311820 cat >conftest.$ac_ext <<_ACEOF
11824 #line 11825 "configure"
11821 #line 11822 "configure"
1182511822 #include "confdefs.h"
1182611823
1182711824 #define INCLUDE_PROTOTYPES
1183611833 }
1183711834 _ACEOF
1183811835 rm -f conftest.$ac_objext
11839 if { (eval echo "$as_me:11840: \"$ac_compile\"") >&5
11836 if { (eval echo "$as_me:11837: \"$ac_compile\"") >&5
1184011837 (eval $ac_compile) 2>&5
1184111838 ac_status=$?
11842 echo "$as_me:11843: \$? = $ac_status" >&5
11839 echo "$as_me:11840: \$? = $ac_status" >&5
1184311840 (exit $ac_status); } &&
1184411841 { ac_try='test -s conftest.$ac_objext'
11845 { (eval echo "$as_me:11846: \"$ac_try\"") >&5
11842 { (eval echo "$as_me:11843: \"$ac_try\"") >&5
1184611843 (eval $ac_try) 2>&5
1184711844 ac_status=$?
11848 echo "$as_me:11849: \$? = $ac_status" >&5
11845 echo "$as_me:11846: \$? = $ac_status" >&5
1184911846 (exit $ac_status); }; }; then
1185011847 cf_use_socks5p_h=yes
1185111848 else
1185411851 cf_use_socks5p_h=no
1185511852 fi
1185611853 rm -f conftest.$ac_objext conftest.$ac_ext
11857 echo "$as_me:11858: result: $cf_use_socks5p_h" >&5
11854 echo "$as_me:11855: result: $cf_use_socks5p_h" >&5
1185811855 echo "${ECHO_T}$cf_use_socks5p_h" >&6
1185911856
1186011857 test "$cf_use_socks5p_h" = yes &&
1186611863
1186711864 cf_test_netlibs=no
1186811865
11869 echo "$as_me:11870: checking for network libraries" >&5
11866 echo "$as_me:11867: checking for network libraries" >&5
1187011867 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6
1187111868
1187211869 if test "${cf_cv_netlibs+set}" = set; then
1187311870 echo $ECHO_N "(cached) $ECHO_C" >&6
1187411871 else
1187511872
11876 echo "$as_me:11877: result: working..." >&5
11873 echo "$as_me:11874: result: working..." >&5
1187711874 echo "${ECHO_T}working..." >&6
1187811875
1187911876 cf_cv_netlibs=""
1188511882 for ac_header in windows.h winsock.h winsock2.h
1188611883 do
1188711884 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
11888 echo "$as_me:11889: checking for $ac_header" >&5
11885 echo "$as_me:11886: checking for $ac_header" >&5
1188911886 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
1189011887 if eval "test \"\${$as_ac_Header+set}\" = set"; then
1189111888 echo $ECHO_N "(cached) $ECHO_C" >&6
1189211889 else
1189311890 cat >conftest.$ac_ext <<_ACEOF
11894 #line 11895 "configure"
11891 #line 11892 "configure"
1189511892 #include "confdefs.h"
1189611893 #include <$ac_header>
1189711894 _ACEOF
11898 if { (eval echo "$as_me:11899: \"$ac_cpp conftest.$ac_ext\"") >&5
11895 if { (eval echo "$as_me:11896: \"$ac_cpp conftest.$ac_ext\"") >&5
1189911896 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1190011897 ac_status=$?
1190111898 egrep -v '^ *\+' conftest.er1 >conftest.err
1190211899 rm -f conftest.er1
1190311900 cat conftest.err >&5
11904 echo "$as_me:11905: \$? = $ac_status" >&5
11901 echo "$as_me:11902: \$? = $ac_status" >&5
1190511902 (exit $ac_status); } >/dev/null; then
1190611903 if test -s conftest.err; then
1190711904 ac_cpp_err=$ac_c_preproc_warn_flag
1192011917 fi
1192111918 rm -f conftest.err conftest.$ac_ext
1192211919 fi
11923 echo "$as_me:11924: result: `eval echo '${'$as_ac_Header'}'`" >&5
11920 echo "$as_me:11921: result: `eval echo '${'$as_ac_Header'}'`" >&5
1192411921 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
1192511922 if test `eval echo '${'$as_ac_Header'}'` = yes; then
1192611923 cat >>confdefs.h <<EOF
1194011937 LIBS="$cf_winsock_lib $LIBS"
1194111938
1194211939 cat >conftest.$ac_ext <<_ACEOF
11943 #line 11944 "configure"
11940 #line 11941 "configure"
1194411941 #include "confdefs.h"
1194511942
1194611943 #ifdef HAVE_WINDOWS_H
1196711964 }
1196811965 _ACEOF
1196911966 rm -f conftest.$ac_objext conftest$ac_exeext
11970 if { (eval echo "$as_me:11971: \"$ac_link\"") >&5
11967 if { (eval echo "$as_me:11968: \"$ac_link\"") >&5
1197111968 (eval $ac_link) 2>&5
1197211969 ac_status=$?
11973 echo "$as_me:11974: \$? = $ac_status" >&5
11970 echo "$as_me:11971: \$? = $ac_status" >&5
1197411971 (exit $ac_status); } &&
1197511972 { ac_try='test -s conftest$ac_exeext'
11976 { (eval echo "$as_me:11977: \"$ac_try\"") >&5
11973 { (eval echo "$as_me:11974: \"$ac_try\"") >&5
1197711974 (eval $ac_try) 2>&5
1197811975 ac_status=$?
11979 echo "$as_me:11980: \$? = $ac_status" >&5
11976 echo "$as_me:11977: \$? = $ac_status" >&5
1198011977 (exit $ac_status); }; }; then
1198111978 cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs"
1198211979 else
1198311980 echo "$as_me: failed program was:" >&5
1198411981 cat conftest.$ac_ext >&5
11985 { { echo "$as_me:11986: error: Cannot link against winsock library" >&5
11982 { { echo "$as_me:11983: error: Cannot link against winsock library" >&5
1198611983 echo "$as_me: error: Cannot link against winsock library" >&2;}
1198711984 { (exit 1); exit 1; }; }
1198811985 fi
1199511992 for ac_func in gethostname
1199611993 do
1199711994 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
11998 echo "$as_me:11999: checking for $ac_func" >&5
11995 echo "$as_me:11996: checking for $ac_func" >&5
1199911996 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
1200011997 if eval "test \"\${$as_ac_var+set}\" = set"; then
1200111998 echo $ECHO_N "(cached) $ECHO_C" >&6
1200211999 else
1200312000 cat >conftest.$ac_ext <<_ACEOF
12004 #line 12005 "configure"
12001 #line 12002 "configure"
1200512002 #include "confdefs.h"
1200612003 /* System header to define __stub macros and hopefully few prototypes,
1200712004 which can conflict with char $ac_func (); below. */
1203212029 }
1203312030 _ACEOF
1203412031 rm -f conftest.$ac_objext conftest$ac_exeext
12035 if { (eval echo "$as_me:12036: \"$ac_link\"") >&5
12032 if { (eval echo "$as_me:12033: \"$ac_link\"") >&5
1203612033 (eval $ac_link) 2>&5
1203712034 ac_status=$?
12038 echo "$as_me:12039: \$? = $ac_status" >&5
12035 echo "$as_me:12036: \$? = $ac_status" >&5
1203912036 (exit $ac_status); } &&
1204012037 { ac_try='test -s conftest$ac_exeext'
12041 { (eval echo "$as_me:12042: \"$ac_try\"") >&5
12038 { (eval echo "$as_me:12039: \"$ac_try\"") >&5
1204212039 (eval $ac_try) 2>&5
1204312040 ac_status=$?
12044 echo "$as_me:12045: \$? = $ac_status" >&5
12041 echo "$as_me:12042: \$? = $ac_status" >&5
1204512042 (exit $ac_status); }; }; then
1204612043 eval "$as_ac_var=yes"
1204712044 else
1205112048 fi
1205212049 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1205312050 fi
12054 echo "$as_me:12055: result: `eval echo '${'$as_ac_var'}'`" >&5
12051 echo "$as_me:12052: result: `eval echo '${'$as_ac_var'}'`" >&5
1205512052 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
1205612053 if test `eval echo '${'$as_ac_var'}'` = yes; then
1205712054 cat >>confdefs.h <<EOF
1206012057
1206112058 else
1206212059
12063 echo "$as_me:12064: checking for gethostname in -lnsl" >&5
12060 echo "$as_me:12061: checking for gethostname in -lnsl" >&5
1206412061 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6
1206512062 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then
1206612063 echo $ECHO_N "(cached) $ECHO_C" >&6
1206812065 ac_check_lib_save_LIBS=$LIBS
1206912066 LIBS="-lnsl $cf_cv_netlibs $LIBS"
1207012067 cat >conftest.$ac_ext <<_ACEOF
12071 #line 12072 "configure"
12068 #line 12069 "configure"
1207212069 #include "confdefs.h"
1207312070
1207412071 /* Override any gcc2 internal prototype to avoid an error. */
1208712084 }
1208812085 _ACEOF
1208912086 rm -f conftest.$ac_objext conftest$ac_exeext
12090 if { (eval echo "$as_me:12091: \"$ac_link\"") >&5
12087 if { (eval echo "$as_me:12088: \"$ac_link\"") >&5
1209112088 (eval $ac_link) 2>&5
1209212089 ac_status=$?
12093 echo "$as_me:12094: \$? = $ac_status" >&5
12090 echo "$as_me:12091: \$? = $ac_status" >&5
1209412091 (exit $ac_status); } &&
1209512092 { ac_try='test -s conftest$ac_exeext'
12096 { (eval echo "$as_me:12097: \"$ac_try\"") >&5
12093 { (eval echo "$as_me:12094: \"$ac_try\"") >&5
1209712094 (eval $ac_try) 2>&5
1209812095 ac_status=$?
12099 echo "$as_me:12100: \$? = $ac_status" >&5
12096 echo "$as_me:12097: \$? = $ac_status" >&5
1210012097 (exit $ac_status); }; }; then
1210112098 ac_cv_lib_nsl_gethostname=yes
1210212099 else
1210712104 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1210812105 LIBS=$ac_check_lib_save_LIBS
1210912106 fi
12110 echo "$as_me:12111: result: $ac_cv_lib_nsl_gethostname" >&5
12107 echo "$as_me:12108: result: $ac_cv_lib_nsl_gethostname" >&5
1211112108 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6
1211212109 if test $ac_cv_lib_nsl_gethostname = yes; then
1211312110
1212412121 ac_cv_func_gethostname=unknown
1212512122 unset ac_cv_func_gethostname 2>/dev/null
1212612123
12127 echo "$as_me:12128: checking for gethostname in -lsocket" >&5
12124 echo "$as_me:12125: checking for gethostname in -lsocket" >&5
1212812125 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6
1212912126 if test "${ac_cv_lib_socket_gethostname+set}" = set; then
1213012127 echo $ECHO_N "(cached) $ECHO_C" >&6
1213212129 ac_check_lib_save_LIBS=$LIBS
1213312130 LIBS="-lsocket $cf_cv_netlibs $LIBS"
1213412131 cat >conftest.$ac_ext <<_ACEOF
12135 #line 12136 "configure"
12132 #line 12133 "configure"
1213612133 #include "confdefs.h"
1213712134
1213812135 /* Override any gcc2 internal prototype to avoid an error. */
1215112148 }
1215212149 _ACEOF
1215312150 rm -f conftest.$ac_objext conftest$ac_exeext
12154 if { (eval echo "$as_me:12155: \"$ac_link\"") >&5
12151 if { (eval echo "$as_me:12152: \"$ac_link\"") >&5
1215512152 (eval $ac_link) 2>&5
1215612153 ac_status=$?
12157 echo "$as_me:12158: \$? = $ac_status" >&5
12154 echo "$as_me:12155: \$? = $ac_status" >&5
1215812155 (exit $ac_status); } &&
1215912156 { ac_try='test -s conftest$ac_exeext'
12160 { (eval echo "$as_me:12161: \"$ac_try\"") >&5
12157 { (eval echo "$as_me:12158: \"$ac_try\"") >&5
1216112158 (eval $ac_try) 2>&5
1216212159 ac_status=$?
12163 echo "$as_me:12164: \$? = $ac_status" >&5
12160 echo "$as_me:12161: \$? = $ac_status" >&5
1216412161 (exit $ac_status); }; }; then
1216512162 ac_cv_lib_socket_gethostname=yes
1216612163 else
1217112168 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1217212169 LIBS=$ac_check_lib_save_LIBS
1217312170 fi
12174 echo "$as_me:12175: result: $ac_cv_lib_socket_gethostname" >&5
12171 echo "$as_me:12172: result: $ac_cv_lib_socket_gethostname" >&5
1217512172 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6
1217612173 if test $ac_cv_lib_socket_gethostname = yes; then
1217712174
1219512192 fi
1219612193 done
1219712194
12198 echo "$as_me:12199: checking for main in -linet" >&5
12195 echo "$as_me:12196: checking for main in -linet" >&5
1219912196 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6
1220012197 if test "${ac_cv_lib_inet_main+set}" = set; then
1220112198 echo $ECHO_N "(cached) $ECHO_C" >&6
1220312200 ac_check_lib_save_LIBS=$LIBS
1220412201 LIBS="-linet $LIBS"
1220512202 cat >conftest.$ac_ext <<_ACEOF
12206 #line 12207 "configure"
12203 #line 12204 "configure"
1220712204 #include "confdefs.h"
1220812205
1220912206 int
1221512212 }
1221612213 _ACEOF
1221712214 rm -f conftest.$ac_objext conftest$ac_exeext
12218 if { (eval echo "$as_me:12219: \"$ac_link\"") >&5
12215 if { (eval echo "$as_me:12216: \"$ac_link\"") >&5
1221912216 (eval $ac_link) 2>&5
1222012217 ac_status=$?
12221 echo "$as_me:12222: \$? = $ac_status" >&5
12218 echo "$as_me:12219: \$? = $ac_status" >&5
1222212219 (exit $ac_status); } &&
1222312220 { ac_try='test -s conftest$ac_exeext'
12224 { (eval echo "$as_me:12225: \"$ac_try\"") >&5
12221 { (eval echo "$as_me:12222: \"$ac_try\"") >&5
1222512222 (eval $ac_try) 2>&5
1222612223 ac_status=$?
12227 echo "$as_me:12228: \$? = $ac_status" >&5
12224 echo "$as_me:12225: \$? = $ac_status" >&5
1222812225 (exit $ac_status); }; }; then
1222912226 ac_cv_lib_inet_main=yes
1223012227 else
1223512232 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1223612233 LIBS=$ac_check_lib_save_LIBS
1223712234 fi
12238 echo "$as_me:12239: result: $ac_cv_lib_inet_main" >&5
12235 echo "$as_me:12236: result: $ac_cv_lib_inet_main" >&5
1223912236 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6
1224012237 if test $ac_cv_lib_inet_main = yes; then
1224112238 cf_cv_netlibs="-linet $cf_cv_netlibs"
1224612243 for ac_func in socket
1224712244 do
1224812245 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
12249 echo "$as_me:12250: checking for $ac_func" >&5
12246 echo "$as_me:12247: checking for $ac_func" >&5
1225012247 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
1225112248 if eval "test \"\${$as_ac_var+set}\" = set"; then
1225212249 echo $ECHO_N "(cached) $ECHO_C" >&6
1225312250 else
1225412251 cat >conftest.$ac_ext <<_ACEOF
12255 #line 12256 "configure"
12252 #line 12253 "configure"
1225612253 #include "confdefs.h"
1225712254 /* System header to define __stub macros and hopefully few prototypes,
1225812255 which can conflict with char $ac_func (); below. */
1228312280 }
1228412281 _ACEOF
1228512282 rm -f conftest.$ac_objext conftest$ac_exeext
12286 if { (eval echo "$as_me:12287: \"$ac_link\"") >&5
12283 if { (eval echo "$as_me:12284: \"$ac_link\"") >&5
1228712284 (eval $ac_link) 2>&5
1228812285 ac_status=$?
12289 echo "$as_me:12290: \$? = $ac_status" >&5
12286 echo "$as_me:12287: \$? = $ac_status" >&5
1229012287 (exit $ac_status); } &&
1229112288 { ac_try='test -s conftest$ac_exeext'
12292 { (eval echo "$as_me:12293: \"$ac_try\"") >&5
12289 { (eval echo "$as_me:12290: \"$ac_try\"") >&5
1229312290 (eval $ac_try) 2>&5
1229412291 ac_status=$?
12295 echo "$as_me:12296: \$? = $ac_status" >&5
12292 echo "$as_me:12293: \$? = $ac_status" >&5
1229612293 (exit $ac_status); }; }; then
1229712294 eval "$as_ac_var=yes"
1229812295 else
1230212299 fi
1230312300 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1230412301 fi
12305 echo "$as_me:12306: result: `eval echo '${'$as_ac_var'}'`" >&5
12302 echo "$as_me:12303: result: `eval echo '${'$as_ac_var'}'`" >&5
1230612303 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
1230712304 if test `eval echo '${'$as_ac_var'}'` = yes; then
1230812305 cat >>confdefs.h <<EOF
1231112308
1231212309 else
1231312310
12314 echo "$as_me:12315: checking for socket in -lsocket" >&5
12311 echo "$as_me:12312: checking for socket in -lsocket" >&5
1231512312 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6
1231612313 if test "${ac_cv_lib_socket_socket+set}" = set; then
1231712314 echo $ECHO_N "(cached) $ECHO_C" >&6
1231912316 ac_check_lib_save_LIBS=$LIBS
1232012317 LIBS="-lsocket $cf_cv_netlibs $LIBS"
1232112318 cat >conftest.$ac_ext <<_ACEOF
12322 #line 12323 "configure"
12319 #line 12320 "configure"
1232312320 #include "confdefs.h"
1232412321
1232512322 /* Override any gcc2 internal prototype to avoid an error. */
1233812335 }
1233912336 _ACEOF
1234012337 rm -f conftest.$ac_objext conftest$ac_exeext
12341 if { (eval echo "$as_me:12342: \"$ac_link\"") >&5
12338 if { (eval echo "$as_me:12339: \"$ac_link\"") >&5
1234212339 (eval $ac_link) 2>&5
1234312340 ac_status=$?
12344 echo "$as_me:12345: \$? = $ac_status" >&5
12341 echo "$as_me:12342: \$? = $ac_status" >&5
1234512342 (exit $ac_status); } &&
1234612343 { ac_try='test -s conftest$ac_exeext'
12347 { (eval echo "$as_me:12348: \"$ac_try\"") >&5
12344 { (eval echo "$as_me:12345: \"$ac_try\"") >&5
1234812345 (eval $ac_try) 2>&5
1234912346 ac_status=$?
12350 echo "$as_me:12351: \$? = $ac_status" >&5
12347 echo "$as_me:12348: \$? = $ac_status" >&5
1235112348 (exit $ac_status); }; }; then
1235212349 ac_cv_lib_socket_socket=yes
1235312350 else
1235812355 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1235912356 LIBS=$ac_check_lib_save_LIBS
1236012357 fi
12361 echo "$as_me:12362: result: $ac_cv_lib_socket_socket" >&5
12358 echo "$as_me:12359: result: $ac_cv_lib_socket_socket" >&5
1236212359 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6
1236312360 if test $ac_cv_lib_socket_socket = yes; then
1236412361
1237512372 ac_cv_func_socket=unknown
1237612373 unset ac_cv_func_socket 2>/dev/null
1237712374
12378 echo "$as_me:12379: checking for socket in -lbsd" >&5
12375 echo "$as_me:12376: checking for socket in -lbsd" >&5
1237912376 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6
1238012377 if test "${ac_cv_lib_bsd_socket+set}" = set; then
1238112378 echo $ECHO_N "(cached) $ECHO_C" >&6
1238312380 ac_check_lib_save_LIBS=$LIBS
1238412381 LIBS="-lbsd $cf_cv_netlibs $LIBS"
1238512382 cat >conftest.$ac_ext <<_ACEOF
12386 #line 12387 "configure"
12383 #line 12384 "configure"
1238712384 #include "confdefs.h"
1238812385
1238912386 /* Override any gcc2 internal prototype to avoid an error. */
1240212399 }
1240312400 _ACEOF
1240412401 rm -f conftest.$ac_objext conftest$ac_exeext
12405 if { (eval echo "$as_me:12406: \"$ac_link\"") >&5
12402 if { (eval echo "$as_me:12403: \"$ac_link\"") >&5
1240612403 (eval $ac_link) 2>&5
1240712404 ac_status=$?
12408 echo "$as_me:12409: \$? = $ac_status" >&5
12405 echo "$as_me:12406: \$? = $ac_status" >&5
1240912406 (exit $ac_status); } &&
1241012407 { ac_try='test -s conftest$ac_exeext'
12411 { (eval echo "$as_me:12412: \"$ac_try\"") >&5
12408 { (eval echo "$as_me:12409: \"$ac_try\"") >&5
1241212409 (eval $ac_try) 2>&5
1241312410 ac_status=$?
12414 echo "$as_me:12415: \$? = $ac_status" >&5
12411 echo "$as_me:12412: \$? = $ac_status" >&5
1241512412 (exit $ac_status); }; }; then
1241612413 ac_cv_lib_bsd_socket=yes
1241712414 else
1242212419 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1242312420 LIBS=$ac_check_lib_save_LIBS
1242412421 fi
12425 echo "$as_me:12426: result: $ac_cv_lib_bsd_socket" >&5
12422 echo "$as_me:12423: result: $ac_cv_lib_bsd_socket" >&5
1242612423 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6
1242712424 if test $ac_cv_lib_bsd_socket = yes; then
1242812425
1245112448 for ac_func in gethostbyname
1245212449 do
1245312450 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
12454 echo "$as_me:12455: checking for $ac_func" >&5
12451 echo "$as_me:12452: checking for $ac_func" >&5
1245512452 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
1245612453 if eval "test \"\${$as_ac_var+set}\" = set"; then
1245712454 echo $ECHO_N "(cached) $ECHO_C" >&6
1245812455 else
1245912456 cat >conftest.$ac_ext <<_ACEOF
12460 #line 12461 "configure"
12457 #line 12458 "configure"
1246112458 #include "confdefs.h"
1246212459 /* System header to define __stub macros and hopefully few prototypes,
1246312460 which can conflict with char $ac_func (); below. */
1248812485 }
1248912486 _ACEOF
1249012487 rm -f conftest.$ac_objext conftest$ac_exeext
12491 if { (eval echo "$as_me:12492: \"$ac_link\"") >&5
12488 if { (eval echo "$as_me:12489: \"$ac_link\"") >&5
1249212489 (eval $ac_link) 2>&5
1249312490 ac_status=$?
12494 echo "$as_me:12495: \$? = $ac_status" >&5
12491 echo "$as_me:12492: \$? = $ac_status" >&5
1249512492 (exit $ac_status); } &&
1249612493 { ac_try='test -s conftest$ac_exeext'
12497 { (eval echo "$as_me:12498: \"$ac_try\"") >&5
12494 { (eval echo "$as_me:12495: \"$ac_try\"") >&5
1249812495 (eval $ac_try) 2>&5
1249912496 ac_status=$?
12500 echo "$as_me:12501: \$? = $ac_status" >&5
12497 echo "$as_me:12498: \$? = $ac_status" >&5
1250112498 (exit $ac_status); }; }; then
1250212499 eval "$as_ac_var=yes"
1250312500 else
1250712504 fi
1250812505 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1250912506 fi
12510 echo "$as_me:12511: result: `eval echo '${'$as_ac_var'}'`" >&5
12507 echo "$as_me:12508: result: `eval echo '${'$as_ac_var'}'`" >&5
1251112508 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
1251212509 if test `eval echo '${'$as_ac_var'}'` = yes; then
1251312510 cat >>confdefs.h <<EOF
1251612513
1251712514 else
1251812515
12519 echo "$as_me:12520: checking for gethostbyname in -lnsl" >&5
12516 echo "$as_me:12517: checking for gethostbyname in -lnsl" >&5
1252012517 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
1252112518 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
1252212519 echo $ECHO_N "(cached) $ECHO_C" >&6
1252412521 ac_check_lib_save_LIBS=$LIBS
1252512522 LIBS="-lnsl $cf_cv_netlibs $LIBS"
1252612523 cat >conftest.$ac_ext <<_ACEOF
12527 #line 12528 "configure"
12524 #line 12525 "configure"
1252812525 #include "confdefs.h"
1252912526
1253012527 /* Override any gcc2 internal prototype to avoid an error. */
1254312540 }
1254412541 _ACEOF
1254512542 rm -f conftest.$ac_objext conftest$ac_exeext
12546 if { (eval echo "$as_me:12547: \"$ac_link\"") >&5
12543 if { (eval echo "$as_me:12544: \"$ac_link\"") >&5
1254712544 (eval $ac_link) 2>&5
1254812545 ac_status=$?
12549 echo "$as_me:12550: \$? = $ac_status" >&5
12546 echo "$as_me:12547: \$? = $ac_status" >&5
1255012547 (exit $ac_status); } &&
1255112548 { ac_try='test -s conftest$ac_exeext'
12552 { (eval echo "$as_me:12553: \"$ac_try\"") >&5
12549 { (eval echo "$as_me:12550: \"$ac_try\"") >&5
1255312550 (eval $ac_try) 2>&5
1255412551 ac_status=$?
12555 echo "$as_me:12556: \$? = $ac_status" >&5
12552 echo "$as_me:12553: \$? = $ac_status" >&5
1255612553 (exit $ac_status); }; }; then
1255712554 ac_cv_lib_nsl_gethostbyname=yes
1255812555 else
1256312560 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1256412561 LIBS=$ac_check_lib_save_LIBS
1256512562 fi
12566 echo "$as_me:12567: result: $ac_cv_lib_nsl_gethostbyname" >&5
12563 echo "$as_me:12564: result: $ac_cv_lib_nsl_gethostbyname" >&5
1256712564 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
1256812565 if test $ac_cv_lib_nsl_gethostbyname = yes; then
1256912566
1258812585 for ac_func in inet_ntoa
1258912586 do
1259012587 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
12591 echo "$as_me:12592: checking for $ac_func" >&5
12588 echo "$as_me:12589: checking for $ac_func" >&5
1259212589 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
1259312590 if eval "test \"\${$as_ac_var+set}\" = set"; then
1259412591 echo $ECHO_N "(cached) $ECHO_C" >&6
1259512592 else
1259612593 cat >conftest.$ac_ext <<_ACEOF
12597 #line 12598 "configure"
12594 #line 12595 "configure"
1259812595 #include "confdefs.h"
1259912596 /* System header to define __stub macros and hopefully few prototypes,
1260012597 which can conflict with char $ac_func (); below. */
1262512622 }
1262612623 _ACEOF
1262712624 rm -f conftest.$ac_objext conftest$ac_exeext
12628 if { (eval echo "$as_me:12629: \"$ac_link\"") >&5
12625 if { (eval echo "$as_me:12626: \"$ac_link\"") >&5
1262912626 (eval $ac_link) 2>&5
1263012627 ac_status=$?
12631 echo "$as_me:12632: \$? = $ac_status" >&5
12628 echo "$as_me:12629: \$? = $ac_status" >&5
1263212629 (exit $ac_status); } &&
1263312630 { ac_try='test -s conftest$ac_exeext'
12634 { (eval echo "$as_me:12635: \"$ac_try\"") >&5
12631 { (eval echo "$as_me:12632: \"$ac_try\"") >&5
1263512632 (eval $ac_try) 2>&5
1263612633 ac_status=$?
12637 echo "$as_me:12638: \$? = $ac_status" >&5
12634 echo "$as_me:12635: \$? = $ac_status" >&5
1263812635 (exit $ac_status); }; }; then
1263912636 eval "$as_ac_var=yes"
1264012637 else
1264412641 fi
1264512642 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1264612643 fi
12647 echo "$as_me:12648: result: `eval echo '${'$as_ac_var'}'`" >&5
12644 echo "$as_me:12645: result: `eval echo '${'$as_ac_var'}'`" >&5
1264812645 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
1264912646 if test `eval echo '${'$as_ac_var'}'` = yes; then
1265012647 cat >>confdefs.h <<EOF
1265312650
1265412651 else
1265512652
12656 echo "$as_me:12657: checking for inet_ntoa in -lnsl" >&5
12653 echo "$as_me:12654: checking for inet_ntoa in -lnsl" >&5
1265712654 echo $ECHO_N "checking for inet_ntoa in -lnsl... $ECHO_C" >&6
1265812655 if test "${ac_cv_lib_nsl_inet_ntoa+set}" = set; then
1265912656 echo $ECHO_N "(cached) $ECHO_C" >&6
1266112658 ac_check_lib_save_LIBS=$LIBS
1266212659 LIBS="-lnsl $cf_cv_netlibs $LIBS"
1266312660 cat >conftest.$ac_ext <<_ACEOF
12664 #line 12665 "configure"
12661 #line 12662 "configure"
1266512662 #include "confdefs.h"
1266612663
1266712664 /* Override any gcc2 internal prototype to avoid an error. */
1268012677 }
1268112678 _ACEOF
1268212679 rm -f conftest.$ac_objext conftest$ac_exeext
12683 if { (eval echo "$as_me:12684: \"$ac_link\"") >&5
12680 if { (eval echo "$as_me:12681: \"$ac_link\"") >&5
1268412681 (eval $ac_link) 2>&5
1268512682 ac_status=$?
12686 echo "$as_me:12687: \$? = $ac_status" >&5
12683 echo "$as_me:12684: \$? = $ac_status" >&5
1268712684 (exit $ac_status); } &&
1268812685 { ac_try='test -s conftest$ac_exeext'
12689 { (eval echo "$as_me:12690: \"$ac_try\"") >&5
12686 { (eval echo "$as_me:12687: \"$ac_try\"") >&5
1269012687 (eval $ac_try) 2>&5
1269112688 ac_status=$?
12692 echo "$as_me:12693: \$? = $ac_status" >&5
12689 echo "$as_me:12690: \$? = $ac_status" >&5
1269312690 (exit $ac_status); }; }; then
1269412691 ac_cv_lib_nsl_inet_ntoa=yes
1269512692 else
1270012697 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1270112698 LIBS=$ac_check_lib_save_LIBS
1270212699 fi
12703 echo "$as_me:12704: result: $ac_cv_lib_nsl_inet_ntoa" >&5
12700 echo "$as_me:12701: result: $ac_cv_lib_nsl_inet_ntoa" >&5
1270412701 echo "${ECHO_T}$ac_cv_lib_nsl_inet_ntoa" >&6
1270512702 if test $ac_cv_lib_nsl_inet_ntoa = yes; then
1270612703
1272512722 for ac_func in gethostbyname
1272612723 do
1272712724 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
12728 echo "$as_me:12729: checking for $ac_func" >&5
12725 echo "$as_me:12726: checking for $ac_func" >&5
1272912726 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
1273012727 if eval "test \"\${$as_ac_var+set}\" = set"; then
1273112728 echo $ECHO_N "(cached) $ECHO_C" >&6
1273212729 else
1273312730 cat >conftest.$ac_ext <<_ACEOF
12734 #line 12735 "configure"
12731 #line 12732 "configure"
1273512732 #include "confdefs.h"
1273612733 /* System header to define __stub macros and hopefully few prototypes,
1273712734 which can conflict with char $ac_func (); below. */
1276212759 }
1276312760 _ACEOF
1276412761 rm -f conftest.$ac_objext conftest$ac_exeext
12765 if { (eval echo "$as_me:12766: \"$ac_link\"") >&5
12762 if { (eval echo "$as_me:12763: \"$ac_link\"") >&5
1276612763 (eval $ac_link) 2>&5
1276712764 ac_status=$?
12768 echo "$as_me:12769: \$? = $ac_status" >&5
12765 echo "$as_me:12766: \$? = $ac_status" >&5
1276912766 (exit $ac_status); } &&
1277012767 { ac_try='test -s conftest$ac_exeext'
12771 { (eval echo "$as_me:12772: \"$ac_try\"") >&5
12768 { (eval echo "$as_me:12769: \"$ac_try\"") >&5
1277212769 (eval $ac_try) 2>&5
1277312770 ac_status=$?
12774 echo "$as_me:12775: \$? = $ac_status" >&5
12771 echo "$as_me:12772: \$? = $ac_status" >&5
1277512772 (exit $ac_status); }; }; then
1277612773 eval "$as_ac_var=yes"
1277712774 else
1278112778 fi
1278212779 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1278312780 fi
12784 echo "$as_me:12785: result: `eval echo '${'$as_ac_var'}'`" >&5
12781 echo "$as_me:12782: result: `eval echo '${'$as_ac_var'}'`" >&5
1278512782 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
1278612783 if test `eval echo '${'$as_ac_var'}'` = yes; then
1278712784 cat >>confdefs.h <<EOF
1279012787
1279112788 else
1279212789
12793 echo "$as_me:12794: checking for gethostbyname in -lnetwork" >&5
12790 echo "$as_me:12791: checking for gethostbyname in -lnetwork" >&5
1279412791 echo $ECHO_N "checking for gethostbyname in -lnetwork... $ECHO_C" >&6
1279512792 if test "${ac_cv_lib_network_gethostbyname+set}" = set; then
1279612793 echo $ECHO_N "(cached) $ECHO_C" >&6
1279812795 ac_check_lib_save_LIBS=$LIBS
1279912796 LIBS="-lnetwork $cf_cv_netlibs $LIBS"
1280012797 cat >conftest.$ac_ext <<_ACEOF
12801 #line 12802 "configure"
12798 #line 12799 "configure"
1280212799 #include "confdefs.h"
1280312800
1280412801 /* Override any gcc2 internal prototype to avoid an error. */
1281712814 }
1281812815 _ACEOF
1281912816 rm -f conftest.$ac_objext conftest$ac_exeext
12820 if { (eval echo "$as_me:12821: \"$ac_link\"") >&5
12817 if { (eval echo "$as_me:12818: \"$ac_link\"") >&5
1282112818 (eval $ac_link) 2>&5
1282212819 ac_status=$?
12823 echo "$as_me:12824: \$? = $ac_status" >&5
12820 echo "$as_me:12821: \$? = $ac_status" >&5
1282412821 (exit $ac_status); } &&
1282512822 { ac_try='test -s conftest$ac_exeext'
12826 { (eval echo "$as_me:12827: \"$ac_try\"") >&5
12823 { (eval echo "$as_me:12824: \"$ac_try\"") >&5
1282712824 (eval $ac_try) 2>&5
1282812825 ac_status=$?
12829 echo "$as_me:12830: \$? = $ac_status" >&5
12826 echo "$as_me:12827: \$? = $ac_status" >&5
1283012827 (exit $ac_status); }; }; then
1283112828 ac_cv_lib_network_gethostbyname=yes
1283212829 else
1283712834 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1283812835 LIBS=$ac_check_lib_save_LIBS
1283912836 fi
12840 echo "$as_me:12841: result: $ac_cv_lib_network_gethostbyname" >&5
12837 echo "$as_me:12838: result: $ac_cv_lib_network_gethostbyname" >&5
1284112838 echo "${ECHO_T}$ac_cv_lib_network_gethostbyname" >&6
1284212839 if test $ac_cv_lib_network_gethostbyname = yes; then
1284312840
1286212859 for ac_func in strcasecmp
1286312860 do
1286412861 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
12865 echo "$as_me:12866: checking for $ac_func" >&5
12862 echo "$as_me:12863: checking for $ac_func" >&5
1286612863 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
1286712864 if eval "test \"\${$as_ac_var+set}\" = set"; then
1286812865 echo $ECHO_N "(cached) $ECHO_C" >&6
1286912866 else
1287012867 cat >conftest.$ac_ext <<_ACEOF
12871 #line 12872 "configure"
12868 #line 12869 "configure"
1287212869 #include "confdefs.h"
1287312870 /* System header to define __stub macros and hopefully few prototypes,
1287412871 which can conflict with char $ac_func (); below. */
1289912896 }
1290012897 _ACEOF
1290112898 rm -f conftest.$ac_objext conftest$ac_exeext
12902 if { (eval echo "$as_me:12903: \"$ac_link\"") >&5
12899 if { (eval echo "$as_me:12900: \"$ac_link\"") >&5
1290312900 (eval $ac_link) 2>&5
1290412901 ac_status=$?
12905 echo "$as_me:12906: \$? = $ac_status" >&5
12902 echo "$as_me:12903: \$? = $ac_status" >&5
1290612903 (exit $ac_status); } &&
1290712904 { ac_try='test -s conftest$ac_exeext'
12908 { (eval echo "$as_me:12909: \"$ac_try\"") >&5
12905 { (eval echo "$as_me:12906: \"$ac_try\"") >&5
1290912906 (eval $ac_try) 2>&5
1291012907 ac_status=$?
12911 echo "$as_me:12912: \$? = $ac_status" >&5
12908 echo "$as_me:12909: \$? = $ac_status" >&5
1291212909 (exit $ac_status); }; }; then
1291312910 eval "$as_ac_var=yes"
1291412911 else
1291812915 fi
1291912916 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1292012917 fi
12921 echo "$as_me:12922: result: `eval echo '${'$as_ac_var'}'`" >&5
12918 echo "$as_me:12919: result: `eval echo '${'$as_ac_var'}'`" >&5
1292212919 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
1292312920 if test `eval echo '${'$as_ac_var'}'` = yes; then
1292412921 cat >>confdefs.h <<EOF
1292712924
1292812925 else
1292912926
12930 echo "$as_me:12931: checking for strcasecmp in -lresolv" >&5
12927 echo "$as_me:12928: checking for strcasecmp in -lresolv" >&5
1293112928 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6
1293212929 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then
1293312930 echo $ECHO_N "(cached) $ECHO_C" >&6
1293512932 ac_check_lib_save_LIBS=$LIBS
1293612933 LIBS="-lresolv $cf_cv_netlibs $LIBS"
1293712934 cat >conftest.$ac_ext <<_ACEOF
12938 #line 12939 "configure"
12935 #line 12936 "configure"
1293912936 #include "confdefs.h"
1294012937
1294112938 /* Override any gcc2 internal prototype to avoid an error. */
1295412951 }
1295512952 _ACEOF
1295612953 rm -f conftest.$ac_objext conftest$ac_exeext
12957 if { (eval echo "$as_me:12958: \"$ac_link\"") >&5
12954 if { (eval echo "$as_me:12955: \"$ac_link\"") >&5
1295812955 (eval $ac_link) 2>&5
1295912956 ac_status=$?
12960 echo "$as_me:12961: \$? = $ac_status" >&5
12957 echo "$as_me:12958: \$? = $ac_status" >&5
1296112958 (exit $ac_status); } &&
1296212959 { ac_try='test -s conftest$ac_exeext'
12963 { (eval echo "$as_me:12964: \"$ac_try\"") >&5
12960 { (eval echo "$as_me:12961: \"$ac_try\"") >&5
1296412961 (eval $ac_try) 2>&5
1296512962 ac_status=$?
12966 echo "$as_me:12967: \$? = $ac_status" >&5
12963 echo "$as_me:12964: \$? = $ac_status" >&5
1296712964 (exit $ac_status); }; }; then
1296812965 ac_cv_lib_resolv_strcasecmp=yes
1296912966 else
1297412971 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1297512972 LIBS=$ac_check_lib_save_LIBS
1297612973 fi
12977 echo "$as_me:12978: result: $ac_cv_lib_resolv_strcasecmp" >&5
12974 echo "$as_me:12975: result: $ac_cv_lib_resolv_strcasecmp" >&5
1297812975 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6
1297912976 if test $ac_cv_lib_resolv_strcasecmp = yes; then
1298012977
1301613013
1301713014 fi
1301813015
13019 echo "$as_me:13020: checking for inet_aton function" >&5
13016 echo "$as_me:13017: checking for inet_aton function" >&5
1302013017 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6
1302113018 if test "${cf_cv_have_inet_aton+set}" = set; then
1302213019 echo $ECHO_N "(cached) $ECHO_C" >&6
1302313020 else
1302413021
1302513022 cat >conftest.$ac_ext <<_ACEOF
13026 #line 13027 "configure"
13023 #line 13024 "configure"
1302713024 #include "confdefs.h"
1302813025
1302913026 #if defined(__MINGW32__)
1305813055 }
1305913056 _ACEOF
1306013057 rm -f conftest.$ac_objext conftest$ac_exeext
13061 if { (eval echo "$as_me:13062: \"$ac_link\"") >&5
13058 if { (eval echo "$as_me:13059: \"$ac_link\"") >&5
1306213059 (eval $ac_link) 2>&5
1306313060 ac_status=$?
13064 echo "$as_me:13065: \$? = $ac_status" >&5
13061 echo "$as_me:13062: \$? = $ac_status" >&5
1306513062 (exit $ac_status); } &&
1306613063 { ac_try='test -s conftest$ac_exeext'
13067 { (eval echo "$as_me:13068: \"$ac_try\"") >&5
13064 { (eval echo "$as_me:13065: \"$ac_try\"") >&5
1306813065 (eval $ac_try) 2>&5
1306913066 ac_status=$?
13070 echo "$as_me:13071: \$? = $ac_status" >&5
13067 echo "$as_me:13068: \$? = $ac_status" >&5
1307113068 (exit $ac_status); }; }; then
1307213069 cf_cv_have_inet_aton=yes
1307313070 else
1307713074 fi
1307813075 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1307913076 fi
13080 echo "$as_me:13081: result: $cf_cv_have_inet_aton" >&5
13077 echo "$as_me:13078: result: $cf_cv_have_inet_aton" >&5
1308113078 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6
1308213079 if test "$cf_cv_have_inet_aton" = yes ; then
1308313080
1308613083 EOF
1308713084
1308813085 else
13089 echo "$as_me:13090: checking for inet_addr function" >&5
13086 echo "$as_me:13087: checking for inet_addr function" >&5
1309013087 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6
1309113088 if test "${cf_cv_have_inet_addr+set}" = set; then
1309213089 echo $ECHO_N "(cached) $ECHO_C" >&6
1309313090 else
1309413091
1309513092 cat >conftest.$ac_ext <<_ACEOF
13096 #line 13097 "configure"
13093 #line 13094 "configure"
1309713094 #include "confdefs.h"
1309813095
1309913096 #if defined(__MINGW32__)
1312813125 }
1312913126 _ACEOF
1313013127 rm -f conftest.$ac_objext conftest$ac_exeext
13131 if { (eval echo "$as_me:13132: \"$ac_link\"") >&5
13128 if { (eval echo "$as_me:13129: \"$ac_link\"") >&5
1313213129 (eval $ac_link) 2>&5
1313313130 ac_status=$?
13134 echo "$as_me:13135: \$? = $ac_status" >&5
13131 echo "$as_me:13132: \$? = $ac_status" >&5
1313513132 (exit $ac_status); } &&
1313613133 { ac_try='test -s conftest$ac_exeext'
13137 { (eval echo "$as_me:13138: \"$ac_try\"") >&5
13134 { (eval echo "$as_me:13135: \"$ac_try\"") >&5
1313813135 (eval $ac_try) 2>&5
1313913136 ac_status=$?
13140 echo "$as_me:13141: \$? = $ac_status" >&5
13137 echo "$as_me:13138: \$? = $ac_status" >&5
1314113138 (exit $ac_status); }; }; then
1314213139 cf_cv_have_inet_addr=yes
1314313140 else
1314713144 fi
1314813145 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1314913146 fi
13150 echo "$as_me:13151: result: $cf_cv_have_inet_addr" >&5
13147 echo "$as_me:13148: result: $cf_cv_have_inet_addr" >&5
1315113148 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6
1315213149 if test "$cf_cv_have_inet_addr" = no ; then
13153 echo "$as_me:13154: checking for library with inet_addr" >&5
13150 echo "$as_me:13151: checking for library with inet_addr" >&5
1315413151 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6
1315513152 if test "${cf_cv_lib_inet_addr+set}" = set; then
1315613153 echo $ECHO_N "(cached) $ECHO_C" >&6
1316113158 do
1316213159 LIBS="$cf_save_LIBS $cf_inetlib"
1316313160 cat >conftest.$ac_ext <<_ACEOF
13164 #line 13165 "configure"
13161 #line 13162 "configure"
1316513162 #include "confdefs.h"
1316613163 #include <sys/types.h>
1316713164 #include <sys/socket.h>
1317713174 }
1317813175 _ACEOF
1317913176 rm -f conftest.$ac_objext conftest$ac_exeext
13180 if { (eval echo "$as_me:13181: \"$ac_link\"") >&5
13177 if { (eval echo "$as_me:13178: \"$ac_link\"") >&5
1318113178 (eval $ac_link) 2>&5
1318213179 ac_status=$?
13183 echo "$as_me:13184: \$? = $ac_status" >&5
13180 echo "$as_me:13181: \$? = $ac_status" >&5
1318413181 (exit $ac_status); } &&
1318513182 { ac_try='test -s conftest$ac_exeext'
13186 { (eval echo "$as_me:13187: \"$ac_try\"") >&5
13183 { (eval echo "$as_me:13184: \"$ac_try\"") >&5
1318713184 (eval $ac_try) 2>&5
1318813185 ac_status=$?
13189 echo "$as_me:13190: \$? = $ac_status" >&5
13186 echo "$as_me:13187: \$? = $ac_status" >&5
1319013187 (exit $ac_status); }; }; then
1319113188 cf_cv_lib_inet_addr=$cf_inetlib
1319213189 else
1320013197 done
1320113198
1320213199 fi
13203 echo "$as_me:13204: result: $cf_cv_lib_inet_addr" >&5
13200 echo "$as_me:13201: result: $cf_cv_lib_inet_addr" >&5
1320413201 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6
1320513202 if test "$cf_cv_lib_inet_addr" != no ; then
1320613203 LIBS="$cf_cv_lib_inet_addr $LIBS"
1320713204 else
13208 { echo "$as_me:13209: WARNING: Unable to find library for inet_addr function" >&5
13205 { echo "$as_me:13206: WARNING: Unable to find library for inet_addr function" >&5
1320913206 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;}
1321013207 fi
1321113208 fi
1321213209 fi
1321313210
13214 echo "$as_me:13215: checking if you want to use pkg-config" >&5
13211 echo "$as_me:13212: checking if you want to use pkg-config" >&5
1321513212 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6
1321613213
1321713214 # Check whether --with-pkg-config or --without-pkg-config was given.
1322113218 else
1322213219 cf_pkg_config=yes
1322313220 fi;
13224 echo "$as_me:13225: result: $cf_pkg_config" >&5
13221 echo "$as_me:13222: result: $cf_pkg_config" >&5
1322513222 echo "${ECHO_T}$cf_pkg_config" >&6
1322613223
1322713224 case $cf_pkg_config in #(vi
1323313230 if test -n "$ac_tool_prefix"; then
1323413231 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
1323513232 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
13236 echo "$as_me:13237: checking for $ac_word" >&5
13233 echo "$as_me:13234: checking for $ac_word" >&5
1323713234 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1323813235 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
1323913236 echo $ECHO_N "(cached) $ECHO_C" >&6
1325013247 test -z "$ac_dir" && ac_dir=.
1325113248 if $as_executable_p "$ac_dir/$ac_word"; then
1325213249 ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word"
13253 echo "$as_me:13254: found $ac_dir/$ac_word" >&5
13250 echo "$as_me:13251: found $ac_dir/$ac_word" >&5
1325413251 break
1325513252 fi
1325613253 done
1326113258 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
1326213259
1326313260 if test -n "$PKG_CONFIG"; then
13264 echo "$as_me:13265: result: $PKG_CONFIG" >&5
13261 echo "$as_me:13262: result: $PKG_CONFIG" >&5
1326513262 echo "${ECHO_T}$PKG_CONFIG" >&6
1326613263 else
13267 echo "$as_me:13268: result: no" >&5
13264 echo "$as_me:13265: result: no" >&5
1326813265 echo "${ECHO_T}no" >&6
1326913266 fi
1327013267
1327313270 ac_pt_PKG_CONFIG=$PKG_CONFIG
1327413271 # Extract the first word of "pkg-config", so it can be a program name with args.
1327513272 set dummy pkg-config; ac_word=$2
13276 echo "$as_me:13277: checking for $ac_word" >&5
13273 echo "$as_me:13274: checking for $ac_word" >&5
1327713274 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1327813275 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
1327913276 echo $ECHO_N "(cached) $ECHO_C" >&6
1329013287 test -z "$ac_dir" && ac_dir=.
1329113288 if $as_executable_p "$ac_dir/$ac_word"; then
1329213289 ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word"
13293 echo "$as_me:13294: found $ac_dir/$ac_word" >&5
13290 echo "$as_me:13291: found $ac_dir/$ac_word" >&5
1329413291 break
1329513292 fi
1329613293 done
1330213299 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
1330313300
1330413301 if test -n "$ac_pt_PKG_CONFIG"; then
13305 echo "$as_me:13306: result: $ac_pt_PKG_CONFIG" >&5
13302 echo "$as_me:13303: result: $ac_pt_PKG_CONFIG" >&5
1330613303 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6
1330713304 else
13308 echo "$as_me:13309: result: no" >&5
13305 echo "$as_me:13306: result: no" >&5
1330913306 echo "${ECHO_T}no" >&6
1331013307 fi
1331113308
1334813345 PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%`
1334913346 ;;
1335013347 *)
13351 { { echo "$as_me:13352: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
13348 { { echo "$as_me:13349: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
1335213349 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;}
1335313350 { (exit 1); exit 1; }; }
1335413351 ;;
1339713394 cf_save_CPPFLAGS=$CPPFLAGS
1339813395 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1339913396 cat >conftest.$ac_ext <<_ACEOF
13400 #line 13401 "configure"
13397 #line 13398 "configure"
1340113398 #include "confdefs.h"
1340213399 #include <stdio.h>
1340313400 int
1340913406 }
1341013407 _ACEOF
1341113408 rm -f conftest.$ac_objext
13412 if { (eval echo "$as_me:13413: \"$ac_compile\"") >&5
13409 if { (eval echo "$as_me:13410: \"$ac_compile\"") >&5
1341313410 (eval $ac_compile) 2>&5
1341413411 ac_status=$?
13415 echo "$as_me:13416: \$? = $ac_status" >&5
13412 echo "$as_me:13413: \$? = $ac_status" >&5
1341613413 (exit $ac_status); } &&
1341713414 { ac_try='test -s conftest.$ac_objext'
13418 { (eval echo "$as_me:13419: \"$ac_try\"") >&5
13415 { (eval echo "$as_me:13416: \"$ac_try\"") >&5
1341913416 (eval $ac_try) 2>&5
1342013417 ac_status=$?
13421 echo "$as_me:13422: \$? = $ac_status" >&5
13418 echo "$as_me:13419: \$? = $ac_status" >&5
1342213419 (exit $ac_status); }; }; then
1342313420 :
1342413421 else
1343513432 if test "$cf_have_incdir" = no ; then
1343613433 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1343713434
13438 echo "${as_me:-configure}:13439: testing adding $cf_add_incdir to include-path ..." 1>&5
13435 echo "${as_me:-configure}:13436: testing adding $cf_add_incdir to include-path ..." 1>&5
1343913436
1344013437 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1344113438
1347613473 cf_save_CPPFLAGS=$CPPFLAGS
1347713474 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1347813475 cat >conftest.$ac_ext <<_ACEOF
13479 #line 13480 "configure"
13476 #line 13477 "configure"
1348013477 #include "confdefs.h"
1348113478 #include <stdio.h>
1348213479 int
1348813485 }
1348913486 _ACEOF
1349013487 rm -f conftest.$ac_objext
13491 if { (eval echo "$as_me:13492: \"$ac_compile\"") >&5
13488 if { (eval echo "$as_me:13489: \"$ac_compile\"") >&5
1349213489 (eval $ac_compile) 2>&5
1349313490 ac_status=$?
13494 echo "$as_me:13495: \$? = $ac_status" >&5
13491 echo "$as_me:13492: \$? = $ac_status" >&5
1349513492 (exit $ac_status); } &&
1349613493 { ac_try='test -s conftest.$ac_objext'
13497 { (eval echo "$as_me:13498: \"$ac_try\"") >&5
13494 { (eval echo "$as_me:13495: \"$ac_try\"") >&5
1349813495 (eval $ac_try) 2>&5
1349913496 ac_status=$?
13500 echo "$as_me:13501: \$? = $ac_status" >&5
13497 echo "$as_me:13498: \$? = $ac_status" >&5
1350113498 (exit $ac_status); }; }; then
1350213499 :
1350313500 else
1351413511 if test "$cf_have_incdir" = no ; then
1351513512 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1351613513
13517 echo "${as_me:-configure}:13518: testing adding $cf_add_incdir to include-path ..." 1>&5
13514 echo "${as_me:-configure}:13515: testing adding $cf_add_incdir to include-path ..." 1>&5
1351813515
1351913516 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1352013517
1353013527 fi
1353113528
1353213529 else
13533 { { echo "$as_me:13534: error: cannot find ssl library under $cf_cv_use_libssl" >&5
13530 { { echo "$as_me:13531: error: cannot find ssl library under $cf_cv_use_libssl" >&5
1353413531 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;}
1353513532 { (exit 1); exit 1; }; }
1353613533 fi
1355513552 if test "$cf_have_libdir" = no ; then
1355613553 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1355713554
13558 echo "${as_me:-configure}:13559: testing adding $cf_add_libdir to library-path ..." 1>&5
13555 echo "${as_me:-configure}:13556: testing adding $cf_add_libdir to library-path ..." 1>&5
1355913556
1356013557 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1356113558 fi
1358413581 if test "$cf_have_libdir" = no ; then
1358513582 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1358613583
13587 echo "${as_me:-configure}:13588: testing adding $cf_add_libdir to library-path ..." 1>&5
13584 echo "${as_me:-configure}:13585: testing adding $cf_add_libdir to library-path ..." 1>&5
1358813585
1358913586 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1359013587 fi
1359313590 fi
1359413591
1359513592 else
13596 { { echo "$as_me:13597: error: cannot find ssl library under $cf_cv_use_libssl" >&5
13593 { { echo "$as_me:13594: error: cannot find ssl library under $cf_cv_use_libssl" >&5
1359713594 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;}
1359813595 { (exit 1); exit 1; }; }
1359913596 fi
1372413721 esac
1372513722 test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6
1372613723
13727 echo "${as_me:-configure}:13728: testing adding $cf_libs_ssl to LIBS ..." 1>&5
13724 echo "${as_me:-configure}:13725: testing adding $cf_libs_ssl to LIBS ..." 1>&5
1372813725
1372913726 LIBS="$cf_libs_ssl $LIBS"
1373013727 fi
1374513742 *-ldl) #(vi
1374613743 ;;
1374713744 *)
13748 echo "$as_me:13749: checking for dlsym in -ldl" >&5
13745 echo "$as_me:13746: checking for dlsym in -ldl" >&5
1374913746 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6
1375013747 if test "${ac_cv_lib_dl_dlsym+set}" = set; then
1375113748 echo $ECHO_N "(cached) $ECHO_C" >&6
1375313750 ac_check_lib_save_LIBS=$LIBS
1375413751 LIBS="-ldl $LIBS"
1375513752 cat >conftest.$ac_ext <<_ACEOF
13756 #line 13757 "configure"
13753 #line 13754 "configure"
1375713754 #include "confdefs.h"
1375813755
1375913756 /* Override any gcc2 internal prototype to avoid an error. */
1377213769 }
1377313770 _ACEOF
1377413771 rm -f conftest.$ac_objext conftest$ac_exeext
13775 if { (eval echo "$as_me:13776: \"$ac_link\"") >&5
13772 if { (eval echo "$as_me:13773: \"$ac_link\"") >&5
1377613773 (eval $ac_link) 2>&5
1377713774 ac_status=$?
13778 echo "$as_me:13779: \$? = $ac_status" >&5
13775 echo "$as_me:13776: \$? = $ac_status" >&5
1377913776 (exit $ac_status); } &&
1378013777 { ac_try='test -s conftest$ac_exeext'
13781 { (eval echo "$as_me:13782: \"$ac_try\"") >&5
13778 { (eval echo "$as_me:13779: \"$ac_try\"") >&5
1378213779 (eval $ac_try) 2>&5
1378313780 ac_status=$?
13784 echo "$as_me:13785: \$? = $ac_status" >&5
13781 echo "$as_me:13782: \$? = $ac_status" >&5
1378513782 (exit $ac_status); }; }; then
1378613783 ac_cv_lib_dl_dlsym=yes
1378713784 else
1379213789 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1379313790 LIBS=$ac_check_lib_save_LIBS
1379413791 fi
13795 echo "$as_me:13796: result: $ac_cv_lib_dl_dlsym" >&5
13792 echo "$as_me:13793: result: $ac_cv_lib_dl_dlsym" >&5
1379613793 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6
1379713794 if test $ac_cv_lib_dl_dlsym = yes; then
1379813795 cf_extra_ssl_libs="$cf_extra_ssl_libs -ldl"
1380813805 cf_cv_header_path_ssl=
1380913806 cf_cv_library_path_ssl=
1381013807
13811 echo "${as_me:-configure}:13812: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5
13808 echo "${as_me:-configure}:13809: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5
1381213809
1381313810 cf_save_LIBS="$LIBS"
1381413811
1381513812 cat >conftest.$ac_ext <<_ACEOF
13816 #line 13817 "configure"
13813 #line 13814 "configure"
1381713814 #include "confdefs.h"
1381813815
1381913816 #include <stdio.h>
1384213839 }
1384313840 _ACEOF
1384413841 rm -f conftest.$ac_objext conftest$ac_exeext
13845 if { (eval echo "$as_me:13846: \"$ac_link\"") >&5
13842 if { (eval echo "$as_me:13843: \"$ac_link\"") >&5
1384613843 (eval $ac_link) 2>&5
1384713844 ac_status=$?
13848 echo "$as_me:13849: \$? = $ac_status" >&5
13845 echo "$as_me:13846: \$? = $ac_status" >&5
1384913846 (exit $ac_status); } &&
1385013847 { ac_try='test -s conftest$ac_exeext'
13851 { (eval echo "$as_me:13852: \"$ac_try\"") >&5
13848 { (eval echo "$as_me:13849: \"$ac_try\"") >&5
1385213849 (eval $ac_try) 2>&5
1385313850 ac_status=$?
13854 echo "$as_me:13855: \$? = $ac_status" >&5
13851 echo "$as_me:13852: \$? = $ac_status" >&5
1385513852 (exit $ac_status); }; }; then
1385613853
1385713854 cf_cv_find_linkage_ssl=yes
1386513862 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS"
1386613863
1386713864 cat >conftest.$ac_ext <<_ACEOF
13868 #line 13869 "configure"
13865 #line 13866 "configure"
1386913866 #include "confdefs.h"
1387013867
1387113868 #include <stdio.h>
1389413891 }
1389513892 _ACEOF
1389613893 rm -f conftest.$ac_objext conftest$ac_exeext
13897 if { (eval echo "$as_me:13898: \"$ac_link\"") >&5
13894 if { (eval echo "$as_me:13895: \"$ac_link\"") >&5
1389813895 (eval $ac_link) 2>&5
1389913896 ac_status=$?
13900 echo "$as_me:13901: \$? = $ac_status" >&5
13897 echo "$as_me:13898: \$? = $ac_status" >&5
1390113898 (exit $ac_status); } &&
1390213899 { ac_try='test -s conftest$ac_exeext'
13903 { (eval echo "$as_me:13904: \"$ac_try\"") >&5
13900 { (eval echo "$as_me:13901: \"$ac_try\"") >&5
1390413901 (eval $ac_try) 2>&5
1390513902 ac_status=$?
13906 echo "$as_me:13907: \$? = $ac_status" >&5
13903 echo "$as_me:13904: \$? = $ac_status" >&5
1390713904 (exit $ac_status); }; }; then
1390813905
1390913906 cf_cv_find_linkage_ssl=yes
1392013917
1392113918 test -n "$verbose" && echo " find linkage for ssl library" 1>&6
1392213919
13923 echo "${as_me:-configure}:13924: testing find linkage for ssl library ..." 1>&5
13924
13925 echo "${as_me:-configure}:13926: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5
13920 echo "${as_me:-configure}:13921: testing find linkage for ssl library ..." 1>&5
13921
13922 echo "${as_me:-configure}:13923: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5
1392613923
1392713924 cf_save_CPPFLAGS="$CPPFLAGS"
1392813925 cf_test_CPPFLAGS="$CPPFLAGS"
1403514032 if test -d $cf_cv_header_path_ssl ; then
1403614033 test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6
1403714034
14038 echo "${as_me:-configure}:14039: testing ... testing $cf_cv_header_path_ssl ..." 1>&5
14035 echo "${as_me:-configure}:14036: testing ... testing $cf_cv_header_path_ssl ..." 1>&5
1403914036
1404014037 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_ssl"
1404114038 cat >conftest.$ac_ext <<_ACEOF
14042 #line 14043 "configure"
14039 #line 14040 "configure"
1404314040 #include "confdefs.h"
1404414041
1404514042 #include <stdio.h>
1406814065 }
1406914066 _ACEOF
1407014067 rm -f conftest.$ac_objext
14071 if { (eval echo "$as_me:14072: \"$ac_compile\"") >&5
14068 if { (eval echo "$as_me:14069: \"$ac_compile\"") >&5
1407214069 (eval $ac_compile) 2>&5
1407314070 ac_status=$?
14074 echo "$as_me:14075: \$? = $ac_status" >&5
14071 echo "$as_me:14072: \$? = $ac_status" >&5
1407514072 (exit $ac_status); } &&
1407614073 { ac_try='test -s conftest.$ac_objext'
14077 { (eval echo "$as_me:14078: \"$ac_try\"") >&5
14074 { (eval echo "$as_me:14075: \"$ac_try\"") >&5
1407814075 (eval $ac_try) 2>&5
1407914076 ac_status=$?
14080 echo "$as_me:14081: \$? = $ac_status" >&5
14077 echo "$as_me:14078: \$? = $ac_status" >&5
1408114078 (exit $ac_status); }; }; then
1408214079
1408314080 test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6
1408414081
14085 echo "${as_me:-configure}:14086: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5
14082 echo "${as_me:-configure}:14083: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5
1408614083
1408714084 cf_cv_find_linkage_ssl=maybe
1408814085 cf_test_CPPFLAGS="$CPPFLAGS"
1410014097
1410114098 if test "$cf_cv_find_linkage_ssl" = maybe ; then
1410214099
14103 echo "${as_me:-configure}:14104: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5
14100 echo "${as_me:-configure}:14101: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5
1410414101
1410514102 cf_save_LIBS="$LIBS"
1410614103 cf_save_LDFLAGS="$LDFLAGS"
1410814105 CPPFLAGS="$cf_test_CPPFLAGS"
1410914106 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS"
1411014107 cat >conftest.$ac_ext <<_ACEOF
14111 #line 14112 "configure"
14108 #line 14109 "configure"
1411214109 #include "confdefs.h"
1411314110
1411414111 #include <stdio.h>
1413714134 }
1413814135 _ACEOF
1413914136 rm -f conftest.$ac_objext conftest$ac_exeext
14140 if { (eval echo "$as_me:14141: \"$ac_link\"") >&5
14137 if { (eval echo "$as_me:14138: \"$ac_link\"") >&5
1414114138 (eval $ac_link) 2>&5
1414214139 ac_status=$?
14143 echo "$as_me:14144: \$? = $ac_status" >&5
14140 echo "$as_me:14141: \$? = $ac_status" >&5
1414414141 (exit $ac_status); } &&
1414514142 { ac_try='test -s conftest$ac_exeext'
14146 { (eval echo "$as_me:14147: \"$ac_try\"") >&5
14143 { (eval echo "$as_me:14144: \"$ac_try\"") >&5
1414714144 (eval $ac_try) 2>&5
1414814145 ac_status=$?
14149 echo "$as_me:14150: \$? = $ac_status" >&5
14146 echo "$as_me:14147: \$? = $ac_status" >&5
1415014147 (exit $ac_status); }; }; then
1415114148
1415214149 test -n "$verbose" && echo " ... found ssl library in system" 1>&6
1415314150
14154 echo "${as_me:-configure}:14155: testing ... found ssl library in system ..." 1>&5
14151 echo "${as_me:-configure}:14152: testing ... found ssl library in system ..." 1>&5
1415514152
1415614153 cf_cv_find_linkage_ssl=yes
1415714154 else
1425414251 if test -d $cf_cv_library_path_ssl ; then
1425514252 test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6
1425614253
14257 echo "${as_me:-configure}:14258: testing ... testing $cf_cv_library_path_ssl ..." 1>&5
14254 echo "${as_me:-configure}:14255: testing ... testing $cf_cv_library_path_ssl ..." 1>&5
1425814255
1425914256 CPPFLAGS="$cf_test_CPPFLAGS"
1426014257 LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS"
1426114258 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl"
1426214259 cat >conftest.$ac_ext <<_ACEOF
14263 #line 14264 "configure"
14260 #line 14261 "configure"
1426414261 #include "confdefs.h"
1426514262
1426614263 #include <stdio.h>
1428914286 }
1429014287 _ACEOF
1429114288 rm -f conftest.$ac_objext conftest$ac_exeext
14292 if { (eval echo "$as_me:14293: \"$ac_link\"") >&5
14289 if { (eval echo "$as_me:14290: \"$ac_link\"") >&5
1429314290 (eval $ac_link) 2>&5
1429414291 ac_status=$?
14295 echo "$as_me:14296: \$? = $ac_status" >&5
14292 echo "$as_me:14293: \$? = $ac_status" >&5
1429614293 (exit $ac_status); } &&
1429714294 { ac_try='test -s conftest$ac_exeext'
14298 { (eval echo "$as_me:14299: \"$ac_try\"") >&5
14295 { (eval echo "$as_me:14296: \"$ac_try\"") >&5
1429914296 (eval $ac_try) 2>&5
1430014297 ac_status=$?
14301 echo "$as_me:14302: \$? = $ac_status" >&5
14298 echo "$as_me:14299: \$? = $ac_status" >&5
1430214299 (exit $ac_status); }; }; then
1430314300
1430414301 test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6
1430514302
14306 echo "${as_me:-configure}:14307: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5
14303 echo "${as_me:-configure}:14304: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5
1430714304
1430814305 cf_cv_find_linkage_ssl=yes
1430914306 cf_cv_library_file_ssl="-lssl"
1436514362 if test "$cf_have_libdir" = no ; then
1436614363 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1436714364
14368 echo "${as_me:-configure}:14369: testing adding $cf_add_libdir to library-path ..." 1>&5
14365 echo "${as_me:-configure}:14366: testing adding $cf_add_libdir to library-path ..." 1>&5
1436914366
1437014367 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1437114368 fi
1440514402 cf_save_CPPFLAGS=$CPPFLAGS
1440614403 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1440714404 cat >conftest.$ac_ext <<_ACEOF
14408 #line 14409 "configure"
14405 #line 14406 "configure"
1440914406 #include "confdefs.h"
1441014407 #include <stdio.h>
1441114408 int
1441714414 }
1441814415 _ACEOF
1441914416 rm -f conftest.$ac_objext
14420 if { (eval echo "$as_me:14421: \"$ac_compile\"") >&5
14417 if { (eval echo "$as_me:14418: \"$ac_compile\"") >&5
1442114418 (eval $ac_compile) 2>&5
1442214419 ac_status=$?
14423 echo "$as_me:14424: \$? = $ac_status" >&5
14420 echo "$as_me:14421: \$? = $ac_status" >&5
1442414421 (exit $ac_status); } &&
1442514422 { ac_try='test -s conftest.$ac_objext'
14426 { (eval echo "$as_me:14427: \"$ac_try\"") >&5
14423 { (eval echo "$as_me:14424: \"$ac_try\"") >&5
1442714424 (eval $ac_try) 2>&5
1442814425 ac_status=$?
14429 echo "$as_me:14430: \$? = $ac_status" >&5
14426 echo "$as_me:14427: \$? = $ac_status" >&5
1443014427 (exit $ac_status); }; }; then
1443114428 :
1443214429 else
1444314440 if test "$cf_have_incdir" = no ; then
1444414441 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1444514442
14446 echo "${as_me:-configure}:14447: testing adding $cf_add_incdir to include-path ..." 1>&5
14443 echo "${as_me:-configure}:14444: testing adding $cf_add_incdir to include-path ..." 1>&5
1444714444
1444814445 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1444914446
1448314480 esac
1448414481 fi
1448514482
14486 echo "$as_me:14487: checking for X509 support" >&5
14483 echo "$as_me:14484: checking for X509 support" >&5
1448714484 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6
1448814485 cat >conftest.$ac_ext <<_ACEOF
14489 #line 14490 "configure"
14486 #line 14487 "configure"
1449014487 #include "confdefs.h"
1449114488
1449214489 #include <stdio.h>
1451014507 }
1451114508 _ACEOF
1451214509 rm -f conftest.$ac_objext conftest$ac_exeext
14513 if { (eval echo "$as_me:14514: \"$ac_link\"") >&5
14510 if { (eval echo "$as_me:14511: \"$ac_link\"") >&5
1451414511 (eval $ac_link) 2>&5
1451514512 ac_status=$?
14516 echo "$as_me:14517: \$? = $ac_status" >&5
14513 echo "$as_me:14514: \$? = $ac_status" >&5
1451714514 (exit $ac_status); } &&
1451814515 { ac_try='test -s conftest$ac_exeext'
14519 { (eval echo "$as_me:14520: \"$ac_try\"") >&5
14516 { (eval echo "$as_me:14517: \"$ac_try\"") >&5
1452014517 (eval $ac_try) 2>&5
1452114518 ac_status=$?
14522 echo "$as_me:14523: \$? = $ac_status" >&5
14519 echo "$as_me:14520: \$? = $ac_status" >&5
1452314520 (exit $ac_status); }; }; then
1452414521 cf_x509_support=yes
1452514522 else
1452814525 cf_x509_support=no
1452914526 fi
1453014527 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14531 echo "$as_me:14532: result: $cf_x509_support" >&5
14528 echo "$as_me:14529: result: $cf_x509_support" >&5
1453214529 echo "${ECHO_T}$cf_x509_support" >&6
1453314530
1453414531 if test "$cf_x509_support" = yes ; then
1458014577 cf_save_CPPFLAGS=$CPPFLAGS
1458114578 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1458214579 cat >conftest.$ac_ext <<_ACEOF
14583 #line 14584 "configure"
14580 #line 14581 "configure"
1458414581 #include "confdefs.h"
1458514582 #include <stdio.h>
1458614583 int
1459214589 }
1459314590 _ACEOF
1459414591 rm -f conftest.$ac_objext
14595 if { (eval echo "$as_me:14596: \"$ac_compile\"") >&5
14592 if { (eval echo "$as_me:14593: \"$ac_compile\"") >&5
1459614593 (eval $ac_compile) 2>&5
1459714594 ac_status=$?
14598 echo "$as_me:14599: \$? = $ac_status" >&5
14595 echo "$as_me:14596: \$? = $ac_status" >&5
1459914596 (exit $ac_status); } &&
1460014597 { ac_try='test -s conftest.$ac_objext'
14601 { (eval echo "$as_me:14602: \"$ac_try\"") >&5
14598 { (eval echo "$as_me:14599: \"$ac_try\"") >&5
1460214599 (eval $ac_try) 2>&5
1460314600 ac_status=$?
14604 echo "$as_me:14605: \$? = $ac_status" >&5
14601 echo "$as_me:14602: \$? = $ac_status" >&5
1460514602 (exit $ac_status); }; }; then
1460614603 :
1460714604 else
1461814615 if test "$cf_have_incdir" = no ; then
1461914616 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1462014617
14621 echo "${as_me:-configure}:14622: testing adding $cf_add_incdir to include-path ..." 1>&5
14618 echo "${as_me:-configure}:14619: testing adding $cf_add_incdir to include-path ..." 1>&5
1462214619
1462314620 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1462414621
1465914656 cf_save_CPPFLAGS=$CPPFLAGS
1466014657 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1466114658 cat >conftest.$ac_ext <<_ACEOF
14662 #line 14663 "configure"
14659 #line 14660 "configure"
1466314660 #include "confdefs.h"
1466414661 #include <stdio.h>
1466514662 int
1467114668 }
1467214669 _ACEOF
1467314670 rm -f conftest.$ac_objext
14674 if { (eval echo "$as_me:14675: \"$ac_compile\"") >&5
14671 if { (eval echo "$as_me:14672: \"$ac_compile\"") >&5
1467514672 (eval $ac_compile) 2>&5
1467614673 ac_status=$?
14677 echo "$as_me:14678: \$? = $ac_status" >&5
14674 echo "$as_me:14675: \$? = $ac_status" >&5
1467814675 (exit $ac_status); } &&
1467914676 { ac_try='test -s conftest.$ac_objext'
14680 { (eval echo "$as_me:14681: \"$ac_try\"") >&5
14677 { (eval echo "$as_me:14678: \"$ac_try\"") >&5
1468114678 (eval $ac_try) 2>&5
1468214679 ac_status=$?
14683 echo "$as_me:14684: \$? = $ac_status" >&5
14680 echo "$as_me:14681: \$? = $ac_status" >&5
1468414681 (exit $ac_status); }; }; then
1468514682 :
1468614683 else
1469714694 if test "$cf_have_incdir" = no ; then
1469814695 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1469914696
14700 echo "${as_me:-configure}:14701: testing adding $cf_add_incdir to include-path ..." 1>&5
14697 echo "${as_me:-configure}:14698: testing adding $cf_add_incdir to include-path ..." 1>&5
1470114698
1470214699 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1470314700
1471314710 fi
1471414711
1471514712 else
14716 { { echo "$as_me:14717: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
14713 { { echo "$as_me:14714: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
1471714714 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;}
1471814715 { (exit 1); exit 1; }; }
1471914716 fi
1473814735 if test "$cf_have_libdir" = no ; then
1473914736 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1474014737
14741 echo "${as_me:-configure}:14742: testing adding $cf_add_libdir to library-path ..." 1>&5
14738 echo "${as_me:-configure}:14739: testing adding $cf_add_libdir to library-path ..." 1>&5
1474214739
1474314740 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1474414741 fi
1476714764 if test "$cf_have_libdir" = no ; then
1476814765 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1476914766
14770 echo "${as_me:-configure}:14771: testing adding $cf_add_libdir to library-path ..." 1>&5
14767 echo "${as_me:-configure}:14768: testing adding $cf_add_libdir to library-path ..." 1>&5
1477114768
1477214769 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1477314770 fi
1477614773 fi
1477714774
1477814775 else
14779 { { echo "$as_me:14780: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
14776 { { echo "$as_me:14777: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
1478014777 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;}
1478114778 { (exit 1); exit 1; }; }
1478214779 fi
1479414791 yes) # if no explicit directory given, try pkg-config
1479514792 test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6
1479614793
14797 echo "${as_me:-configure}:14798: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5
14794 echo "${as_me:-configure}:14795: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5
1479814795
1479914796 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then
1480014797 test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6
1480114798
14802 echo "${as_me:-configure}:14803: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5
14799 echo "${as_me:-configure}:14800: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5
1480314800
1480414801 cf_cv_have_gnutls=yes
1480514802 cf_cv_pkg_config_ssl=yes
1491114908 esac
1491214909 test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6
1491314910
14914 echo "${as_me:-configure}:14915: testing adding $cf_libs_ssl to LIBS ..." 1>&5
14911 echo "${as_me:-configure}:14912: testing adding $cf_libs_ssl to LIBS ..." 1>&5
1491514912
1491614913 LIBS="$cf_libs_ssl $LIBS"
1491714914 fi
1491814915 else
1491914916 test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6
1492014917
14921 echo "${as_me:-configure}:14922: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5
14918 echo "${as_me:-configure}:14919: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5
1492214919
1492314920 cf_pkg_gnutls=none
1492414921 fi
1493814935 cf_cv_header_path_gnutls=
1493914936 cf_cv_library_path_gnutls=
1494014937
14941 echo "${as_me:-configure}:14942: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5
14938 echo "${as_me:-configure}:14939: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5
1494214939
1494314940 cf_save_LIBS="$LIBS"
1494414941
1494514942 cat >conftest.$ac_ext <<_ACEOF
14946 #line 14947 "configure"
14943 #line 14944 "configure"
1494714944 #include "confdefs.h"
1494814945
1494914946 #include <stdio.h>
1497214969 }
1497314970 _ACEOF
1497414971 rm -f conftest.$ac_objext conftest$ac_exeext
14975 if { (eval echo "$as_me:14976: \"$ac_link\"") >&5
14972 if { (eval echo "$as_me:14973: \"$ac_link\"") >&5
1497614973 (eval $ac_link) 2>&5
1497714974 ac_status=$?
14978 echo "$as_me:14979: \$? = $ac_status" >&5
14975 echo "$as_me:14976: \$? = $ac_status" >&5
1497914976 (exit $ac_status); } &&
1498014977 { ac_try='test -s conftest$ac_exeext'
14981 { (eval echo "$as_me:14982: \"$ac_try\"") >&5
14978 { (eval echo "$as_me:14979: \"$ac_try\"") >&5
1498214979 (eval $ac_try) 2>&5
1498314980 ac_status=$?
14984 echo "$as_me:14985: \$? = $ac_status" >&5
14981 echo "$as_me:14982: \$? = $ac_status" >&5
1498514982 (exit $ac_status); }; }; then
1498614983
1498714984 cf_cv_find_linkage_gnutls=yes
1499514992 LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS"
1499614993
1499714994 cat >conftest.$ac_ext <<_ACEOF
14998 #line 14999 "configure"
14995 #line 14996 "configure"
1499914996 #include "confdefs.h"
1500014997
1500114998 #include <stdio.h>
1502415021 }
1502515022 _ACEOF
1502615023 rm -f conftest.$ac_objext conftest$ac_exeext
15027 if { (eval echo "$as_me:15028: \"$ac_link\"") >&5
15024 if { (eval echo "$as_me:15025: \"$ac_link\"") >&5
1502815025 (eval $ac_link) 2>&5
1502915026 ac_status=$?
15030 echo "$as_me:15031: \$? = $ac_status" >&5
15027 echo "$as_me:15028: \$? = $ac_status" >&5
1503115028 (exit $ac_status); } &&
1503215029 { ac_try='test -s conftest$ac_exeext'
15033 { (eval echo "$as_me:15034: \"$ac_try\"") >&5
15030 { (eval echo "$as_me:15031: \"$ac_try\"") >&5
1503415031 (eval $ac_try) 2>&5
1503515032 ac_status=$?
15036 echo "$as_me:15037: \$? = $ac_status" >&5
15033 echo "$as_me:15034: \$? = $ac_status" >&5
1503715034 (exit $ac_status); }; }; then
1503815035
1503915036 cf_cv_find_linkage_gnutls=yes
1505015047
1505115048 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6
1505215049
15053 echo "${as_me:-configure}:15054: testing find linkage for gnutls library ..." 1>&5
15054
15055 echo "${as_me:-configure}:15056: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5
15050 echo "${as_me:-configure}:15051: testing find linkage for gnutls library ..." 1>&5
15051
15052 echo "${as_me:-configure}:15053: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5
1505615053
1505715054 cf_save_CPPFLAGS="$CPPFLAGS"
1505815055 cf_test_CPPFLAGS="$CPPFLAGS"
1516515162 if test -d $cf_cv_header_path_gnutls ; then
1516615163 test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6
1516715164
15168 echo "${as_me:-configure}:15169: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5
15165 echo "${as_me:-configure}:15166: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5
1516915166
1517015167 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls"
1517115168 cat >conftest.$ac_ext <<_ACEOF
15172 #line 15173 "configure"
15169 #line 15170 "configure"
1517315170 #include "confdefs.h"
1517415171
1517515172 #include <stdio.h>
1519815195 }
1519915196 _ACEOF
1520015197 rm -f conftest.$ac_objext
15201 if { (eval echo "$as_me:15202: \"$ac_compile\"") >&5
15198 if { (eval echo "$as_me:15199: \"$ac_compile\"") >&5
1520215199 (eval $ac_compile) 2>&5
1520315200 ac_status=$?
15204 echo "$as_me:15205: \$? = $ac_status" >&5
15201 echo "$as_me:15202: \$? = $ac_status" >&5
1520515202 (exit $ac_status); } &&
1520615203 { ac_try='test -s conftest.$ac_objext'
15207 { (eval echo "$as_me:15208: \"$ac_try\"") >&5
15204 { (eval echo "$as_me:15205: \"$ac_try\"") >&5
1520815205 (eval $ac_try) 2>&5
1520915206 ac_status=$?
15210 echo "$as_me:15211: \$? = $ac_status" >&5
15207 echo "$as_me:15208: \$? = $ac_status" >&5
1521115208 (exit $ac_status); }; }; then
1521215209
1521315210 test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6
1521415211
15215 echo "${as_me:-configure}:15216: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5
15212 echo "${as_me:-configure}:15213: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5
1521615213
1521715214 cf_cv_find_linkage_gnutls=maybe
1521815215 cf_test_CPPFLAGS="$CPPFLAGS"
1523015227
1523115228 if test "$cf_cv_find_linkage_gnutls" = maybe ; then
1523215229
15233 echo "${as_me:-configure}:15234: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5
15230 echo "${as_me:-configure}:15231: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5
1523415231
1523515232 cf_save_LIBS="$LIBS"
1523615233 cf_save_LDFLAGS="$LDFLAGS"
1532715324 if test -d $cf_cv_library_path_gnutls ; then
1532815325 test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6
1532915326
15330 echo "${as_me:-configure}:15331: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5
15327 echo "${as_me:-configure}:15328: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5
1533115328
1533215329 CPPFLAGS="$cf_test_CPPFLAGS"
1533315330 LIBS="-lgnutls -lgnutls -lgcrypt $cf_save_LIBS"
1533415331 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls"
1533515332 cat >conftest.$ac_ext <<_ACEOF
15336 #line 15337 "configure"
15333 #line 15334 "configure"
1533715334 #include "confdefs.h"
1533815335
1533915336 #include <stdio.h>
1536215359 }
1536315360 _ACEOF
1536415361 rm -f conftest.$ac_objext conftest$ac_exeext
15365 if { (eval echo "$as_me:15366: \"$ac_link\"") >&5
15362 if { (eval echo "$as_me:15363: \"$ac_link\"") >&5
1536615363 (eval $ac_link) 2>&5
1536715364 ac_status=$?
15368 echo "$as_me:15369: \$? = $ac_status" >&5
15365 echo "$as_me:15366: \$? = $ac_status" >&5
1536915366 (exit $ac_status); } &&
1537015367 { ac_try='test -s conftest$ac_exeext'
15371 { (eval echo "$as_me:15372: \"$ac_try\"") >&5
15368 { (eval echo "$as_me:15369: \"$ac_try\"") >&5
1537215369 (eval $ac_try) 2>&5
1537315370 ac_status=$?
15374 echo "$as_me:15375: \$? = $ac_status" >&5
15371 echo "$as_me:15372: \$? = $ac_status" >&5
1537515372 (exit $ac_status); }; }; then
1537615373
1537715374 test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6
1537815375
15379 echo "${as_me:-configure}:15380: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5
15376 echo "${as_me:-configure}:15377: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5
1538015377
1538115378 cf_cv_find_linkage_gnutls=yes
1538215379 cf_cv_library_file_gnutls="-lgnutls"
1545315450 cf_save_CPPFLAGS=$CPPFLAGS
1545415451 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1545515452 cat >conftest.$ac_ext <<_ACEOF
15456 #line 15457 "configure"
15453 #line 15454 "configure"
1545715454 #include "confdefs.h"
1545815455 #include <stdio.h>
1545915456 int
1546515462 }
1546615463 _ACEOF
1546715464 rm -f conftest.$ac_objext
15468 if { (eval echo "$as_me:15469: \"$ac_compile\"") >&5
15465 if { (eval echo "$as_me:15466: \"$ac_compile\"") >&5
1546915466 (eval $ac_compile) 2>&5
1547015467 ac_status=$?
15471 echo "$as_me:15472: \$? = $ac_status" >&5
15468 echo "$as_me:15469: \$? = $ac_status" >&5
1547215469 (exit $ac_status); } &&
1547315470 { ac_try='test -s conftest.$ac_objext'
15474 { (eval echo "$as_me:15475: \"$ac_try\"") >&5
15471 { (eval echo "$as_me:15472: \"$ac_try\"") >&5
1547515472 (eval $ac_try) 2>&5
1547615473 ac_status=$?
15477 echo "$as_me:15478: \$? = $ac_status" >&5
15474 echo "$as_me:15475: \$? = $ac_status" >&5
1547815475 (exit $ac_status); }; }; then
1547915476 :
1548015477 else
1549115488 if test "$cf_have_incdir" = no ; then
1549215489 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1549315490
15494 echo "${as_me:-configure}:15495: testing adding $cf_add_incdir to include-path ..." 1>&5
15491 echo "${as_me:-configure}:15492: testing adding $cf_add_incdir to include-path ..." 1>&5
1549515492
1549615493 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1549715494
1553015527 if test "$cf_have_libdir" = no ; then
1553115528 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1553215529
15533 echo "${as_me:-configure}:15534: testing adding $cf_add_libdir to library-path ..." 1>&5
15530 echo "${as_me:-configure}:15531: testing adding $cf_add_libdir to library-path ..." 1>&5
1553415531
1553515532 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1553615533 fi
1554315540
1554415541 EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o"
1554515542
15546 echo "$as_me:15547: checking for X509 support" >&5
15543 echo "$as_me:15544: checking for X509 support" >&5
1554715544 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6
1554815545 cat >conftest.$ac_ext <<_ACEOF
15549 #line 15550 "configure"
15546 #line 15547 "configure"
1555015547 #include "confdefs.h"
1555115548
1555215549 #include <stdio.h>
1557015567 }
1557115568 _ACEOF
1557215569 rm -f conftest.$ac_objext conftest$ac_exeext
15573 if { (eval echo "$as_me:15574: \"$ac_link\"") >&5
15570 if { (eval echo "$as_me:15571: \"$ac_link\"") >&5
1557415571 (eval $ac_link) 2>&5
1557515572 ac_status=$?
15576 echo "$as_me:15577: \$? = $ac_status" >&5
15573 echo "$as_me:15574: \$? = $ac_status" >&5
1557715574 (exit $ac_status); } &&
1557815575 { ac_try='test -s conftest$ac_exeext'
15579 { (eval echo "$as_me:15580: \"$ac_try\"") >&5
15576 { (eval echo "$as_me:15577: \"$ac_try\"") >&5
1558015577 (eval $ac_try) 2>&5
1558115578 ac_status=$?
15582 echo "$as_me:15583: \$? = $ac_status" >&5
15579 echo "$as_me:15580: \$? = $ac_status" >&5
1558315580 (exit $ac_status); }; }; then
1558415581 cf_x509_support=yes
1558515582 else
1558815585 cf_x509_support=no
1558915586 fi
1559015587 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
15591 echo "$as_me:15592: result: $cf_x509_support" >&5
15588 echo "$as_me:15589: result: $cf_x509_support" >&5
1559215589 echo "${ECHO_T}$cf_x509_support" >&6
1559315590
1559415591 if test "$cf_x509_support" = yes ; then
1560315600 for ac_func in gnutls_priority_set_direct
1560415601 do
1560515602 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
15606 echo "$as_me:15607: checking for $ac_func" >&5
15603 echo "$as_me:15604: checking for $ac_func" >&5
1560715604 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
1560815605 if eval "test \"\${$as_ac_var+set}\" = set"; then
1560915606 echo $ECHO_N "(cached) $ECHO_C" >&6
1561015607 else
1561115608 cat >conftest.$ac_ext <<_ACEOF
15612 #line 15613 "configure"
15609 #line 15610 "configure"
1561315610 #include "confdefs.h"
1561415611 /* System header to define __stub macros and hopefully few prototypes,
1561515612 which can conflict with char $ac_func (); below. */
1564015637 }
1564115638 _ACEOF
1564215639 rm -f conftest.$ac_objext conftest$ac_exeext
15643 if { (eval echo "$as_me:15644: \"$ac_link\"") >&5
15640 if { (eval echo "$as_me:15641: \"$ac_link\"") >&5
1564415641 (eval $ac_link) 2>&5
1564515642 ac_status=$?
15646 echo "$as_me:15647: \$? = $ac_status" >&5
15643 echo "$as_me:15644: \$? = $ac_status" >&5
1564715644 (exit $ac_status); } &&
1564815645 { ac_try='test -s conftest$ac_exeext'
15649 { (eval echo "$as_me:15650: \"$ac_try\"") >&5
15646 { (eval echo "$as_me:15647: \"$ac_try\"") >&5
1565015647 (eval $ac_try) 2>&5
1565115648 ac_status=$?
15652 echo "$as_me:15653: \$? = $ac_status" >&5
15649 echo "$as_me:15650: \$? = $ac_status" >&5
1565315650 (exit $ac_status); }; }; then
1565415651 eval "$as_ac_var=yes"
1565515652 else
1565915656 fi
1566015657 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1566115658 fi
15662 echo "$as_me:15663: result: `eval echo '${'$as_ac_var'}'`" >&5
15659 echo "$as_me:15660: result: `eval echo '${'$as_ac_var'}'`" >&5
1566315660 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
1566415661 if test `eval echo '${'$as_ac_var'}'` = yes; then
1566515662 cat >>confdefs.h <<EOF
1570815705 cf_save_CPPFLAGS=$CPPFLAGS
1570915706 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1571015707 cat >conftest.$ac_ext <<_ACEOF
15711 #line 15712 "configure"
15708 #line 15709 "configure"
1571215709 #include "confdefs.h"
1571315710 #include <stdio.h>
1571415711 int
1572015717 }
1572115718 _ACEOF
1572215719 rm -f conftest.$ac_objext
15723 if { (eval echo "$as_me:15724: \"$ac_compile\"") >&5
15720 if { (eval echo "$as_me:15721: \"$ac_compile\"") >&5
1572415721 (eval $ac_compile) 2>&5
1572515722 ac_status=$?
15726 echo "$as_me:15727: \$? = $ac_status" >&5
15723 echo "$as_me:15724: \$? = $ac_status" >&5
1572715724 (exit $ac_status); } &&
1572815725 { ac_try='test -s conftest.$ac_objext'
15729 { (eval echo "$as_me:15730: \"$ac_try\"") >&5
15726 { (eval echo "$as_me:15727: \"$ac_try\"") >&5
1573015727 (eval $ac_try) 2>&5
1573115728 ac_status=$?
15732 echo "$as_me:15733: \$? = $ac_status" >&5
15729 echo "$as_me:15730: \$? = $ac_status" >&5
1573315730 (exit $ac_status); }; }; then
1573415731 :
1573515732 else
1574615743 if test "$cf_have_incdir" = no ; then
1574715744 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1574815745
15749 echo "${as_me:-configure}:15750: testing adding $cf_add_incdir to include-path ..." 1>&5
15746 echo "${as_me:-configure}:15747: testing adding $cf_add_incdir to include-path ..." 1>&5
1575015747
1575115748 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1575215749
1578715784 cf_save_CPPFLAGS=$CPPFLAGS
1578815785 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1578915786 cat >conftest.$ac_ext <<_ACEOF
15790 #line 15791 "configure"
15787 #line 15788 "configure"
1579115788 #include "confdefs.h"
1579215789 #include <stdio.h>
1579315790 int
1579915796 }
1580015797 _ACEOF
1580115798 rm -f conftest.$ac_objext
15802 if { (eval echo "$as_me:15803: \"$ac_compile\"") >&5
15799 if { (eval echo "$as_me:15800: \"$ac_compile\"") >&5
1580315800 (eval $ac_compile) 2>&5
1580415801 ac_status=$?
15805 echo "$as_me:15806: \$? = $ac_status" >&5
15802 echo "$as_me:15803: \$? = $ac_status" >&5
1580615803 (exit $ac_status); } &&
1580715804 { ac_try='test -s conftest.$ac_objext'
15808 { (eval echo "$as_me:15809: \"$ac_try\"") >&5
15805 { (eval echo "$as_me:15806: \"$ac_try\"") >&5
1580915806 (eval $ac_try) 2>&5
1581015807 ac_status=$?
15811 echo "$as_me:15812: \$? = $ac_status" >&5
15808 echo "$as_me:15809: \$? = $ac_status" >&5
1581215809 (exit $ac_status); }; }; then
1581315810 :
1581415811 else
1582515822 if test "$cf_have_incdir" = no ; then
1582615823 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1582715824
15828 echo "${as_me:-configure}:15829: testing adding $cf_add_incdir to include-path ..." 1>&5
15825 echo "${as_me:-configure}:15826: testing adding $cf_add_incdir to include-path ..." 1>&5
1582915826
1583015827 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1583115828
1584115838 fi
1584215839
1584315840 else
15844 { { echo "$as_me:15845: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
15841 { { echo "$as_me:15842: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
1584515842 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;}
1584615843 { (exit 1); exit 1; }; }
1584715844 fi
1586615863 if test "$cf_have_libdir" = no ; then
1586715864 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1586815865
15869 echo "${as_me:-configure}:15870: testing adding $cf_add_libdir to library-path ..." 1>&5
15866 echo "${as_me:-configure}:15867: testing adding $cf_add_libdir to library-path ..." 1>&5
1587015867
1587115868 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1587215869 fi
1589515892 if test "$cf_have_libdir" = no ; then
1589615893 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1589715894
15898 echo "${as_me:-configure}:15899: testing adding $cf_add_libdir to library-path ..." 1>&5
15895 echo "${as_me:-configure}:15896: testing adding $cf_add_libdir to library-path ..." 1>&5
1589915896
1590015897 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1590115898 fi
1590415901 fi
1590515902
1590615903 else
15907 { { echo "$as_me:15908: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
15904 { { echo "$as_me:15905: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
1590815905 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;}
1590915906 { (exit 1); exit 1; }; }
1591015907 fi
1592215919 yes) # if no explicit directory given, try pkg-config
1592315920 test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6
1592415921
15925 echo "${as_me:-configure}:15926: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5
15922 echo "${as_me:-configure}:15923: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5
1592615923
1592715924 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then
1592815925 test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6
1592915926
15930 echo "${as_me:-configure}:15931: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5
15927 echo "${as_me:-configure}:15928: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5
1593115928
1593215929 cf_cv_have_gnutls=yes
1593315930 cf_cv_pkg_config_ssl=yes
1603916036 esac
1604016037 test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6
1604116038
16042 echo "${as_me:-configure}:16043: testing adding $cf_libs_ssl to LIBS ..." 1>&5
16039 echo "${as_me:-configure}:16040: testing adding $cf_libs_ssl to LIBS ..." 1>&5
1604316040
1604416041 LIBS="$cf_libs_ssl $LIBS"
1604516042 fi
1604616043 else
1604716044 test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6
1604816045
16049 echo "${as_me:-configure}:16050: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5
16046 echo "${as_me:-configure}:16047: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5
1605016047
1605116048 cf_pkg_gnutls=none
1605216049 fi
1606616063 cf_cv_header_path_gnutls=
1606716064 cf_cv_library_path_gnutls=
1606816065
16069 echo "${as_me:-configure}:16070: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5
16066 echo "${as_me:-configure}:16067: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5
1607016067
1607116068 cf_save_LIBS="$LIBS"
1607216069
1607316070 cat >conftest.$ac_ext <<_ACEOF
16074 #line 16075 "configure"
16071 #line 16072 "configure"
1607516072 #include "confdefs.h"
1607616073
1607716074 #include <stdio.h>
1610016097 }
1610116098 _ACEOF
1610216099 rm -f conftest.$ac_objext conftest$ac_exeext
16103 if { (eval echo "$as_me:16104: \"$ac_link\"") >&5
16100 if { (eval echo "$as_me:16101: \"$ac_link\"") >&5
1610416101 (eval $ac_link) 2>&5
1610516102 ac_status=$?
16106 echo "$as_me:16107: \$? = $ac_status" >&5
16103 echo "$as_me:16104: \$? = $ac_status" >&5
1610716104 (exit $ac_status); } &&
1610816105 { ac_try='test -s conftest$ac_exeext'
16109 { (eval echo "$as_me:16110: \"$ac_try\"") >&5
16106 { (eval echo "$as_me:16107: \"$ac_try\"") >&5
1611016107 (eval $ac_try) 2>&5
1611116108 ac_status=$?
16112 echo "$as_me:16113: \$? = $ac_status" >&5
16109 echo "$as_me:16110: \$? = $ac_status" >&5
1611316110 (exit $ac_status); }; }; then
1611416111
1611516112 cf_cv_find_linkage_gnutls=yes
1612316120 LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS"
1612416121
1612516122 cat >conftest.$ac_ext <<_ACEOF
16126 #line 16127 "configure"
16123 #line 16124 "configure"
1612716124 #include "confdefs.h"
1612816125
1612916126 #include <stdio.h>
1615216149 }
1615316150 _ACEOF
1615416151 rm -f conftest.$ac_objext conftest$ac_exeext
16155 if { (eval echo "$as_me:16156: \"$ac_link\"") >&5
16152 if { (eval echo "$as_me:16153: \"$ac_link\"") >&5
1615616153 (eval $ac_link) 2>&5
1615716154 ac_status=$?
16158 echo "$as_me:16159: \$? = $ac_status" >&5
16155 echo "$as_me:16156: \$? = $ac_status" >&5
1615916156 (exit $ac_status); } &&
1616016157 { ac_try='test -s conftest$ac_exeext'
16161 { (eval echo "$as_me:16162: \"$ac_try\"") >&5
16158 { (eval echo "$as_me:16159: \"$ac_try\"") >&5
1616216159 (eval $ac_try) 2>&5
1616316160 ac_status=$?
16164 echo "$as_me:16165: \$? = $ac_status" >&5
16161 echo "$as_me:16162: \$? = $ac_status" >&5
1616516162 (exit $ac_status); }; }; then
1616616163
1616716164 cf_cv_find_linkage_gnutls=yes
1617816175
1617916176 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6
1618016177
16181 echo "${as_me:-configure}:16182: testing find linkage for gnutls library ..." 1>&5
16182
16183 echo "${as_me:-configure}:16184: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5
16178 echo "${as_me:-configure}:16179: testing find linkage for gnutls library ..." 1>&5
16179
16180 echo "${as_me:-configure}:16181: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5
1618416181
1618516182 cf_save_CPPFLAGS="$CPPFLAGS"
1618616183 cf_test_CPPFLAGS="$CPPFLAGS"
1629316290 if test -d $cf_cv_header_path_gnutls ; then
1629416291 test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6
1629516292
16296 echo "${as_me:-configure}:16297: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5
16293 echo "${as_me:-configure}:16294: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5
1629716294
1629816295 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls"
1629916296 cat >conftest.$ac_ext <<_ACEOF
16300 #line 16301 "configure"
16297 #line 16298 "configure"
1630116298 #include "confdefs.h"
1630216299
1630316300 #include <stdio.h>
1632616323 }
1632716324 _ACEOF
1632816325 rm -f conftest.$ac_objext
16329 if { (eval echo "$as_me:16330: \"$ac_compile\"") >&5
16326 if { (eval echo "$as_me:16327: \"$ac_compile\"") >&5
1633016327 (eval $ac_compile) 2>&5
1633116328 ac_status=$?
16332 echo "$as_me:16333: \$? = $ac_status" >&5
16329 echo "$as_me:16330: \$? = $ac_status" >&5
1633316330 (exit $ac_status); } &&
1633416331 { ac_try='test -s conftest.$ac_objext'
16335 { (eval echo "$as_me:16336: \"$ac_try\"") >&5
16332 { (eval echo "$as_me:16333: \"$ac_try\"") >&5
1633616333 (eval $ac_try) 2>&5
1633716334 ac_status=$?
16338 echo "$as_me:16339: \$? = $ac_status" >&5
16335 echo "$as_me:16336: \$? = $ac_status" >&5
1633916336 (exit $ac_status); }; }; then
1634016337
1634116338 test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6
1634216339
16343 echo "${as_me:-configure}:16344: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5
16340 echo "${as_me:-configure}:16341: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5
1634416341
1634516342 cf_cv_find_linkage_gnutls=maybe
1634616343 cf_test_CPPFLAGS="$CPPFLAGS"
1635816355
1635916356 if test "$cf_cv_find_linkage_gnutls" = maybe ; then
1636016357
16361 echo "${as_me:-configure}:16362: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5
16358 echo "${as_me:-configure}:16359: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5
1636216359
1636316360 cf_save_LIBS="$LIBS"
1636416361 cf_save_LDFLAGS="$LDFLAGS"
1645516452 if test -d $cf_cv_library_path_gnutls ; then
1645616453 test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6
1645716454
16458 echo "${as_me:-configure}:16459: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5
16455 echo "${as_me:-configure}:16456: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5
1645916456
1646016457 CPPFLAGS="$cf_test_CPPFLAGS"
1646116458 LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lgcrypt $cf_save_LIBS"
1646216459 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls"
1646316460 cat >conftest.$ac_ext <<_ACEOF
16464 #line 16465 "configure"
16461 #line 16462 "configure"
1646516462 #include "confdefs.h"
1646616463
1646716464 #include <stdio.h>
1649016487 }
1649116488 _ACEOF
1649216489 rm -f conftest.$ac_objext conftest$ac_exeext
16493 if { (eval echo "$as_me:16494: \"$ac_link\"") >&5
16490 if { (eval echo "$as_me:16491: \"$ac_link\"") >&5
1649416491 (eval $ac_link) 2>&5
1649516492 ac_status=$?
16496 echo "$as_me:16497: \$? = $ac_status" >&5
16493 echo "$as_me:16494: \$? = $ac_status" >&5
1649716494 (exit $ac_status); } &&
1649816495 { ac_try='test -s conftest$ac_exeext'
16499 { (eval echo "$as_me:16500: \"$ac_try\"") >&5
16496 { (eval echo "$as_me:16497: \"$ac_try\"") >&5
1650016497 (eval $ac_try) 2>&5
1650116498 ac_status=$?
16502 echo "$as_me:16503: \$? = $ac_status" >&5
16499 echo "$as_me:16500: \$? = $ac_status" >&5
1650316500 (exit $ac_status); }; }; then
1650416501
1650516502 test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6
1650616503
16507 echo "${as_me:-configure}:16508: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5
16504 echo "${as_me:-configure}:16505: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5
1650816505
1650916506 cf_cv_find_linkage_gnutls=yes
1651016507 cf_cv_library_file_gnutls="-lgnutls"
1658116578 cf_save_CPPFLAGS=$CPPFLAGS
1658216579 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1658316580 cat >conftest.$ac_ext <<_ACEOF
16584 #line 16585 "configure"
16581 #line 16582 "configure"
1658516582 #include "confdefs.h"
1658616583 #include <stdio.h>
1658716584 int
1659316590 }
1659416591 _ACEOF
1659516592 rm -f conftest.$ac_objext
16596 if { (eval echo "$as_me:16597: \"$ac_compile\"") >&5
16593 if { (eval echo "$as_me:16594: \"$ac_compile\"") >&5
1659716594 (eval $ac_compile) 2>&5
1659816595 ac_status=$?
16599 echo "$as_me:16600: \$? = $ac_status" >&5
16596 echo "$as_me:16597: \$? = $ac_status" >&5
1660016597 (exit $ac_status); } &&
1660116598 { ac_try='test -s conftest.$ac_objext'
16602 { (eval echo "$as_me:16603: \"$ac_try\"") >&5
16599 { (eval echo "$as_me:16600: \"$ac_try\"") >&5
1660316600 (eval $ac_try) 2>&5
1660416601 ac_status=$?
16605 echo "$as_me:16606: \$? = $ac_status" >&5
16602 echo "$as_me:16603: \$? = $ac_status" >&5
1660616603 (exit $ac_status); }; }; then
1660716604 :
1660816605 else
1661916616 if test "$cf_have_incdir" = no ; then
1662016617 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1662116618
16622 echo "${as_me:-configure}:16623: testing adding $cf_add_incdir to include-path ..." 1>&5
16619 echo "${as_me:-configure}:16620: testing adding $cf_add_incdir to include-path ..." 1>&5
1662316620
1662416621 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1662516622
1665816655 if test "$cf_have_libdir" = no ; then
1665916656 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1666016657
16661 echo "${as_me:-configure}:16662: testing adding $cf_add_libdir to library-path ..." 1>&5
16658 echo "${as_me:-configure}:16659: testing adding $cf_add_libdir to library-path ..." 1>&5
1666216659
1666316660 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1666416661 fi
1667016667 LIBS="-lgnutls -lgcrypt $LIBS"
1667116668
1667216669 if test "$cf_pkg_gnutls" = none ; then
16673 echo "$as_me:16674: checking for SSL_connect in -lgnutls-openssl" >&5
16670 echo "$as_me:16671: checking for SSL_connect in -lgnutls-openssl" >&5
1667416671 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6
1667516672 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then
1667616673 echo $ECHO_N "(cached) $ECHO_C" >&6
1667816675 ac_check_lib_save_LIBS=$LIBS
1667916676 LIBS="-lgnutls-openssl $LIBS"
1668016677 cat >conftest.$ac_ext <<_ACEOF
16681 #line 16682 "configure"
16678 #line 16679 "configure"
1668216679 #include "confdefs.h"
1668316680
1668416681 /* Override any gcc2 internal prototype to avoid an error. */
1669716694 }
1669816695 _ACEOF
1669916696 rm -f conftest.$ac_objext conftest$ac_exeext
16700 if { (eval echo "$as_me:16701: \"$ac_link\"") >&5
16697 if { (eval echo "$as_me:16698: \"$ac_link\"") >&5
1670116698 (eval $ac_link) 2>&5
1670216699 ac_status=$?
16703 echo "$as_me:16704: \$? = $ac_status" >&5
16700 echo "$as_me:16701: \$? = $ac_status" >&5
1670416701 (exit $ac_status); } &&
1670516702 { ac_try='test -s conftest$ac_exeext'
16706 { (eval echo "$as_me:16707: \"$ac_try\"") >&5
16703 { (eval echo "$as_me:16704: \"$ac_try\"") >&5
1670716704 (eval $ac_try) 2>&5
1670816705 ac_status=$?
16709 echo "$as_me:16710: \$? = $ac_status" >&5
16706 echo "$as_me:16707: \$? = $ac_status" >&5
1671016707 (exit $ac_status); }; }; then
1671116708 ac_cv_lib_gnutls_openssl_SSL_connect=yes
1671216709 else
1671716714 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1671816715 LIBS=$ac_check_lib_save_LIBS
1671916716 fi
16720 echo "$as_me:16721: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5
16717 echo "$as_me:16718: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5
1672116718 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6
1672216719 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then
1672316720 LIBS="-lgnutls-openssl $LIBS"
1672416721 else
16725 echo "$as_me:16726: checking for SSL_connect in -lgnutls-extra" >&5
16722 echo "$as_me:16723: checking for SSL_connect in -lgnutls-extra" >&5
1672616723 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6
1672716724 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then
1672816725 echo $ECHO_N "(cached) $ECHO_C" >&6
1673016727 ac_check_lib_save_LIBS=$LIBS
1673116728 LIBS="-lgnutls-extra $LIBS"
1673216729 cat >conftest.$ac_ext <<_ACEOF
16733 #line 16734 "configure"
16730 #line 16731 "configure"
1673416731 #include "confdefs.h"
1673516732
1673616733 /* Override any gcc2 internal prototype to avoid an error. */
1674916746 }
1675016747 _ACEOF
1675116748 rm -f conftest.$ac_objext conftest$ac_exeext
16752 if { (eval echo "$as_me:16753: \"$ac_link\"") >&5
16749 if { (eval echo "$as_me:16750: \"$ac_link\"") >&5
1675316750 (eval $ac_link) 2>&5
1675416751 ac_status=$?
16755 echo "$as_me:16756: \$? = $ac_status" >&5
16752 echo "$as_me:16753: \$? = $ac_status" >&5
1675616753 (exit $ac_status); } &&
1675716754 { ac_try='test -s conftest$ac_exeext'
16758 { (eval echo "$as_me:16759: \"$ac_try\"") >&5
16755 { (eval echo "$as_me:16756: \"$ac_try\"") >&5
1675916756 (eval $ac_try) 2>&5
1676016757 ac_status=$?
16761 echo "$as_me:16762: \$? = $ac_status" >&5
16758 echo "$as_me:16759: \$? = $ac_status" >&5
1676216759 (exit $ac_status); }; }; then
1676316760 ac_cv_lib_gnutls_extra_SSL_connect=yes
1676416761 else
1676916766 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1677016767 LIBS=$ac_check_lib_save_LIBS
1677116768 fi
16772 echo "$as_me:16773: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5
16769 echo "$as_me:16770: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5
1677316770 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6
1677416771 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then
1677516772 LIBS="-lgnutls-extra $LIBS"
1677616773 else
16777 { { echo "$as_me:16778: error: cannot find gnutls openssl functions" >&5
16774 { { echo "$as_me:16775: error: cannot find gnutls openssl functions" >&5
1677816775 echo "$as_me: error: cannot find gnutls openssl functions" >&2;}
1677916776 { (exit 1); exit 1; }; }
1678016777 fi
1678316780
1678416781 fi
1678516782
16786 echo "$as_me:16787: checking for X509 support" >&5
16783 echo "$as_me:16784: checking for X509 support" >&5
1678716784 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6
1678816785 cat >conftest.$ac_ext <<_ACEOF
16789 #line 16790 "configure"
16786 #line 16787 "configure"
1679016787 #include "confdefs.h"
1679116788
1679216789 #include <stdio.h>
1681016807 }
1681116808 _ACEOF
1681216809 rm -f conftest.$ac_objext conftest$ac_exeext
16813 if { (eval echo "$as_me:16814: \"$ac_link\"") >&5
16810 if { (eval echo "$as_me:16811: \"$ac_link\"") >&5
1681416811 (eval $ac_link) 2>&5
1681516812 ac_status=$?
16816 echo "$as_me:16817: \$? = $ac_status" >&5
16813 echo "$as_me:16814: \$? = $ac_status" >&5
1681716814 (exit $ac_status); } &&
1681816815 { ac_try='test -s conftest$ac_exeext'
16819 { (eval echo "$as_me:16820: \"$ac_try\"") >&5
16816 { (eval echo "$as_me:16817: \"$ac_try\"") >&5
1682016817 (eval $ac_try) 2>&5
1682116818 ac_status=$?
16822 echo "$as_me:16823: \$? = $ac_status" >&5
16819 echo "$as_me:16820: \$? = $ac_status" >&5
1682316820 (exit $ac_status); }; }; then
1682416821 cf_x509_support=yes
1682516822 else
1682816825 cf_x509_support=no
1682916826 fi
1683016827 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
16831 echo "$as_me:16832: result: $cf_x509_support" >&5
16828 echo "$as_me:16829: result: $cf_x509_support" >&5
1683216829 echo "${ECHO_T}$cf_x509_support" >&6
1683316830
1683416831 if test "$cf_x509_support" = yes ; then
1686016857 ;;
1686116858 yes) #(vi
1686216859
16863 echo "$as_me:16864: checking for SSL_get_version in -lnss_compat_ossl" >&5
16860 echo "$as_me:16861: checking for SSL_get_version in -lnss_compat_ossl" >&5
1686416861 echo $ECHO_N "checking for SSL_get_version in -lnss_compat_ossl... $ECHO_C" >&6
1686516862 if test "${ac_cv_lib_nss_compat_ossl_SSL_get_version+set}" = set; then
1686616863 echo $ECHO_N "(cached) $ECHO_C" >&6
1686816865 ac_check_lib_save_LIBS=$LIBS
1686916866 LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS"
1687016867 cat >conftest.$ac_ext <<_ACEOF
16871 #line 16872 "configure"
16868 #line 16869 "configure"
1687216869 #include "confdefs.h"
1687316870
1687416871 /* Override any gcc2 internal prototype to avoid an error. */
1688716884 }
1688816885 _ACEOF
1688916886 rm -f conftest.$ac_objext conftest$ac_exeext
16890 if { (eval echo "$as_me:16891: \"$ac_link\"") >&5
16887 if { (eval echo "$as_me:16888: \"$ac_link\"") >&5
1689116888 (eval $ac_link) 2>&5
1689216889 ac_status=$?
16893 echo "$as_me:16894: \$? = $ac_status" >&5
16890 echo "$as_me:16891: \$? = $ac_status" >&5
1689416891 (exit $ac_status); } &&
1689516892 { ac_try='test -s conftest$ac_exeext'
16896 { (eval echo "$as_me:16897: \"$ac_try\"") >&5
16893 { (eval echo "$as_me:16894: \"$ac_try\"") >&5
1689716894 (eval $ac_try) 2>&5
1689816895 ac_status=$?
16899 echo "$as_me:16900: \$? = $ac_status" >&5
16896 echo "$as_me:16897: \$? = $ac_status" >&5
1690016897 (exit $ac_status); }; }; then
1690116898 ac_cv_lib_nss_compat_ossl_SSL_get_version=yes
1690216899 else
1690716904 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1690816905 LIBS=$ac_check_lib_save_LIBS
1690916906 fi
16910 echo "$as_me:16911: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5
16907 echo "$as_me:16908: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5
1691116908 echo "${ECHO_T}$ac_cv_lib_nss_compat_ossl_SSL_get_version" >&6
1691216909 if test $ac_cv_lib_nss_compat_ossl_SSL_get_version = yes; then
1691316910 cat >>confdefs.h <<EOF
1692216919 if test -d $cf_ssl_root ; then
1692316920 test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6
1692416921
16925 echo "${as_me:-configure}:16926: testing assume it is in $cf_ssl_root ..." 1>&5
16922 echo "${as_me:-configure}:16923: testing assume it is in $cf_ssl_root ..." 1>&5
1692616923
1692716924 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library"
1692816925 else
16929 { { echo "$as_me:16930: error: cannot find NSS compilant libraries" >&5
16926 { { echo "$as_me:16927: error: cannot find NSS compilant libraries" >&5
1693016927 echo "$as_me: error: cannot find NSS compilant libraries" >&2;}
1693116928 { (exit 1); exit 1; }; }
1693216929 fi
1694116938 elif test -d $cf_cv_use_libnss_compat/../include ; then
1694216939 cf_ssl_root=$cf_cv_use_libnss_compat/..
1694316940 else
16944 { { echo "$as_me:16945: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5
16941 { { echo "$as_me:16942: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5
1694516942 echo "$as_me: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&2;}
1694616943 { (exit 1); exit 1; }; }
1694716944 fi
1694816945 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library"
1694916946 else
16950 { echo "$as_me:16951: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5
16947 { echo "$as_me:16948: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5
1695116948 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;}
1695216949 fi
1695316950 ;;
1704117038 fi
1704217039
1704317040 if test "$cf_ssl_subincs" = yes ; then
17044 echo "$as_me:17045: checking for NSS compilant include directory" >&5
17041 echo "$as_me:17042: checking for NSS compilant include directory" >&5
1704517042 echo $ECHO_N "checking for NSS compilant include directory... $ECHO_C" >&6
1704617043 cat >conftest.$ac_ext <<_ACEOF
17047 #line 17048 "configure"
17044 #line 17045 "configure"
1704817045 #include "confdefs.h"
1704917046
1705017047 #include <stdio.h>
1705817055 }
1705917056 _ACEOF
1706017057 rm -f conftest.$ac_objext
17061 if { (eval echo "$as_me:17062: \"$ac_compile\"") >&5
17058 if { (eval echo "$as_me:17059: \"$ac_compile\"") >&5
1706217059 (eval $ac_compile) 2>&5
1706317060 ac_status=$?
17064 echo "$as_me:17065: \$? = $ac_status" >&5
17061 echo "$as_me:17062: \$? = $ac_status" >&5
1706517062 (exit $ac_status); } &&
1706617063 { ac_try='test -s conftest.$ac_objext'
17067 { (eval echo "$as_me:17068: \"$ac_try\"") >&5
17064 { (eval echo "$as_me:17065: \"$ac_try\"") >&5
1706817065 (eval $ac_try) 2>&5
1706917066 ac_status=$?
17070 echo "$as_me:17071: \$? = $ac_status" >&5
17067 echo "$as_me:17068: \$? = $ac_status" >&5
1707117068 (exit $ac_status); }; }; then
1707217069 cf_ssl_incl=yes
1707317070 else
1707617073 cf_ssl_incl=no
1707717074 fi
1707817075 rm -f conftest.$ac_objext conftest.$ac_ext
17079 echo "$as_me:17080: result: $cf_ssl_incl" >&5
17076 echo "$as_me:17077: result: $cf_ssl_incl" >&5
1708017077 echo "${ECHO_T}$cf_ssl_incl" >&6
1708117078 test "$cf_ssl_incl" = yes &&
1708217079 cat >>confdefs.h <<\EOF
1708517082
1708617083 fi
1708717084
17088 echo "$as_me:17089: checking if we can link to NSS compilant library" >&5
17085 echo "$as_me:17086: checking if we can link to NSS compilant library" >&5
1708917086 echo $ECHO_N "checking if we can link to NSS compilant library... $ECHO_C" >&6
1709017087 cat >conftest.$ac_ext <<_ACEOF
17091 #line 17092 "configure"
17088 #line 17089 "configure"
1709217089 #include "confdefs.h"
1709317090
1709417091 #include <stdio.h>
1710717104 }
1710817105 _ACEOF
1710917106 rm -f conftest.$ac_objext conftest$ac_exeext
17110 if { (eval echo "$as_me:17111: \"$ac_link\"") >&5
17107 if { (eval echo "$as_me:17108: \"$ac_link\"") >&5
1711117108 (eval $ac_link) 2>&5
1711217109 ac_status=$?
17113 echo "$as_me:17114: \$? = $ac_status" >&5
17110 echo "$as_me:17111: \$? = $ac_status" >&5
1711417111 (exit $ac_status); } &&
1711517112 { ac_try='test -s conftest$ac_exeext'
17116 { (eval echo "$as_me:17117: \"$ac_try\"") >&5
17113 { (eval echo "$as_me:17114: \"$ac_try\"") >&5
1711717114 (eval $ac_try) 2>&5
1711817115 ac_status=$?
17119 echo "$as_me:17120: \$? = $ac_status" >&5
17116 echo "$as_me:17117: \$? = $ac_status" >&5
1712017117 (exit $ac_status); }; }; then
1712117118 cf_ssl_library=yes
1712217119 else
1712517122 cf_ssl_library=no
1712617123 fi
1712717124 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
17128 echo "$as_me:17129: result: $cf_ssl_library" >&5
17125 echo "$as_me:17126: result: $cf_ssl_library" >&5
1712917126 echo "${ECHO_T}$cf_ssl_library" >&6
1713017127 if test "$cf_ssl_library" = yes ; then
1713117128
1713817135 EOF
1713917136
1714017137 else
17141 { { echo "$as_me:17142: error: Cannot link with NSS compilant libraries" >&5
17138 { { echo "$as_me:17139: error: Cannot link with NSS compilant libraries" >&5
1714217139 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;}
1714317140 { (exit 1); exit 1; }; }
1714417141 fi
1714617143 fi
1714717144
1714817145 ### check for ipv6 support
17149 echo "$as_me:17150: checking whether to enable ipv6" >&5
17146 echo "$as_me:17147: checking whether to enable ipv6" >&5
1715017147 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6
1715117148
1715217149 # Check whether --enable-ipv6 or --disable-ipv6 was given.
1716317160 else
1716417161 enableval=no
1716517162 fi;
17166 echo "$as_me:17167: result: $enableval" >&5
17163 echo "$as_me:17164: result: $enableval" >&5
1716717164 echo "${ECHO_T}$enableval" >&6
1716817165 if test "$enableval" = "yes"; then
1716917166
17170 echo "$as_me:17171: checking ipv6 stack type" >&5
17167 echo "$as_me:17168: checking ipv6 stack type" >&5
1717117168 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6
1717217169 if test "${cf_cv_ipv6type+set}" = set; then
1717317170 echo $ECHO_N "(cached) $ECHO_C" >&6
1718817185 ;;
1718917186 inria) #(vi
1719017187 cat >conftest.$ac_ext <<_ACEOF
17191 #line 17192 "configure"
17188 #line 17189 "configure"
1719217189 #include "confdefs.h"
1719317190
1719417191 #include <netinet/in.h>
1720517202 ;;
1720617203 kame) #(vi
1720717204 cat >conftest.$ac_ext <<_ACEOF
17208 #line 17209 "configure"
17205 #line 17206 "configure"
1720917206 #include "confdefs.h"
1721017207
1721117208 #include <netinet/in.h>
1722217219 ;;
1722317220 linux-glibc) #(vi
1722417221 cat >conftest.$ac_ext <<_ACEOF
17225 #line 17226 "configure"
17222 #line 17223 "configure"
1722617223 #include "confdefs.h"
1722717224
1722817225 #include <features.h>
1724817245 ;;
1724917246 toshiba) #(vi
1725017247 cat >conftest.$ac_ext <<_ACEOF
17251 #line 17252 "configure"
17248 #line 17249 "configure"
1725217249 #include "confdefs.h"
1725317250
1725417251 #include <sys/param.h>
1726517262 ;;
1726617263 v6d) #(vi
1726717264 cat >conftest.$ac_ext <<_ACEOF
17268 #line 17269 "configure"
17265 #line 17266 "configure"
1726917266 #include "confdefs.h"
1727017267
1727117268 #include </usr/local/v6/include/sys/v6config.h>
1728217279 ;;
1728317280 zeta)
1728417281 cat >conftest.$ac_ext <<_ACEOF
17285 #line 17286 "configure"
17282 #line 17283 "configure"
1728617283 #include "confdefs.h"
1728717284
1728817285 #include <sys/param.h>
1730417301 done
1730517302
1730617303 fi
17307 echo "$as_me:17308: result: $cf_cv_ipv6type" >&5
17304 echo "$as_me:17305: result: $cf_cv_ipv6type" >&5
1730817305 echo "${ECHO_T}$cf_cv_ipv6type" >&6
1730917306
1731017307 cf_ipv6lib=none
1731117308 cf_ipv6dir=none
1731217309
17313 echo "$as_me:17314: checking for IPv6 library if required" >&5
17310 echo "$as_me:17311: checking for IPv6 library if required" >&5
1731417311 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6
1731517312 case $cf_cv_ipv6type in #(vi
1731617313 solaris) #(vi
1734017337 cf_ipv6dir=v6
1734117338 ;;
1734217339 esac
17343 echo "$as_me:17344: result: $cf_ipv6lib" >&5
17340 echo "$as_me:17341: result: $cf_ipv6lib" >&5
1734417341 echo "${ECHO_T}$cf_ipv6lib" >&6
1734517342
1734617343 if test "$cf_ipv6lib" != "none"; then
1734717344
1734817345 cat >conftest.$ac_ext <<_ACEOF
17349 #line 17350 "configure"
17346 #line 17347 "configure"
1735017347 #include "confdefs.h"
1735117348
1735217349 #include <sys/types.h>
1736217359 }
1736317360 _ACEOF
1736417361 rm -f conftest.$ac_objext conftest$ac_exeext
17365 if { (eval echo "$as_me:17366: \"$ac_link\"") >&5
17362 if { (eval echo "$as_me:17363: \"$ac_link\"") >&5
1736617363 (eval $ac_link) 2>&5
1736717364 ac_status=$?
17368 echo "$as_me:17369: \$? = $ac_status" >&5
17365 echo "$as_me:17366: \$? = $ac_status" >&5
1736917366 (exit $ac_status); } &&
1737017367 { ac_try='test -s conftest$ac_exeext'
17371 { (eval echo "$as_me:17372: \"$ac_try\"") >&5
17368 { (eval echo "$as_me:17369: \"$ac_try\"") >&5
1737217369 (eval $ac_try) 2>&5
1737317370 ac_status=$?
17374 echo "$as_me:17375: \$? = $ac_status" >&5
17371 echo "$as_me:17372: \$? = $ac_status" >&5
1737517372 (exit $ac_status); }; }; then
1737617373 :
1737717374 else
1751117508 cf_save_CPPFLAGS=$CPPFLAGS
1751217509 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1751317510 cat >conftest.$ac_ext <<_ACEOF
17514 #line 17515 "configure"
17511 #line 17512 "configure"
1751517512 #include "confdefs.h"
1751617513 #include <stdio.h>
1751717514 int
1752317520 }
1752417521 _ACEOF
1752517522 rm -f conftest.$ac_objext
17526 if { (eval echo "$as_me:17527: \"$ac_compile\"") >&5
17523 if { (eval echo "$as_me:17524: \"$ac_compile\"") >&5
1752717524 (eval $ac_compile) 2>&5
1752817525 ac_status=$?
17529 echo "$as_me:17530: \$? = $ac_status" >&5
17526 echo "$as_me:17527: \$? = $ac_status" >&5
1753017527 (exit $ac_status); } &&
1753117528 { ac_try='test -s conftest.$ac_objext'
17532 { (eval echo "$as_me:17533: \"$ac_try\"") >&5
17529 { (eval echo "$as_me:17530: \"$ac_try\"") >&5
1753317530 (eval $ac_try) 2>&5
1753417531 ac_status=$?
17535 echo "$as_me:17536: \$? = $ac_status" >&5
17532 echo "$as_me:17533: \$? = $ac_status" >&5
1753617533 (exit $ac_status); }; }; then
1753717534 :
1753817535 else
1754917546 if test "$cf_have_incdir" = no ; then
1755017547 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1755117548
17552 echo "${as_me:-configure}:17553: testing adding $cf_add_incdir to include-path ..." 1>&5
17549 echo "${as_me:-configure}:17550: testing adding $cf_add_incdir to include-path ..." 1>&5
1755317550
1755417551 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1755517552
1757517572
1757617573 eval 'cf_cv_have_lib_'$cf_ipv6lib'=no'
1757717574 cf_libdir=""
17578 echo "$as_me:17579: checking for getaddrinfo" >&5
17575 echo "$as_me:17576: checking for getaddrinfo" >&5
1757917576 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6
1758017577 if test "${ac_cv_func_getaddrinfo+set}" = set; then
1758117578 echo $ECHO_N "(cached) $ECHO_C" >&6
1758217579 else
1758317580 cat >conftest.$ac_ext <<_ACEOF
17584 #line 17585 "configure"
17581 #line 17582 "configure"
1758517582 #include "confdefs.h"
1758617583 /* System header to define __stub macros and hopefully few prototypes,
1758717584 which can conflict with char getaddrinfo (); below. */
1761217609 }
1761317610 _ACEOF
1761417611 rm -f conftest.$ac_objext conftest$ac_exeext
17615 if { (eval echo "$as_me:17616: \"$ac_link\"") >&5
17612 if { (eval echo "$as_me:17613: \"$ac_link\"") >&5
1761617613 (eval $ac_link) 2>&5
1761717614 ac_status=$?
17618 echo "$as_me:17619: \$? = $ac_status" >&5
17615 echo "$as_me:17616: \$? = $ac_status" >&5
1761917616 (exit $ac_status); } &&
1762017617 { ac_try='test -s conftest$ac_exeext'
17621 { (eval echo "$as_me:17622: \"$ac_try\"") >&5
17618 { (eval echo "$as_me:17619: \"$ac_try\"") >&5
1762217619 (eval $ac_try) 2>&5
1762317620 ac_status=$?
17624 echo "$as_me:17625: \$? = $ac_status" >&5
17621 echo "$as_me:17622: \$? = $ac_status" >&5
1762517622 (exit $ac_status); }; }; then
1762617623 ac_cv_func_getaddrinfo=yes
1762717624 else
1763117628 fi
1763217629 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1763317630 fi
17634 echo "$as_me:17635: result: $ac_cv_func_getaddrinfo" >&5
17631 echo "$as_me:17632: result: $ac_cv_func_getaddrinfo" >&5
1763517632 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6
1763617633 if test $ac_cv_func_getaddrinfo = yes; then
1763717634 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
1763817635 else
1763917636
1764017637 cf_save_LIBS="$LIBS"
17641 echo "$as_me:17642: checking for getaddrinfo in -l$cf_ipv6lib" >&5
17638 echo "$as_me:17639: checking for getaddrinfo in -l$cf_ipv6lib" >&5
1764217639 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6
1764317640 LIBS="-l$cf_ipv6lib $LIBS"
1764417641 cat >conftest.$ac_ext <<_ACEOF
17645 #line 17646 "configure"
17642 #line 17643 "configure"
1764617643 #include "confdefs.h"
1764717644
1764817645 #include <sys/types.h>
1765817655 }
1765917656 _ACEOF
1766017657 rm -f conftest.$ac_objext conftest$ac_exeext
17661 if { (eval echo "$as_me:17662: \"$ac_link\"") >&5
17658 if { (eval echo "$as_me:17659: \"$ac_link\"") >&5
1766217659 (eval $ac_link) 2>&5
1766317660 ac_status=$?
17664 echo "$as_me:17665: \$? = $ac_status" >&5
17661 echo "$as_me:17662: \$? = $ac_status" >&5
1766517662 (exit $ac_status); } &&
1766617663 { ac_try='test -s conftest$ac_exeext'
17667 { (eval echo "$as_me:17668: \"$ac_try\"") >&5
17664 { (eval echo "$as_me:17665: \"$ac_try\"") >&5
1766817665 (eval $ac_try) 2>&5
1766917666 ac_status=$?
17670 echo "$as_me:17671: \$? = $ac_status" >&5
17667 echo "$as_me:17668: \$? = $ac_status" >&5
1767117668 (exit $ac_status); }; }; then
17672 echo "$as_me:17673: result: yes" >&5
17669 echo "$as_me:17670: result: yes" >&5
1767317670 echo "${ECHO_T}yes" >&6
1767417671 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
1767517672
1767617673 else
1767717674 echo "$as_me: failed program was:" >&5
1767817675 cat conftest.$ac_ext >&5
17679 echo "$as_me:17680: result: no" >&5
17676 echo "$as_me:17677: result: no" >&5
1768017677 echo "${ECHO_T}no" >&6
1768117678
1768217679 cf_search=
1776617763
1776717764 for cf_libdir in $cf_search
1776817765 do
17769 echo "$as_me:17770: checking for -l$cf_ipv6lib in $cf_libdir" >&5
17766 echo "$as_me:17767: checking for -l$cf_ipv6lib in $cf_libdir" >&5
1777017767 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6
1777117768 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS"
1777217769 cat >conftest.$ac_ext <<_ACEOF
17773 #line 17774 "configure"
17770 #line 17771 "configure"
1777417771 #include "confdefs.h"
1777517772
1777617773 #include <sys/types.h>
1778617783 }
1778717784 _ACEOF
1778817785 rm -f conftest.$ac_objext conftest$ac_exeext
17789 if { (eval echo "$as_me:17790: \"$ac_link\"") >&5
17786 if { (eval echo "$as_me:17787: \"$ac_link\"") >&5
1779017787 (eval $ac_link) 2>&5
1779117788 ac_status=$?
17792 echo "$as_me:17793: \$? = $ac_status" >&5
17789 echo "$as_me:17790: \$? = $ac_status" >&5
1779317790 (exit $ac_status); } &&
1779417791 { ac_try='test -s conftest$ac_exeext'
17795 { (eval echo "$as_me:17796: \"$ac_try\"") >&5
17792 { (eval echo "$as_me:17793: \"$ac_try\"") >&5
1779617793 (eval $ac_try) 2>&5
1779717794 ac_status=$?
17798 echo "$as_me:17799: \$? = $ac_status" >&5
17795 echo "$as_me:17796: \$? = $ac_status" >&5
1779917796 (exit $ac_status); }; }; then
17800 echo "$as_me:17801: result: yes" >&5
17797 echo "$as_me:17798: result: yes" >&5
1780117798 echo "${ECHO_T}yes" >&6
1780217799 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
1780317800 break
1780417801 else
1780517802 echo "$as_me: failed program was:" >&5
1780617803 cat conftest.$ac_ext >&5
17807 echo "$as_me:17808: result: no" >&5
17804 echo "$as_me:17805: result: no" >&5
1780817805 echo "${ECHO_T}no" >&6
1780917806 LIBS="$cf_save_LIBS"
1781017807 fi
1781917816 eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib
1782017817
1782117818 if test $cf_found_library = no ; then
17822 { { echo "$as_me:17823: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a
17819 { { echo "$as_me:17820: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a
1782317820 from an appropriate IPv6 kit and compile beforehand." >&5
1782417821 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a
1782517822 from an appropriate IPv6 kit and compile beforehand." >&2;}
1782717824 fi
1782817825 fi
1782917826
17830 echo "$as_me:17831: checking working getaddrinfo" >&5
17827 echo "$as_me:17828: checking working getaddrinfo" >&5
1783117828 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6
1783217829 if test "${cf_cv_getaddrinfo+set}" = set; then
1783317830 echo $ECHO_N "(cached) $ECHO_C" >&6
1783717834 cf_cv_getaddrinfo=unknown
1783817835 else
1783917836 cat >conftest.$ac_ext <<_ACEOF
17840 #line 17841 "configure"
17837 #line 17838 "configure"
1784117838 #include "confdefs.h"
1784217839
1784317840 #include <sys/types.h>
1791717914
1791817915 _ACEOF
1791917916 rm -f conftest$ac_exeext
17920 if { (eval echo "$as_me:17921: \"$ac_link\"") >&5
17917 if { (eval echo "$as_me:17918: \"$ac_link\"") >&5
1792117918 (eval $ac_link) 2>&5
1792217919 ac_status=$?
17923 echo "$as_me:17924: \$? = $ac_status" >&5
17920 echo "$as_me:17921: \$? = $ac_status" >&5
1792417921 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
17925 { (eval echo "$as_me:17926: \"$ac_try\"") >&5
17922 { (eval echo "$as_me:17923: \"$ac_try\"") >&5
1792617923 (eval $ac_try) 2>&5
1792717924 ac_status=$?
17928 echo "$as_me:17929: \$? = $ac_status" >&5
17925 echo "$as_me:17926: \$? = $ac_status" >&5
1792917926 (exit $ac_status); }; }; then
1793017927 cf_cv_getaddrinfo=yes
1793117928 else
1793817935 fi
1793917936
1794017937 fi
17941 echo "$as_me:17942: result: $cf_cv_getaddrinfo" >&5
17938 echo "$as_me:17939: result: $cf_cv_getaddrinfo" >&5
1794217939 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6
1794317940 if test "$cf_cv_getaddrinfo" = yes ; then
1794417941
1795417951
1795517952 if test "$cf_cv_getaddrinfo" != "yes"; then
1795617953 if test "$cf_cv_ipv6type" != "linux"; then
17957 { echo "$as_me:17958: WARNING: You must get working getaddrinfo() function,
17954 { echo "$as_me:17955: WARNING: You must get working getaddrinfo() function,
1795817955 or you can specify \"--disable-ipv6\"" >&5
1795917956 echo "$as_me: WARNING: You must get working getaddrinfo() function,
1796017957 or you can specify \"--disable-ipv6\"" >&2;}
1796117958 else
17962 { echo "$as_me:17963: WARNING: The getaddrinfo() implementation on your system seems be buggy.
17959 { echo "$as_me:17960: WARNING: The getaddrinfo() implementation on your system seems be buggy.
1796317960 You should upgrade your system library to the newest version
1796417961 of GNU C library (aka glibc)." >&5
1796517962 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy.
1797017967
1797117968 fi
1797217969
17973 echo "$as_me:17974: checking for screen type" >&5
17970 echo "$as_me:17971: checking for screen type" >&5
1797417971 echo $ECHO_N "checking for screen type... $ECHO_C" >&6
1797517972 if test "${cf_cv_screen+set}" = set; then
1797617973 echo $ECHO_N "(cached) $ECHO_C" >&6
1798417981 curses|ncurses|ncursesw|pdcurses|slang)
1798517982 cf_cv_screen=$withval
1798617983 ;;
17987 *) { { echo "$as_me:17988: error: Unexpected value" >&5
17984 *) { { echo "$as_me:17985: error: Unexpected value" >&5
1798817985 echo "$as_me: error: Unexpected value" >&2;}
1798917986 { (exit 1); exit 1; }; }
1799017987 ;;
1799317990 cf_cv_screen=curses
1799417991 fi;
1799517992 fi
17996 echo "$as_me:17997: result: $cf_cv_screen" >&5
17993 echo "$as_me:17994: result: $cf_cv_screen" >&5
1799717994 echo "${ECHO_T}$cf_cv_screen" >&6
1799817995
1799917996 case $cf_cv_screen in
1800017997 curses|ncurses*)
1800117998
18002 echo "$as_me:18003: checking for specific curses-directory" >&5
17999 echo "$as_me:18000: checking for specific curses-directory" >&5
1800318000 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6
1800418001
1800518002 # Check whether --with-curses-dir or --without-curses-dir was given.
1800918006 else
1801018007 cf_cv_curses_dir=no
1801118008 fi;
18012 echo "$as_me:18013: result: $cf_cv_curses_dir" >&5
18009 echo "$as_me:18010: result: $cf_cv_curses_dir" >&5
1801318010 echo "${ECHO_T}$cf_cv_curses_dir" >&6
1801418011
1801518012 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
1804018037 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
1804118038 ;;
1804218039 *)
18043 { { echo "$as_me:18044: error: expected a pathname, not \"$withval\"" >&5
18040 { { echo "$as_me:18041: error: expected a pathname, not \"$withval\"" >&5
1804418041 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
1804518042 { (exit 1); exit 1; }; }
1804618043 ;;
1807318070 cf_save_CPPFLAGS=$CPPFLAGS
1807418071 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1807518072 cat >conftest.$ac_ext <<_ACEOF
18076 #line 18077 "configure"
18073 #line 18074 "configure"
1807718074 #include "confdefs.h"
1807818075 #include <stdio.h>
1807918076 int
1808518082 }
1808618083 _ACEOF
1808718084 rm -f conftest.$ac_objext
18088 if { (eval echo "$as_me:18089: \"$ac_compile\"") >&5
18085 if { (eval echo "$as_me:18086: \"$ac_compile\"") >&5
1808918086 (eval $ac_compile) 2>&5
1809018087 ac_status=$?
18091 echo "$as_me:18092: \$? = $ac_status" >&5
18088 echo "$as_me:18089: \$? = $ac_status" >&5
1809218089 (exit $ac_status); } &&
1809318090 { ac_try='test -s conftest.$ac_objext'
18094 { (eval echo "$as_me:18095: \"$ac_try\"") >&5
18091 { (eval echo "$as_me:18092: \"$ac_try\"") >&5
1809518092 (eval $ac_try) 2>&5
1809618093 ac_status=$?
18097 echo "$as_me:18098: \$? = $ac_status" >&5
18094 echo "$as_me:18095: \$? = $ac_status" >&5
1809818095 (exit $ac_status); }; }; then
1809918096 :
1810018097 else
1811118108 if test "$cf_have_incdir" = no ; then
1811218109 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1811318110
18114 echo "${as_me:-configure}:18115: testing adding $cf_add_incdir to include-path ..." 1>&5
18111 echo "${as_me:-configure}:18112: testing adding $cf_add_incdir to include-path ..." 1>&5
1811518112
1811618113 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1811718114
1814518142 if test "$cf_have_libdir" = no ; then
1814618143 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1814718144
18148 echo "${as_me:-configure}:18149: testing adding $cf_add_libdir to library-path ..." 1>&5
18145 echo "${as_me:-configure}:18146: testing adding $cf_add_libdir to library-path ..." 1>&5
1814918146
1815018147 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1815118148 fi
1816418161 case $cf_cv_screen in
1816518162 curses)
1816618163
18167 echo "$as_me:18168: checking for extra include directories" >&5
18164 echo "$as_me:18165: checking for extra include directories" >&5
1816818165 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6
1816918166 if test "${cf_cv_curses_incdir+set}" = set; then
1817018167 echo $ECHO_N "(cached) $ECHO_C" >&6
1819018187 esac
1819118188
1819218189 fi
18193 echo "$as_me:18194: result: $cf_cv_curses_incdir" >&5
18190 echo "$as_me:18191: result: $cf_cv_curses_incdir" >&5
1819418191 echo "${ECHO_T}$cf_cv_curses_incdir" >&6
1819518192 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir"
1819618193
18197 echo "$as_me:18198: checking if we have identified curses headers" >&5
18194 echo "$as_me:18195: checking if we have identified curses headers" >&5
1819818195 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
1819918196 if test "${cf_cv_ncurses_header+set}" = set; then
1820018197 echo $ECHO_N "(cached) $ECHO_C" >&6
1820618203 curses.h ncurses/ncurses.h ncurses/curses.h
1820718204 do
1820818205 cat >conftest.$ac_ext <<_ACEOF
18209 #line 18210 "configure"
18206 #line 18207 "configure"
1821018207 #include "confdefs.h"
1821118208 #include <${cf_header}>
1821218209 int
1821818215 }
1821918216 _ACEOF
1822018217 rm -f conftest.$ac_objext
18221 if { (eval echo "$as_me:18222: \"$ac_compile\"") >&5
18218 if { (eval echo "$as_me:18219: \"$ac_compile\"") >&5
1822218219 (eval $ac_compile) 2>&5
1822318220 ac_status=$?
18224 echo "$as_me:18225: \$? = $ac_status" >&5
18221 echo "$as_me:18222: \$? = $ac_status" >&5
1822518222 (exit $ac_status); } &&
1822618223 { ac_try='test -s conftest.$ac_objext'
18227 { (eval echo "$as_me:18228: \"$ac_try\"") >&5
18224 { (eval echo "$as_me:18225: \"$ac_try\"") >&5
1822818225 (eval $ac_try) 2>&5
1822918226 ac_status=$?
18230 echo "$as_me:18231: \$? = $ac_status" >&5
18227 echo "$as_me:18228: \$? = $ac_status" >&5
1823118228 (exit $ac_status); }; }; then
1823218229 cf_cv_ncurses_header=$cf_header; break
1823318230 else
1823818235 done
1823918236
1824018237 fi
18241 echo "$as_me:18242: result: $cf_cv_ncurses_header" >&5
18238 echo "$as_me:18239: result: $cf_cv_ncurses_header" >&5
1824218239 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
1824318240
1824418241 if test "$cf_cv_ncurses_header" = none ; then
18245 { { echo "$as_me:18246: error: No curses header-files found" >&5
18242 { { echo "$as_me:18243: error: No curses header-files found" >&5
1824618243 echo "$as_me: error: No curses header-files found" >&2;}
1824718244 { (exit 1); exit 1; }; }
1824818245 fi
1825218249 for ac_header in $cf_cv_ncurses_header
1825318250 do
1825418251 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
18255 echo "$as_me:18256: checking for $ac_header" >&5
18252 echo "$as_me:18253: checking for $ac_header" >&5
1825618253 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
1825718254 if eval "test \"\${$as_ac_Header+set}\" = set"; then
1825818255 echo $ECHO_N "(cached) $ECHO_C" >&6
1825918256 else
1826018257 cat >conftest.$ac_ext <<_ACEOF
18261 #line 18262 "configure"
18258 #line 18259 "configure"
1826218259 #include "confdefs.h"
1826318260 #include <$ac_header>
1826418261 _ACEOF
18265 if { (eval echo "$as_me:18266: \"$ac_cpp conftest.$ac_ext\"") >&5
18262 if { (eval echo "$as_me:18263: \"$ac_cpp conftest.$ac_ext\"") >&5
1826618263 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1826718264 ac_status=$?
1826818265 egrep -v '^ *\+' conftest.er1 >conftest.err
1826918266 rm -f conftest.er1
1827018267 cat conftest.err >&5
18271 echo "$as_me:18272: \$? = $ac_status" >&5
18268 echo "$as_me:18269: \$? = $ac_status" >&5
1827218269 (exit $ac_status); } >/dev/null; then
1827318270 if test -s conftest.err; then
1827418271 ac_cpp_err=$ac_c_preproc_warn_flag
1828718284 fi
1828818285 rm -f conftest.err conftest.$ac_ext
1828918286 fi
18290 echo "$as_me:18291: result: `eval echo '${'$as_ac_Header'}'`" >&5
18287 echo "$as_me:18288: result: `eval echo '${'$as_ac_Header'}'`" >&5
1829118288 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
1829218289 if test `eval echo '${'$as_ac_Header'}'` = yes; then
1829318290 cat >>confdefs.h <<EOF
1829718294 fi
1829818295 done
1829918296
18300 echo "$as_me:18301: checking for terminfo header" >&5
18297 echo "$as_me:18298: checking for terminfo header" >&5
1830118298 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
1830218299 if test "${cf_cv_term_header+set}" = set; then
1830318300 echo $ECHO_N "(cached) $ECHO_C" >&6
1831518312 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
1831618313 do
1831718314 cat >conftest.$ac_ext <<_ACEOF
18318 #line 18319 "configure"
18315 #line 18316 "configure"
1831918316 #include "confdefs.h"
1832018317 #include <stdio.h>
1832118318 #include <${cf_cv_ncurses_header:-curses.h}>
1833018327 }
1833118328 _ACEOF
1833218329 rm -f conftest.$ac_objext
18333 if { (eval echo "$as_me:18334: \"$ac_compile\"") >&5
18330 if { (eval echo "$as_me:18331: \"$ac_compile\"") >&5
1833418331 (eval $ac_compile) 2>&5
1833518332 ac_status=$?
18336 echo "$as_me:18337: \$? = $ac_status" >&5
18333 echo "$as_me:18334: \$? = $ac_status" >&5
1833718334 (exit $ac_status); } &&
1833818335 { ac_try='test -s conftest.$ac_objext'
18339 { (eval echo "$as_me:18340: \"$ac_try\"") >&5
18336 { (eval echo "$as_me:18337: \"$ac_try\"") >&5
1834018337 (eval $ac_try) 2>&5
1834118338 ac_status=$?
18342 echo "$as_me:18343: \$? = $ac_status" >&5
18339 echo "$as_me:18340: \$? = $ac_status" >&5
1834318340 (exit $ac_status); }; }; then
1834418341
1834518342 cf_cv_term_header="$cf_test"
1835518352 done
1835618353
1835718354 fi
18358 echo "$as_me:18359: result: $cf_cv_term_header" >&5
18355 echo "$as_me:18356: result: $cf_cv_term_header" >&5
1835918356 echo "${ECHO_T}$cf_cv_term_header" >&6
1836018357
1836118358 # Set definitions to allow ifdef'ing to accommodate subdirectories
1838718384 ;;
1838818385 esac
1838918386
18390 echo "$as_me:18391: checking for ncurses version" >&5
18387 echo "$as_me:18388: checking for ncurses version" >&5
1839118388 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
1839218389 if test "${cf_cv_ncurses_version+set}" = set; then
1839318390 echo $ECHO_N "(cached) $ECHO_C" >&6
1841318410 #endif
1841418411 EOF
1841518412 cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
18416 { (eval echo "$as_me:18417: \"$cf_try\"") >&5
18413 { (eval echo "$as_me:18414: \"$cf_try\"") >&5
1841718414 (eval $cf_try) 2>&5
1841818415 ac_status=$?
18419 echo "$as_me:18420: \$? = $ac_status" >&5
18416 echo "$as_me:18417: \$? = $ac_status" >&5
1842018417 (exit $ac_status); }
1842118418 if test -f conftest.out ; then
1842218419 cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
1842618423
1842718424 else
1842818425 cat >conftest.$ac_ext <<_ACEOF
18429 #line 18430 "configure"
18426 #line 18427 "configure"
1843018427 #include "confdefs.h"
1843118428
1843218429 #include <${cf_cv_ncurses_header:-curses.h}>
1845118448 }
1845218449 _ACEOF
1845318450 rm -f conftest$ac_exeext
18454 if { (eval echo "$as_me:18455: \"$ac_link\"") >&5
18451 if { (eval echo "$as_me:18452: \"$ac_link\"") >&5
1845518452 (eval $ac_link) 2>&5
1845618453 ac_status=$?
18457 echo "$as_me:18458: \$? = $ac_status" >&5
18454 echo "$as_me:18455: \$? = $ac_status" >&5
1845818455 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
18459 { (eval echo "$as_me:18460: \"$ac_try\"") >&5
18456 { (eval echo "$as_me:18457: \"$ac_try\"") >&5
1846018457 (eval $ac_try) 2>&5
1846118458 ac_status=$?
18462 echo "$as_me:18463: \$? = $ac_status" >&5
18459 echo "$as_me:18460: \$? = $ac_status" >&5
1846318460 (exit $ac_status); }; }; then
1846418461
1846518462 cf_cv_ncurses_version=`cat $cf_tempfile`
1847318470 rm -f $cf_tempfile
1847418471
1847518472 fi
18476 echo "$as_me:18477: result: $cf_cv_ncurses_version" >&5
18473 echo "$as_me:18474: result: $cf_cv_ncurses_version" >&5
1847718474 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
1847818475 test "$cf_cv_ncurses_version" = no ||
1847918476 cat >>confdefs.h <<\EOF
1848018477 #define NCURSES 1
1848118478 EOF
1848218479
18483 echo "$as_me:18484: checking if we have identified curses libraries" >&5
18480 echo "$as_me:18481: checking if we have identified curses libraries" >&5
1848418481 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6
1848518482 cat >conftest.$ac_ext <<_ACEOF
18486 #line 18487 "configure"
18483 #line 18484 "configure"
1848718484 #include "confdefs.h"
1848818485 #include <${cf_cv_ncurses_header:-curses.h}>
1848918486 int
1849518492 }
1849618493 _ACEOF
1849718494 rm -f conftest.$ac_objext conftest$ac_exeext
18498 if { (eval echo "$as_me:18499: \"$ac_link\"") >&5
18495 if { (eval echo "$as_me:18496: \"$ac_link\"") >&5
1849918496 (eval $ac_link) 2>&5
1850018497 ac_status=$?
18501 echo "$as_me:18502: \$? = $ac_status" >&5
18498 echo "$as_me:18499: \$? = $ac_status" >&5
1850218499 (exit $ac_status); } &&
1850318500 { ac_try='test -s conftest$ac_exeext'
18504 { (eval echo "$as_me:18505: \"$ac_try\"") >&5
18501 { (eval echo "$as_me:18502: \"$ac_try\"") >&5
1850518502 (eval $ac_try) 2>&5
1850618503 ac_status=$?
18507 echo "$as_me:18508: \$? = $ac_status" >&5
18504 echo "$as_me:18505: \$? = $ac_status" >&5
1850818505 (exit $ac_status); }; }; then
1850918506 cf_result=yes
1851018507 else
1851318510 cf_result=no
1851418511 fi
1851518512 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
18516 echo "$as_me:18517: result: $cf_result" >&5
18513 echo "$as_me:18514: result: $cf_result" >&5
1851718514 echo "${ECHO_T}$cf_result" >&6
1851818515
1851918516 if test "$cf_result" = no ; then
1852018517 case $host_os in #(vi
1852118518 freebsd*) #(vi
18522 echo "$as_me:18523: checking for tgoto in -lmytinfo" >&5
18519 echo "$as_me:18520: checking for tgoto in -lmytinfo" >&5
1852318520 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
1852418521 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
1852518522 echo $ECHO_N "(cached) $ECHO_C" >&6
1852718524 ac_check_lib_save_LIBS=$LIBS
1852818525 LIBS="-lmytinfo $LIBS"
1852918526 cat >conftest.$ac_ext <<_ACEOF
18530 #line 18531 "configure"
18527 #line 18528 "configure"
1853118528 #include "confdefs.h"
1853218529
1853318530 /* Override any gcc2 internal prototype to avoid an error. */
1854618543 }
1854718544 _ACEOF
1854818545 rm -f conftest.$ac_objext conftest$ac_exeext
18549 if { (eval echo "$as_me:18550: \"$ac_link\"") >&5
18546 if { (eval echo "$as_me:18547: \"$ac_link\"") >&5
1855018547 (eval $ac_link) 2>&5
1855118548 ac_status=$?
18552 echo "$as_me:18553: \$? = $ac_status" >&5
18549 echo "$as_me:18550: \$? = $ac_status" >&5
1855318550 (exit $ac_status); } &&
1855418551 { ac_try='test -s conftest$ac_exeext'
18555 { (eval echo "$as_me:18556: \"$ac_try\"") >&5
18552 { (eval echo "$as_me:18553: \"$ac_try\"") >&5
1855618553 (eval $ac_try) 2>&5
1855718554 ac_status=$?
18558 echo "$as_me:18559: \$? = $ac_status" >&5
18555 echo "$as_me:18556: \$? = $ac_status" >&5
1855918556 (exit $ac_status); }; }; then
1856018557 ac_cv_lib_mytinfo_tgoto=yes
1856118558 else
1856618563 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1856718564 LIBS=$ac_check_lib_save_LIBS
1856818565 fi
18569 echo "$as_me:18570: result: $ac_cv_lib_mytinfo_tgoto" >&5
18566 echo "$as_me:18567: result: $ac_cv_lib_mytinfo_tgoto" >&5
1857018567 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
1857118568 if test $ac_cv_lib_mytinfo_tgoto = yes; then
1857218569 LIBS="-lmytinfo $LIBS"
1858018577 # term.h) for cur_colr
1858118578 if test "x$cf_cv_screen" = "xcurses_colr"
1858218579 then
18583 echo "$as_me:18584: checking for initscr in -lcur_colr" >&5
18580 echo "$as_me:18581: checking for initscr in -lcur_colr" >&5
1858418581 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6
1858518582 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then
1858618583 echo $ECHO_N "(cached) $ECHO_C" >&6
1858818585 ac_check_lib_save_LIBS=$LIBS
1858918586 LIBS="-lcur_colr $LIBS"
1859018587 cat >conftest.$ac_ext <<_ACEOF
18591 #line 18592 "configure"
18588 #line 18589 "configure"
1859218589 #include "confdefs.h"
1859318590
1859418591 /* Override any gcc2 internal prototype to avoid an error. */
1860718604 }
1860818605 _ACEOF
1860918606 rm -f conftest.$ac_objext conftest$ac_exeext
18610 if { (eval echo "$as_me:18611: \"$ac_link\"") >&5
18607 if { (eval echo "$as_me:18608: \"$ac_link\"") >&5
1861118608 (eval $ac_link) 2>&5
1861218609 ac_status=$?
18613 echo "$as_me:18614: \$? = $ac_status" >&5
18610 echo "$as_me:18611: \$? = $ac_status" >&5
1861418611 (exit $ac_status); } &&
1861518612 { ac_try='test -s conftest$ac_exeext'
18616 { (eval echo "$as_me:18617: \"$ac_try\"") >&5
18613 { (eval echo "$as_me:18614: \"$ac_try\"") >&5
1861718614 (eval $ac_try) 2>&5
1861818615 ac_status=$?
18619 echo "$as_me:18620: \$? = $ac_status" >&5
18616 echo "$as_me:18617: \$? = $ac_status" >&5
1862018617 (exit $ac_status); }; }; then
1862118618 ac_cv_lib_cur_colr_initscr=yes
1862218619 else
1862718624 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1862818625 LIBS=$ac_check_lib_save_LIBS
1862918626 fi
18630 echo "$as_me:18631: result: $ac_cv_lib_cur_colr_initscr" >&5
18627 echo "$as_me:18628: result: $ac_cv_lib_cur_colr_initscr" >&5
1863118628 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6
1863218629 if test $ac_cv_lib_cur_colr_initscr = yes; then
1863318630
1863618633
1863718634 else
1863818635
18639 echo "$as_me:18640: checking for initscr in -lHcurses" >&5
18636 echo "$as_me:18637: checking for initscr in -lHcurses" >&5
1864018637 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6
1864118638 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then
1864218639 echo $ECHO_N "(cached) $ECHO_C" >&6
1864418641 ac_check_lib_save_LIBS=$LIBS
1864518642 LIBS="-lHcurses $LIBS"
1864618643 cat >conftest.$ac_ext <<_ACEOF
18647 #line 18648 "configure"
18644 #line 18645 "configure"
1864818645 #include "confdefs.h"
1864918646
1865018647 /* Override any gcc2 internal prototype to avoid an error. */
1866318660 }
1866418661 _ACEOF
1866518662 rm -f conftest.$ac_objext conftest$ac_exeext
18666 if { (eval echo "$as_me:18667: \"$ac_link\"") >&5
18663 if { (eval echo "$as_me:18664: \"$ac_link\"") >&5
1866718664 (eval $ac_link) 2>&5
1866818665 ac_status=$?
18669 echo "$as_me:18670: \$? = $ac_status" >&5
18666 echo "$as_me:18667: \$? = $ac_status" >&5
1867018667 (exit $ac_status); } &&
1867118668 { ac_try='test -s conftest$ac_exeext'
18672 { (eval echo "$as_me:18673: \"$ac_try\"") >&5
18669 { (eval echo "$as_me:18670: \"$ac_try\"") >&5
1867318670 (eval $ac_try) 2>&5
1867418671 ac_status=$?
18675 echo "$as_me:18676: \$? = $ac_status" >&5
18672 echo "$as_me:18673: \$? = $ac_status" >&5
1867618673 (exit $ac_status); }; }; then
1867718674 ac_cv_lib_Hcurses_initscr=yes
1867818675 else
1868318680 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1868418681 LIBS=$ac_check_lib_save_LIBS
1868518682 fi
18686 echo "$as_me:18687: result: $ac_cv_lib_Hcurses_initscr" >&5
18683 echo "$as_me:18684: result: $ac_cv_lib_Hcurses_initscr" >&5
1868718684 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6
1868818685 if test $ac_cv_lib_Hcurses_initscr = yes; then
1868918686
1872318720 if test "$cf_have_libdir" = no ; then
1872418721 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1872518722
18726 echo "${as_me:-configure}:18727: testing adding $cf_add_libdir to library-path ..." 1>&5
18723 echo "${as_me:-configure}:18724: testing adding $cf_add_libdir to library-path ..." 1>&5
1872718724
1872818725 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1872918726 fi
1875218749 if test "$cf_have_libdir" = no ; then
1875318750 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1875418751
18755 echo "${as_me:-configure}:18756: testing adding $cf_add_libdir to library-path ..." 1>&5
18752 echo "${as_me:-configure}:18753: testing adding $cf_add_libdir to library-path ..." 1>&5
1875618753
1875718754 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1875818755 fi
1878318780 if test "$cf_have_libdir" = no ; then
1878418781 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1878518782
18786 echo "${as_me:-configure}:18787: testing adding $cf_add_libdir to library-path ..." 1>&5
18783 echo "${as_me:-configure}:18784: testing adding $cf_add_libdir to library-path ..." 1>&5
1878718784
1878818785 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1878918786 fi
1881818815 if test "$cf_have_libdir" = no ; then
1881918816 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
1882018817
18821 echo "${as_me:-configure}:18822: testing adding $cf_add_libdir to library-path ..." 1>&5
18818 echo "${as_me:-configure}:18819: testing adding $cf_add_libdir to library-path ..." 1>&5
1882218819
1882318820 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
1882418821 fi
1884718844 # because it may be needed to link the test-case for initscr.
1884818845 if test "x$cf_term_lib" = x
1884918846 then
18850 echo "$as_me:18851: checking for tgoto" >&5
18847 echo "$as_me:18848: checking for tgoto" >&5
1885118848 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6
1885218849 if test "${ac_cv_func_tgoto+set}" = set; then
1885318850 echo $ECHO_N "(cached) $ECHO_C" >&6
1885418851 else
1885518852 cat >conftest.$ac_ext <<_ACEOF
18856 #line 18857 "configure"
18853 #line 18854 "configure"
1885718854 #include "confdefs.h"
1885818855 /* System header to define __stub macros and hopefully few prototypes,
1885918856 which can conflict with char tgoto (); below. */
1888418881 }
1888518882 _ACEOF
1888618883 rm -f conftest.$ac_objext conftest$ac_exeext
18887 if { (eval echo "$as_me:18888: \"$ac_link\"") >&5
18884 if { (eval echo "$as_me:18885: \"$ac_link\"") >&5
1888818885 (eval $ac_link) 2>&5
1888918886 ac_status=$?
18890 echo "$as_me:18891: \$? = $ac_status" >&5
18887 echo "$as_me:18888: \$? = $ac_status" >&5
1889118888 (exit $ac_status); } &&
1889218889 { ac_try='test -s conftest$ac_exeext'
18893 { (eval echo "$as_me:18894: \"$ac_try\"") >&5
18890 { (eval echo "$as_me:18891: \"$ac_try\"") >&5
1889418891 (eval $ac_try) 2>&5
1889518892 ac_status=$?
18896 echo "$as_me:18897: \$? = $ac_status" >&5
18893 echo "$as_me:18894: \$? = $ac_status" >&5
1889718894 (exit $ac_status); }; }; then
1889818895 ac_cv_func_tgoto=yes
1889918896 else
1890318900 fi
1890418901 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1890518902 fi
18906 echo "$as_me:18907: result: $ac_cv_func_tgoto" >&5
18903 echo "$as_me:18904: result: $ac_cv_func_tgoto" >&5
1890718904 echo "${ECHO_T}$ac_cv_func_tgoto" >&6
1890818905 if test $ac_cv_func_tgoto = yes; then
1890918906 cf_term_lib=predefined
1891218909 for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown
1891318910 do
1891418911 as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh`
18915 echo "$as_me:18916: checking for tgoto in -l$cf_term_lib" >&5
18912 echo "$as_me:18913: checking for tgoto in -l$cf_term_lib" >&5
1891618913 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6
1891718914 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
1891818915 echo $ECHO_N "(cached) $ECHO_C" >&6
1892018917 ac_check_lib_save_LIBS=$LIBS
1892118918 LIBS="-l$cf_term_lib $LIBS"
1892218919 cat >conftest.$ac_ext <<_ACEOF
18923 #line 18924 "configure"
18920 #line 18921 "configure"
1892418921 #include "confdefs.h"
1892518922
1892618923 /* Override any gcc2 internal prototype to avoid an error. */
1893918936 }
1894018937 _ACEOF
1894118938 rm -f conftest.$ac_objext conftest$ac_exeext
18942 if { (eval echo "$as_me:18943: \"$ac_link\"") >&5
18939 if { (eval echo "$as_me:18940: \"$ac_link\"") >&5
1894318940 (eval $ac_link) 2>&5
1894418941 ac_status=$?
18945 echo "$as_me:18946: \$? = $ac_status" >&5
18942 echo "$as_me:18943: \$? = $ac_status" >&5
1894618943 (exit $ac_status); } &&
1894718944 { ac_try='test -s conftest$ac_exeext'
18948 { (eval echo "$as_me:18949: \"$ac_try\"") >&5
18945 { (eval echo "$as_me:18946: \"$ac_try\"") >&5
1894918946 (eval $ac_try) 2>&5
1895018947 ac_status=$?
18951 echo "$as_me:18952: \$? = $ac_status" >&5
18948 echo "$as_me:18949: \$? = $ac_status" >&5
1895218949 (exit $ac_status); }; }; then
1895318950 eval "$as_ac_Lib=yes"
1895418951 else
1895918956 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1896018957 LIBS=$ac_check_lib_save_LIBS
1896118958 fi
18962 echo "$as_me:18963: result: `eval echo '${'$as_ac_Lib'}'`" >&5
18959 echo "$as_me:18960: result: `eval echo '${'$as_ac_Lib'}'`" >&5
1896318960 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
1896418961 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
1896518962 break
1897818975 for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown
1897918976 do
1898018977 as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh`
18981 echo "$as_me:18982: checking for initscr in -l$cf_curs_lib" >&5
18978 echo "$as_me:18979: checking for initscr in -l$cf_curs_lib" >&5
1898218979 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6
1898318980 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
1898418981 echo $ECHO_N "(cached) $ECHO_C" >&6
1898618983 ac_check_lib_save_LIBS=$LIBS
1898718984 LIBS="-l$cf_curs_lib $LIBS"
1898818985 cat >conftest.$ac_ext <<_ACEOF
18989 #line 18990 "configure"
18986 #line 18987 "configure"
1899018987 #include "confdefs.h"
1899118988
1899218989 /* Override any gcc2 internal prototype to avoid an error. */
1900519002 }
1900619003 _ACEOF
1900719004 rm -f conftest.$ac_objext conftest$ac_exeext
19008 if { (eval echo "$as_me:19009: \"$ac_link\"") >&5
19005 if { (eval echo "$as_me:19006: \"$ac_link\"") >&5
1900919006 (eval $ac_link) 2>&5
1901019007 ac_status=$?
19011 echo "$as_me:19012: \$? = $ac_status" >&5
19008 echo "$as_me:19009: \$? = $ac_status" >&5
1901219009 (exit $ac_status); } &&
1901319010 { ac_try='test -s conftest$ac_exeext'
19014 { (eval echo "$as_me:19015: \"$ac_try\"") >&5
19011 { (eval echo "$as_me:19012: \"$ac_try\"") >&5
1901519012 (eval $ac_try) 2>&5
1901619013 ac_status=$?
19017 echo "$as_me:19018: \$? = $ac_status" >&5
19014 echo "$as_me:19015: \$? = $ac_status" >&5
1901819015 (exit $ac_status); }; }; then
1901919016 eval "$as_ac_Lib=yes"
1902019017 else
1902519022 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1902619023 LIBS=$ac_check_lib_save_LIBS
1902719024 fi
19028 echo "$as_me:19029: result: `eval echo '${'$as_ac_Lib'}'`" >&5
19025 echo "$as_me:19026: result: `eval echo '${'$as_ac_Lib'}'`" >&5
1902919026 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
1903019027 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
1903119028 break
1903319030
1903419031 done
1903519032 fi
19036 test $cf_curs_lib = unknown && { { echo "$as_me:19037: error: no curses library found" >&5
19033 test $cf_curs_lib = unknown && { { echo "$as_me:19034: error: no curses library found" >&5
1903719034 echo "$as_me: error: no curses library found" >&2;}
1903819035 { (exit 1); exit 1; }; }
1903919036
1904019037 LIBS="-l$cf_curs_lib $cf_save_LIBS"
1904119038 if test "$cf_term_lib" = unknown ; then
19042 echo "$as_me:19043: checking if we can link with $cf_curs_lib library" >&5
19039 echo "$as_me:19040: checking if we can link with $cf_curs_lib library" >&5
1904319040 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6
1904419041 cat >conftest.$ac_ext <<_ACEOF
19045 #line 19046 "configure"
19042 #line 19043 "configure"
1904619043 #include "confdefs.h"
1904719044 #include <${cf_cv_ncurses_header:-curses.h}>
1904819045 int
1905419051 }
1905519052 _ACEOF
1905619053 rm -f conftest.$ac_objext conftest$ac_exeext
19057 if { (eval echo "$as_me:19058: \"$ac_link\"") >&5
19054 if { (eval echo "$as_me:19055: \"$ac_link\"") >&5
1905819055 (eval $ac_link) 2>&5
1905919056 ac_status=$?
19060 echo "$as_me:19061: \$? = $ac_status" >&5
19057 echo "$as_me:19058: \$? = $ac_status" >&5
1906119058 (exit $ac_status); } &&
1906219059 { ac_try='test -s conftest$ac_exeext'
19063 { (eval echo "$as_me:19064: \"$ac_try\"") >&5
19060 { (eval echo "$as_me:19061: \"$ac_try\"") >&5
1906419061 (eval $ac_try) 2>&5
1906519062 ac_status=$?
19066 echo "$as_me:19067: \$? = $ac_status" >&5
19063 echo "$as_me:19064: \$? = $ac_status" >&5
1906719064 (exit $ac_status); }; }; then
1906819065 cf_result=yes
1906919066 else
1907219069 cf_result=no
1907319070 fi
1907419071 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
19075 echo "$as_me:19076: result: $cf_result" >&5
19072 echo "$as_me:19073: result: $cf_result" >&5
1907619073 echo "${ECHO_T}$cf_result" >&6
19077 test $cf_result = no && { { echo "$as_me:19078: error: Cannot link curses library" >&5
19074 test $cf_result = no && { { echo "$as_me:19075: error: Cannot link curses library" >&5
1907819075 echo "$as_me: error: Cannot link curses library" >&2;}
1907919076 { (exit 1); exit 1; }; }
1908019077 elif test "$cf_curs_lib" = "$cf_term_lib" ; then
1908119078 :
1908219079 elif test "$cf_term_lib" != predefined ; then
19083 echo "$as_me:19084: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
19080 echo "$as_me:19081: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
1908419081 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6
1908519082 cat >conftest.$ac_ext <<_ACEOF
19086 #line 19087 "configure"
19083 #line 19084 "configure"
1908719084 #include "confdefs.h"
1908819085 #include <${cf_cv_ncurses_header:-curses.h}>
1908919086 int
1909519092 }
1909619093 _ACEOF
1909719094 rm -f conftest.$ac_objext conftest$ac_exeext
19098 if { (eval echo "$as_me:19099: \"$ac_link\"") >&5
19095 if { (eval echo "$as_me:19096: \"$ac_link\"") >&5
1909919096 (eval $ac_link) 2>&5
1910019097 ac_status=$?
19101 echo "$as_me:19102: \$? = $ac_status" >&5
19098 echo "$as_me:19099: \$? = $ac_status" >&5
1910219099 (exit $ac_status); } &&
1910319100 { ac_try='test -s conftest$ac_exeext'
19104 { (eval echo "$as_me:19105: \"$ac_try\"") >&5
19101 { (eval echo "$as_me:19102: \"$ac_try\"") >&5
1910519102 (eval $ac_try) 2>&5
1910619103 ac_status=$?
19107 echo "$as_me:19108: \$? = $ac_status" >&5
19104 echo "$as_me:19105: \$? = $ac_status" >&5
1910819105 (exit $ac_status); }; }; then
1910919106 cf_result=no
1911019107 else
1911319110
1911419111 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS"
1911519112 cat >conftest.$ac_ext <<_ACEOF
19116 #line 19117 "configure"
19113 #line 19114 "configure"
1911719114 #include "confdefs.h"
1911819115 #include <${cf_cv_ncurses_header:-curses.h}>
1911919116 int
1912519122 }
1912619123 _ACEOF
1912719124 rm -f conftest.$ac_objext conftest$ac_exeext
19128 if { (eval echo "$as_me:19129: \"$ac_link\"") >&5
19125 if { (eval echo "$as_me:19126: \"$ac_link\"") >&5
1912919126 (eval $ac_link) 2>&5
1913019127 ac_status=$?
19131 echo "$as_me:19132: \$? = $ac_status" >&5
19128 echo "$as_me:19129: \$? = $ac_status" >&5
1913219129 (exit $ac_status); } &&
1913319130 { ac_try='test -s conftest$ac_exeext'
19134 { (eval echo "$as_me:19135: \"$ac_try\"") >&5
19131 { (eval echo "$as_me:19132: \"$ac_try\"") >&5
1913519132 (eval $ac_try) 2>&5
1913619133 ac_status=$?
19137 echo "$as_me:19138: \$? = $ac_status" >&5
19134 echo "$as_me:19135: \$? = $ac_status" >&5
1913819135 (exit $ac_status); }; }; then
1913919136 cf_result=yes
1914019137 else
1914619143
1914719144 fi
1914819145 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
19149 echo "$as_me:19150: result: $cf_result" >&5
19146 echo "$as_me:19147: result: $cf_result" >&5
1915019147 echo "${ECHO_T}$cf_result" >&6
1915119148 fi
1915219149 fi
1915319150 fi
1915419151
19155 echo "$as_me:19156: checking for curses performance tradeoff" >&5
19152 echo "$as_me:19153: checking for curses performance tradeoff" >&5
1915619153 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6
1915719154 if test "${cf_cv_curs_performance+set}" = set; then
1915819155 echo $ECHO_N "(cached) $ECHO_C" >&6
1916019157
1916119158 cf_cv_curs_performance=no
1916219159 cat >conftest.$ac_ext <<_ACEOF
19163 #line 19164 "configure"
19160 #line 19161 "configure"
1916419161 #include "confdefs.h"
1916519162
1916619163 #include <${cf_cv_ncurses_header:-curses.h}>
1917919176 }
1918019177 _ACEOF
1918119178 rm -f conftest.$ac_objext
19182 if { (eval echo "$as_me:19183: \"$ac_compile\"") >&5
19179 if { (eval echo "$as_me:19180: \"$ac_compile\"") >&5
1918319180 (eval $ac_compile) 2>&5
1918419181 ac_status=$?
19185 echo "$as_me:19186: \$? = $ac_status" >&5
19182 echo "$as_me:19183: \$? = $ac_status" >&5
1918619183 (exit $ac_status); } &&
1918719184 { ac_try='test -s conftest.$ac_objext'
19188 { (eval echo "$as_me:19189: \"$ac_try\"") >&5
19185 { (eval echo "$as_me:19186: \"$ac_try\"") >&5
1918919186 (eval $ac_try) 2>&5
1919019187 ac_status=$?
19191 echo "$as_me:19192: \$? = $ac_status" >&5
19188 echo "$as_me:19189: \$? = $ac_status" >&5
1919219189 (exit $ac_status); }; }; then
1919319190
1919419191 cat >conftest.$ac_ext <<_ACEOF
19195 #line 19196 "configure"
19192 #line 19193 "configure"
1919619193 #include "confdefs.h"
1919719194
1919819195 #define CURS_PERFORMANCE
1921219209 }
1921319210 _ACEOF
1921419211 rm -f conftest.$ac_objext
19215 if { (eval echo "$as_me:19216: \"$ac_compile\"") >&5
19212 if { (eval echo "$as_me:19213: \"$ac_compile\"") >&5
1921619213 (eval $ac_compile) 2>&5
1921719214 ac_status=$?
19218 echo "$as_me:19219: \$? = $ac_status" >&5
19215 echo "$as_me:19216: \$? = $ac_status" >&5
1921919216 (exit $ac_status); } &&
1922019217 { ac_try='test -s conftest.$ac_objext'
19221 { (eval echo "$as_me:19222: \"$ac_try\"") >&5
19218 { (eval echo "$as_me:19219: \"$ac_try\"") >&5
1922219219 (eval $ac_try) 2>&5
1922319220 ac_status=$?
19224 echo "$as_me:19225: \$? = $ac_status" >&5
19221 echo "$as_me:19222: \$? = $ac_status" >&5
1922519222 (exit $ac_status); }; }; then
1922619223 cf_cv_curs_performance=yes
1922719224 else
1923619233 rm -f conftest.$ac_objext conftest.$ac_ext
1923719234 fi
1923819235
19239 echo "$as_me:19240: result: $cf_cv_curs_performance" >&5
19236 echo "$as_me:19237: result: $cf_cv_curs_performance" >&5
1924019237 echo "${ECHO_T}$cf_cv_curs_performance" >&6
1924119238 test $cf_cv_curs_performance = yes &&
1924219239 cat >>confdefs.h <<\EOF
1924319240 #define CURS_PERFORMANCE 1
1924419241 EOF
1924519242
19246 echo "$as_me:19247: checking for curses touchline function" >&5
19243 echo "$as_me:19244: checking for curses touchline function" >&5
1924719244 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6
1924819245 if test "${cf_cv_curs_touchline+set}" = set; then
1924919246 echo $ECHO_N "(cached) $ECHO_C" >&6
1925019247 else
1925119248
1925219249 cat >conftest.$ac_ext <<_ACEOF
19253 #line 19254 "configure"
19250 #line 19251 "configure"
1925419251 #include "confdefs.h"
1925519252
1925619253 #include <${cf_cv_ncurses_header:-curses.h}>
1926319260 }
1926419261 _ACEOF
1926519262 rm -f conftest.$ac_objext conftest$ac_exeext
19266 if { (eval echo "$as_me:19267: \"$ac_link\"") >&5
19263 if { (eval echo "$as_me:19264: \"$ac_link\"") >&5
1926719264 (eval $ac_link) 2>&5
1926819265 ac_status=$?
19269 echo "$as_me:19270: \$? = $ac_status" >&5
19266 echo "$as_me:19267: \$? = $ac_status" >&5
1927019267 (exit $ac_status); } &&
1927119268 { ac_try='test -s conftest$ac_exeext'
19272 { (eval echo "$as_me:19273: \"$ac_try\"") >&5
19269 { (eval echo "$as_me:19270: \"$ac_try\"") >&5
1927319270 (eval $ac_try) 2>&5
1927419271 ac_status=$?
19275 echo "$as_me:19276: \$? = $ac_status" >&5
19272 echo "$as_me:19273: \$? = $ac_status" >&5
1927619273 (exit $ac_status); }; }; then
1927719274 cf_cv_curs_touchline=bsd
1927819275 else
1927919276 echo "$as_me: failed program was:" >&5
1928019277 cat conftest.$ac_ext >&5
1928119278 cat >conftest.$ac_ext <<_ACEOF
19282 #line 19283 "configure"
19279 #line 19280 "configure"
1928319280 #include "confdefs.h"
1928419281
1928519282 #include <${cf_cv_ncurses_header:-curses.h}>
1929219289 }
1929319290 _ACEOF
1929419291 rm -f conftest.$ac_objext conftest$ac_exeext
19295 if { (eval echo "$as_me:19296: \"$ac_link\"") >&5
19292 if { (eval echo "$as_me:19293: \"$ac_link\"") >&5
1929619293 (eval $ac_link) 2>&5
1929719294 ac_status=$?
19298 echo "$as_me:19299: \$? = $ac_status" >&5
19295 echo "$as_me:19296: \$? = $ac_status" >&5
1929919296 (exit $ac_status); } &&
1930019297 { ac_try='test -s conftest$ac_exeext'
19301 { (eval echo "$as_me:19302: \"$ac_try\"") >&5
19298 { (eval echo "$as_me:19299: \"$ac_try\"") >&5
1930219299 (eval $ac_try) 2>&5
1930319300 ac_status=$?
19304 echo "$as_me:19305: \$? = $ac_status" >&5
19301 echo "$as_me:19302: \$? = $ac_status" >&5
1930519302 (exit $ac_status); }; }; then
1930619303 cf_cv_curs_touchline=sysv
1930719304 else
1931319310 fi
1931419311 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
1931519312 fi
19316 echo "$as_me:19317: result: $cf_cv_curs_touchline" >&5
19313 echo "$as_me:19314: result: $cf_cv_curs_touchline" >&5
1931719314 echo "${ECHO_T}$cf_cv_curs_touchline" >&6
1931819315 case "$cf_cv_curs_touchline" in #(vi
1931919316 bsd) #(vi
1934419341 do
1934519342 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
1934619343 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
19347 echo "$as_me:19348: checking for $ac_word" >&5
19344 echo "$as_me:19345: checking for $ac_word" >&5
1934819345 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1934919346 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
1935019347 echo $ECHO_N "(cached) $ECHO_C" >&6
1935919356 test -z "$ac_dir" && ac_dir=.
1936019357 $as_executable_p "$ac_dir/$ac_word" || continue
1936119358 ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
19362 echo "$as_me:19363: found $ac_dir/$ac_word" >&5
19359 echo "$as_me:19360: found $ac_dir/$ac_word" >&5
1936319360 break
1936419361 done
1936519362
1936719364 fi
1936819365 NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
1936919366 if test -n "$NCURSES_CONFIG"; then
19370 echo "$as_me:19371: result: $NCURSES_CONFIG" >&5
19367 echo "$as_me:19368: result: $NCURSES_CONFIG" >&5
1937119368 echo "${ECHO_T}$NCURSES_CONFIG" >&6
1937219369 else
19373 echo "$as_me:19374: result: no" >&5
19370 echo "$as_me:19371: result: no" >&5
1937419371 echo "${ECHO_T}no" >&6
1937519372 fi
1937619373
1938319380 do
1938419381 # Extract the first word of "$ac_prog", so it can be a program name with args.
1938519382 set dummy $ac_prog; ac_word=$2
19386 echo "$as_me:19387: checking for $ac_word" >&5
19383 echo "$as_me:19384: checking for $ac_word" >&5
1938719384 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1938819385 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then
1938919386 echo $ECHO_N "(cached) $ECHO_C" >&6
1939819395 test -z "$ac_dir" && ac_dir=.
1939919396 $as_executable_p "$ac_dir/$ac_word" || continue
1940019397 ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
19401 echo "$as_me:19402: found $ac_dir/$ac_word" >&5
19398 echo "$as_me:19399: found $ac_dir/$ac_word" >&5
1940219399 break
1940319400 done
1940419401
1940619403 fi
1940719404 ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
1940819405 if test -n "$ac_ct_NCURSES_CONFIG"; then
19409 echo "$as_me:19410: result: $ac_ct_NCURSES_CONFIG" >&5
19406 echo "$as_me:19407: result: $ac_ct_NCURSES_CONFIG" >&5
1941019407 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
1941119408 else
19412 echo "$as_me:19413: result: no" >&5
19409 echo "$as_me:19410: result: no" >&5
1941319410 echo "${ECHO_T}no" >&6
1941419411 fi
1941519412
1942719424
1942819425 # even with config script, some packages use no-override for curses.h
1942919426
19430 echo "$as_me:19431: checking if we have identified curses headers" >&5
19427 echo "$as_me:19428: checking if we have identified curses headers" >&5
1943119428 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
1943219429 if test "${cf_cv_ncurses_header+set}" = set; then
1943319430 echo $ECHO_N "(cached) $ECHO_C" >&6
1944119438 curses.h
1944219439 do
1944319440 cat >conftest.$ac_ext <<_ACEOF
19444 #line 19445 "configure"
19441 #line 19442 "configure"
1944519442 #include "confdefs.h"
1944619443 #include <${cf_header}>
1944719444 int
1945319450 }
1945419451 _ACEOF
1945519452 rm -f conftest.$ac_objext
19456 if { (eval echo "$as_me:19457: \"$ac_compile\"") >&5
19453 if { (eval echo "$as_me:19454: \"$ac_compile\"") >&5
1945719454 (eval $ac_compile) 2>&5
1945819455 ac_status=$?
19459 echo "$as_me:19460: \$? = $ac_status" >&5
19456 echo "$as_me:19457: \$? = $ac_status" >&5
1946019457 (exit $ac_status); } &&
1946119458 { ac_try='test -s conftest.$ac_objext'
19462 { (eval echo "$as_me:19463: \"$ac_try\"") >&5
19459 { (eval echo "$as_me:19460: \"$ac_try\"") >&5
1946319460 (eval $ac_try) 2>&5
1946419461 ac_status=$?
19465 echo "$as_me:19466: \$? = $ac_status" >&5
19462 echo "$as_me:19463: \$? = $ac_status" >&5
1946619463 (exit $ac_status); }; }; then
1946719464 cf_cv_ncurses_header=$cf_header; break
1946819465 else
1947319470 done
1947419471
1947519472 fi
19476 echo "$as_me:19477: result: $cf_cv_ncurses_header" >&5
19473 echo "$as_me:19474: result: $cf_cv_ncurses_header" >&5
1947719474 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
1947819475
1947919476 if test "$cf_cv_ncurses_header" = none ; then
19480 { { echo "$as_me:19481: error: No curses header-files found" >&5
19477 { { echo "$as_me:19478: error: No curses header-files found" >&5
1948119478 echo "$as_me: error: No curses header-files found" >&2;}
1948219479 { (exit 1); exit 1; }; }
1948319480 fi
1948719484 for ac_header in $cf_cv_ncurses_header
1948819485 do
1948919486 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
19490 echo "$as_me:19491: checking for $ac_header" >&5
19487 echo "$as_me:19488: checking for $ac_header" >&5
1949119488 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
1949219489 if eval "test \"\${$as_ac_Header+set}\" = set"; then
1949319490 echo $ECHO_N "(cached) $ECHO_C" >&6
1949419491 else
1949519492 cat >conftest.$ac_ext <<_ACEOF
19496 #line 19497 "configure"
19493 #line 19494 "configure"
1949719494 #include "confdefs.h"
1949819495 #include <$ac_header>
1949919496 _ACEOF
19500 if { (eval echo "$as_me:19501: \"$ac_cpp conftest.$ac_ext\"") >&5
19497 if { (eval echo "$as_me:19498: \"$ac_cpp conftest.$ac_ext\"") >&5
1950119498 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1950219499 ac_status=$?
1950319500 egrep -v '^ *\+' conftest.er1 >conftest.err
1950419501 rm -f conftest.er1
1950519502 cat conftest.err >&5
19506 echo "$as_me:19507: \$? = $ac_status" >&5
19503 echo "$as_me:19504: \$? = $ac_status" >&5
1950719504 (exit $ac_status); } >/dev/null; then
1950819505 if test -s conftest.err; then
1950919506 ac_cpp_err=$ac_c_preproc_warn_flag
1952219519 fi
1952319520 rm -f conftest.err conftest.$ac_ext
1952419521 fi
19525 echo "$as_me:19526: result: `eval echo '${'$as_ac_Header'}'`" >&5
19522 echo "$as_me:19523: result: `eval echo '${'$as_ac_Header'}'`" >&5
1952619523 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
1952719524 if test `eval echo '${'$as_ac_Header'}'` = yes; then
1952819525 cat >>confdefs.h <<EOF
1957519572 cf_save_CPPFLAGS=$CPPFLAGS
1957619573 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1957719574 cat >conftest.$ac_ext <<_ACEOF
19578 #line 19579 "configure"
19575 #line 19576 "configure"
1957919576 #include "confdefs.h"
1958019577 #include <stdio.h>
1958119578 int
1958719584 }
1958819585 _ACEOF
1958919586 rm -f conftest.$ac_objext
19590 if { (eval echo "$as_me:19591: \"$ac_compile\"") >&5
19587 if { (eval echo "$as_me:19588: \"$ac_compile\"") >&5
1959119588 (eval $ac_compile) 2>&5
1959219589 ac_status=$?
19593 echo "$as_me:19594: \$? = $ac_status" >&5
19590 echo "$as_me:19591: \$? = $ac_status" >&5
1959419591 (exit $ac_status); } &&
1959519592 { ac_try='test -s conftest.$ac_objext'
19596 { (eval echo "$as_me:19597: \"$ac_try\"") >&5
19593 { (eval echo "$as_me:19594: \"$ac_try\"") >&5
1959719594 (eval $ac_try) 2>&5
1959819595 ac_status=$?
19599 echo "$as_me:19600: \$? = $ac_status" >&5
19596 echo "$as_me:19597: \$? = $ac_status" >&5
1960019597 (exit $ac_status); }; }; then
1960119598 :
1960219599 else
1961319610 if test "$cf_have_incdir" = no ; then
1961419611 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1961519612
19616 echo "${as_me:-configure}:19617: testing adding $cf_add_incdir to include-path ..." 1>&5
19613 echo "${as_me:-configure}:19614: testing adding $cf_add_incdir to include-path ..." 1>&5
1961719614
1961819615 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1961919616
1963019627
1963119628 }
1963219629
19633 echo "$as_me:19634: checking for $cf_ncuhdr_root header in include-path" >&5
19630 echo "$as_me:19631: checking for $cf_ncuhdr_root header in include-path" >&5
1963419631 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
1963519632 if test "${cf_cv_ncurses_h+set}" = set; then
1963619633 echo $ECHO_N "(cached) $ECHO_C" >&6
1964219639 do
1964319640
1964419641 cat >conftest.$ac_ext <<_ACEOF
19645 #line 19646 "configure"
19642 #line 19643 "configure"
1964619643 #include "confdefs.h"
1964719644
1964819645 #include <$cf_header>
1966619663 }
1966719664 _ACEOF
1966819665 rm -f conftest.$ac_objext
19669 if { (eval echo "$as_me:19670: \"$ac_compile\"") >&5
19666 if { (eval echo "$as_me:19667: \"$ac_compile\"") >&5
1967019667 (eval $ac_compile) 2>&5
1967119668 ac_status=$?
19672 echo "$as_me:19673: \$? = $ac_status" >&5
19669 echo "$as_me:19670: \$? = $ac_status" >&5
1967319670 (exit $ac_status); } &&
1967419671 { ac_try='test -s conftest.$ac_objext'
19675 { (eval echo "$as_me:19676: \"$ac_try\"") >&5
19672 { (eval echo "$as_me:19673: \"$ac_try\"") >&5
1967619673 (eval $ac_try) 2>&5
1967719674 ac_status=$?
19678 echo "$as_me:19679: \$? = $ac_status" >&5
19675 echo "$as_me:19676: \$? = $ac_status" >&5
1967919676 (exit $ac_status); }; }; then
1968019677 cf_cv_ncurses_h=$cf_header
1968119678
1969019687 done
1969119688
1969219689 fi
19693 echo "$as_me:19694: result: $cf_cv_ncurses_h" >&5
19690 echo "$as_me:19691: result: $cf_cv_ncurses_h" >&5
1969419691 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
1969519692
1969619693 if test "$cf_cv_ncurses_h" != no ; then
1969719694 cf_cv_ncurses_header=$cf_cv_ncurses_h
1969819695 else
1969919696
19700 echo "$as_me:19701: checking for $cf_ncuhdr_root include-path" >&5
19697 echo "$as_me:19698: checking for $cf_ncuhdr_root include-path" >&5
1970119698 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
1970219699 if test "${cf_cv_ncurses_h2+set}" = set; then
1970319700 echo $ECHO_N "(cached) $ECHO_C" >&6
1983719834 cf_save_CPPFLAGS=$CPPFLAGS
1983819835 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1983919836 cat >conftest.$ac_ext <<_ACEOF
19840 #line 19841 "configure"
19837 #line 19838 "configure"
1984119838 #include "confdefs.h"
1984219839 #include <stdio.h>
1984319840 int
1984919846 }
1985019847 _ACEOF
1985119848 rm -f conftest.$ac_objext
19852 if { (eval echo "$as_me:19853: \"$ac_compile\"") >&5
19849 if { (eval echo "$as_me:19850: \"$ac_compile\"") >&5
1985319850 (eval $ac_compile) 2>&5
1985419851 ac_status=$?
19855 echo "$as_me:19856: \$? = $ac_status" >&5
19852 echo "$as_me:19853: \$? = $ac_status" >&5
1985619853 (exit $ac_status); } &&
1985719854 { ac_try='test -s conftest.$ac_objext'
19858 { (eval echo "$as_me:19859: \"$ac_try\"") >&5
19855 { (eval echo "$as_me:19856: \"$ac_try\"") >&5
1985919856 (eval $ac_try) 2>&5
1986019857 ac_status=$?
19861 echo "$as_me:19862: \$? = $ac_status" >&5
19858 echo "$as_me:19859: \$? = $ac_status" >&5
1986219859 (exit $ac_status); }; }; then
1986319860 :
1986419861 else
1987519872 if test "$cf_have_incdir" = no ; then
1987619873 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
1987719874
19878 echo "${as_me:-configure}:19879: testing adding $cf_add_incdir to include-path ..." 1>&5
19875 echo "${as_me:-configure}:19876: testing adding $cf_add_incdir to include-path ..." 1>&5
1987919876
1988019877 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1988119878
1989619893 do
1989719894
1989819895 cat >conftest.$ac_ext <<_ACEOF
19899 #line 19900 "configure"
19896 #line 19897 "configure"
1990019897 #include "confdefs.h"
1990119898
1990219899 #include <$cf_header>
1992019917 }
1992119918 _ACEOF
1992219919 rm -f conftest.$ac_objext
19923 if { (eval echo "$as_me:19924: \"$ac_compile\"") >&5
19920 if { (eval echo "$as_me:19921: \"$ac_compile\"") >&5
1992419921 (eval $ac_compile) 2>&5
1992519922 ac_status=$?
19926 echo "$as_me:19927: \$? = $ac_status" >&5
19923 echo "$as_me:19924: \$? = $ac_status" >&5
1992719924 (exit $ac_status); } &&
1992819925 { ac_try='test -s conftest.$ac_objext'
19929 { (eval echo "$as_me:19930: \"$ac_try\"") >&5
19926 { (eval echo "$as_me:19927: \"$ac_try\"") >&5
1993019927 (eval $ac_try) 2>&5
1993119928 ac_status=$?
19932 echo "$as_me:19933: \$? = $ac_status" >&5
19929 echo "$as_me:19930: \$? = $ac_status" >&5
1993319930 (exit $ac_status); }; }; then
1993419931 cf_cv_ncurses_h2=$cf_header
1993519932
1995019947 CPPFLAGS="$cf_save2_CPPFLAGS"
1995119948 test "$cf_cv_ncurses_h2" != no && break
1995219949 done
19953 test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19954: error: not found" >&5
19950 test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19951: error: not found" >&5
1995419951 echo "$as_me: error: not found" >&2;}
1995519952 { (exit 1); exit 1; }; }
1995619953
1995719954 fi
19958 echo "$as_me:19959: result: $cf_cv_ncurses_h2" >&5
19955 echo "$as_me:19956: result: $cf_cv_ncurses_h2" >&5
1995919956 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
1996019957
1996119958 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
1998819985 cf_save_CPPFLAGS=$CPPFLAGS
1998919986 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
1999019987 cat >conftest.$ac_ext <<_ACEOF
19991 #line 19992 "configure"
19988 #line 19989 "configure"
1999219989 #include "confdefs.h"
1999319990 #include <stdio.h>
1999419991 int
2000019997 }
2000119998 _ACEOF
2000219999 rm -f conftest.$ac_objext
20003 if { (eval echo "$as_me:20004: \"$ac_compile\"") >&5
20000 if { (eval echo "$as_me:20001: \"$ac_compile\"") >&5
2000420001 (eval $ac_compile) 2>&5
2000520002 ac_status=$?
20006 echo "$as_me:20007: \$? = $ac_status" >&5
20003 echo "$as_me:20004: \$? = $ac_status" >&5
2000720004 (exit $ac_status); } &&
2000820005 { ac_try='test -s conftest.$ac_objext'
20009 { (eval echo "$as_me:20010: \"$ac_try\"") >&5
20006 { (eval echo "$as_me:20007: \"$ac_try\"") >&5
2001020007 (eval $ac_try) 2>&5
2001120008 ac_status=$?
20012 echo "$as_me:20013: \$? = $ac_status" >&5
20009 echo "$as_me:20010: \$? = $ac_status" >&5
2001320010 (exit $ac_status); }; }; then
2001420011 :
2001520012 else
2002620023 if test "$cf_have_incdir" = no ; then
2002720024 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
2002820025
20029 echo "${as_me:-configure}:20030: testing adding $cf_add_incdir to include-path ..." 1>&5
20026 echo "${as_me:-configure}:20027: testing adding $cf_add_incdir to include-path ..." 1>&5
2003020027
2003120028 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2003220029
2007220069 ;;
2007320070 esac
2007420071
20075 echo "$as_me:20076: checking for terminfo header" >&5
20072 echo "$as_me:20073: checking for terminfo header" >&5
2007620073 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
2007720074 if test "${cf_cv_term_header+set}" = set; then
2007820075 echo $ECHO_N "(cached) $ECHO_C" >&6
2009020087 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
2009120088 do
2009220089 cat >conftest.$ac_ext <<_ACEOF
20093 #line 20094 "configure"
20090 #line 20091 "configure"
2009420091 #include "confdefs.h"
2009520092 #include <stdio.h>
2009620093 #include <${cf_cv_ncurses_header:-curses.h}>
2010520102 }
2010620103 _ACEOF
2010720104 rm -f conftest.$ac_objext
20108 if { (eval echo "$as_me:20109: \"$ac_compile\"") >&5
20105 if { (eval echo "$as_me:20106: \"$ac_compile\"") >&5
2010920106 (eval $ac_compile) 2>&5
2011020107 ac_status=$?
20111 echo "$as_me:20112: \$? = $ac_status" >&5
20108 echo "$as_me:20109: \$? = $ac_status" >&5
2011220109 (exit $ac_status); } &&
2011320110 { ac_try='test -s conftest.$ac_objext'
20114 { (eval echo "$as_me:20115: \"$ac_try\"") >&5
20111 { (eval echo "$as_me:20112: \"$ac_try\"") >&5
2011520112 (eval $ac_try) 2>&5
2011620113 ac_status=$?
20117 echo "$as_me:20118: \$? = $ac_status" >&5
20114 echo "$as_me:20115: \$? = $ac_status" >&5
2011820115 (exit $ac_status); }; }; then
2011920116
2012020117 cf_cv_term_header="$cf_test"
2013020127 done
2013120128
2013220129 fi
20133 echo "$as_me:20134: result: $cf_cv_term_header" >&5
20130 echo "$as_me:20131: result: $cf_cv_term_header" >&5
2013420131 echo "${ECHO_T}$cf_cv_term_header" >&6
2013520132
2013620133 # Set definitions to allow ifdef'ing to accommodate subdirectories
2016820165 #define NCURSES 1
2016920166 EOF
2017020167
20171 echo "$as_me:20172: checking for ncurses version" >&5
20168 echo "$as_me:20169: checking for ncurses version" >&5
2017220169 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
2017320170 if test "${cf_cv_ncurses_version+set}" = set; then
2017420171 echo $ECHO_N "(cached) $ECHO_C" >&6
2019420191 #endif
2019520192 EOF
2019620193 cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
20197 { (eval echo "$as_me:20198: \"$cf_try\"") >&5
20194 { (eval echo "$as_me:20195: \"$cf_try\"") >&5
2019820195 (eval $cf_try) 2>&5
2019920196 ac_status=$?
20200 echo "$as_me:20201: \$? = $ac_status" >&5
20197 echo "$as_me:20198: \$? = $ac_status" >&5
2020120198 (exit $ac_status); }
2020220199 if test -f conftest.out ; then
2020320200 cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
2020720204
2020820205 else
2020920206 cat >conftest.$ac_ext <<_ACEOF
20210 #line 20211 "configure"
20207 #line 20208 "configure"
2021120208 #include "confdefs.h"
2021220209
2021320210 #include <${cf_cv_ncurses_header:-curses.h}>
2023220229 }
2023320230 _ACEOF
2023420231 rm -f conftest$ac_exeext
20235 if { (eval echo "$as_me:20236: \"$ac_link\"") >&5
20232 if { (eval echo "$as_me:20233: \"$ac_link\"") >&5
2023620233 (eval $ac_link) 2>&5
2023720234 ac_status=$?
20238 echo "$as_me:20239: \$? = $ac_status" >&5
20235 echo "$as_me:20236: \$? = $ac_status" >&5
2023920236 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
20240 { (eval echo "$as_me:20241: \"$ac_try\"") >&5
20237 { (eval echo "$as_me:20238: \"$ac_try\"") >&5
2024120238 (eval $ac_try) 2>&5
2024220239 ac_status=$?
20243 echo "$as_me:20244: \$? = $ac_status" >&5
20240 echo "$as_me:20241: \$? = $ac_status" >&5
2024420241 (exit $ac_status); }; }; then
2024520242
2024620243 cf_cv_ncurses_version=`cat $cf_tempfile`
2025420251 rm -f $cf_tempfile
2025520252
2025620253 fi
20257 echo "$as_me:20258: result: $cf_cv_ncurses_version" >&5
20254 echo "$as_me:20255: result: $cf_cv_ncurses_version" >&5
2025820255 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
2025920256 test "$cf_cv_ncurses_version" = no ||
2026020257 cat >>confdefs.h <<\EOF
2026720264 # to link gpm.
2026820265 cf_ncurses_LIBS=""
2026920266 cf_ncurses_SAVE="$LIBS"
20270 echo "$as_me:20271: checking for Gpm_Open in -lgpm" >&5
20267 echo "$as_me:20268: checking for Gpm_Open in -lgpm" >&5
2027120268 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
2027220269 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
2027320270 echo $ECHO_N "(cached) $ECHO_C" >&6
2027520272 ac_check_lib_save_LIBS=$LIBS
2027620273 LIBS="-lgpm $LIBS"
2027720274 cat >conftest.$ac_ext <<_ACEOF
20278 #line 20279 "configure"
20275 #line 20276 "configure"
2027920276 #include "confdefs.h"
2028020277
2028120278 /* Override any gcc2 internal prototype to avoid an error. */
2029420291 }
2029520292 _ACEOF
2029620293 rm -f conftest.$ac_objext conftest$ac_exeext
20297 if { (eval echo "$as_me:20298: \"$ac_link\"") >&5
20294 if { (eval echo "$as_me:20295: \"$ac_link\"") >&5
2029820295 (eval $ac_link) 2>&5
2029920296 ac_status=$?
20300 echo "$as_me:20301: \$? = $ac_status" >&5
20297 echo "$as_me:20298: \$? = $ac_status" >&5
2030120298 (exit $ac_status); } &&
2030220299 { ac_try='test -s conftest$ac_exeext'
20303 { (eval echo "$as_me:20304: \"$ac_try\"") >&5
20300 { (eval echo "$as_me:20301: \"$ac_try\"") >&5
2030420301 (eval $ac_try) 2>&5
2030520302 ac_status=$?
20306 echo "$as_me:20307: \$? = $ac_status" >&5
20303 echo "$as_me:20304: \$? = $ac_status" >&5
2030720304 (exit $ac_status); }; }; then
2030820305 ac_cv_lib_gpm_Gpm_Open=yes
2030920306 else
2031420311 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2031520312 LIBS=$ac_check_lib_save_LIBS
2031620313 fi
20317 echo "$as_me:20318: result: $ac_cv_lib_gpm_Gpm_Open" >&5
20314 echo "$as_me:20315: result: $ac_cv_lib_gpm_Gpm_Open" >&5
2031820315 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
2031920316 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
20320 echo "$as_me:20321: checking for initscr in -lgpm" >&5
20317 echo "$as_me:20318: checking for initscr in -lgpm" >&5
2032120318 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
2032220319 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
2032320320 echo $ECHO_N "(cached) $ECHO_C" >&6
2032520322 ac_check_lib_save_LIBS=$LIBS
2032620323 LIBS="-lgpm $LIBS"
2032720324 cat >conftest.$ac_ext <<_ACEOF
20328 #line 20329 "configure"
20325 #line 20326 "configure"
2032920326 #include "confdefs.h"
2033020327
2033120328 /* Override any gcc2 internal prototype to avoid an error. */
2034420341 }
2034520342 _ACEOF
2034620343 rm -f conftest.$ac_objext conftest$ac_exeext
20347 if { (eval echo "$as_me:20348: \"$ac_link\"") >&5
20344 if { (eval echo "$as_me:20345: \"$ac_link\"") >&5
2034820345 (eval $ac_link) 2>&5
2034920346 ac_status=$?
20350 echo "$as_me:20351: \$? = $ac_status" >&5
20347 echo "$as_me:20348: \$? = $ac_status" >&5
2035120348 (exit $ac_status); } &&
2035220349 { ac_try='test -s conftest$ac_exeext'
20353 { (eval echo "$as_me:20354: \"$ac_try\"") >&5
20350 { (eval echo "$as_me:20351: \"$ac_try\"") >&5
2035420351 (eval $ac_try) 2>&5
2035520352 ac_status=$?
20356 echo "$as_me:20357: \$? = $ac_status" >&5
20353 echo "$as_me:20354: \$? = $ac_status" >&5
2035720354 (exit $ac_status); }; }; then
2035820355 ac_cv_lib_gpm_initscr=yes
2035920356 else
2036420361 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2036520362 LIBS=$ac_check_lib_save_LIBS
2036620363 fi
20367 echo "$as_me:20368: result: $ac_cv_lib_gpm_initscr" >&5
20364 echo "$as_me:20365: result: $ac_cv_lib_gpm_initscr" >&5
2036820365 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
2036920366 if test $ac_cv_lib_gpm_initscr = yes; then
2037020367 LIBS="$cf_ncurses_SAVE"
2037920376 # This is only necessary if you are linking against an obsolete
2038020377 # version of ncurses (but it should do no harm, since it's static).
2038120378 if test "$cf_nculib_root" = ncurses ; then
20382 echo "$as_me:20383: checking for tgoto in -lmytinfo" >&5
20379 echo "$as_me:20380: checking for tgoto in -lmytinfo" >&5
2038320380 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
2038420381 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
2038520382 echo $ECHO_N "(cached) $ECHO_C" >&6
2038720384 ac_check_lib_save_LIBS=$LIBS
2038820385 LIBS="-lmytinfo $LIBS"
2038920386 cat >conftest.$ac_ext <<_ACEOF
20390 #line 20391 "configure"
20387 #line 20388 "configure"
2039120388 #include "confdefs.h"
2039220389
2039320390 /* Override any gcc2 internal prototype to avoid an error. */
2040620403 }
2040720404 _ACEOF
2040820405 rm -f conftest.$ac_objext conftest$ac_exeext
20409 if { (eval echo "$as_me:20410: \"$ac_link\"") >&5
20406 if { (eval echo "$as_me:20407: \"$ac_link\"") >&5
2041020407 (eval $ac_link) 2>&5
2041120408 ac_status=$?
20412 echo "$as_me:20413: \$? = $ac_status" >&5
20409 echo "$as_me:20410: \$? = $ac_status" >&5
2041320410 (exit $ac_status); } &&
2041420411 { ac_try='test -s conftest$ac_exeext'
20415 { (eval echo "$as_me:20416: \"$ac_try\"") >&5
20412 { (eval echo "$as_me:20413: \"$ac_try\"") >&5
2041620413 (eval $ac_try) 2>&5
2041720414 ac_status=$?
20418 echo "$as_me:20419: \$? = $ac_status" >&5
20415 echo "$as_me:20416: \$? = $ac_status" >&5
2041920416 (exit $ac_status); }; }; then
2042020417 ac_cv_lib_mytinfo_tgoto=yes
2042120418 else
2042620423 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2042720424 LIBS=$ac_check_lib_save_LIBS
2042820425 fi
20429 echo "$as_me:20430: result: $ac_cv_lib_mytinfo_tgoto" >&5
20426 echo "$as_me:20427: result: $ac_cv_lib_mytinfo_tgoto" >&5
2043020427 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
2043120428 if test $ac_cv_lib_mytinfo_tgoto = yes; then
2043220429 cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
2044520442
2044620443 eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
2044720444 cf_libdir=""
20448 echo "$as_me:20449: checking for initscr" >&5
20445 echo "$as_me:20446: checking for initscr" >&5
2044920446 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
2045020447 if test "${ac_cv_func_initscr+set}" = set; then
2045120448 echo $ECHO_N "(cached) $ECHO_C" >&6
2045220449 else
2045320450 cat >conftest.$ac_ext <<_ACEOF
20454 #line 20455 "configure"
20451 #line 20452 "configure"
2045520452 #include "confdefs.h"
2045620453 /* System header to define __stub macros and hopefully few prototypes,
2045720454 which can conflict with char initscr (); below. */
2048220479 }
2048320480 _ACEOF
2048420481 rm -f conftest.$ac_objext conftest$ac_exeext
20485 if { (eval echo "$as_me:20486: \"$ac_link\"") >&5
20482 if { (eval echo "$as_me:20483: \"$ac_link\"") >&5
2048620483 (eval $ac_link) 2>&5
2048720484 ac_status=$?
20488 echo "$as_me:20489: \$? = $ac_status" >&5
20485 echo "$as_me:20486: \$? = $ac_status" >&5
2048920486 (exit $ac_status); } &&
2049020487 { ac_try='test -s conftest$ac_exeext'
20491 { (eval echo "$as_me:20492: \"$ac_try\"") >&5
20488 { (eval echo "$as_me:20489: \"$ac_try\"") >&5
2049220489 (eval $ac_try) 2>&5
2049320490 ac_status=$?
20494 echo "$as_me:20495: \$? = $ac_status" >&5
20491 echo "$as_me:20492: \$? = $ac_status" >&5
2049520492 (exit $ac_status); }; }; then
2049620493 ac_cv_func_initscr=yes
2049720494 else
2050120498 fi
2050220499 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2050320500 fi
20504 echo "$as_me:20505: result: $ac_cv_func_initscr" >&5
20501 echo "$as_me:20502: result: $ac_cv_func_initscr" >&5
2050520502 echo "${ECHO_T}$ac_cv_func_initscr" >&6
2050620503 if test $ac_cv_func_initscr = yes; then
2050720504 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
2050820505 else
2050920506
2051020507 cf_save_LIBS="$LIBS"
20511 echo "$as_me:20512: checking for initscr in -l$cf_nculib_root" >&5
20508 echo "$as_me:20509: checking for initscr in -l$cf_nculib_root" >&5
2051220509 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
2051320510 LIBS="-l$cf_nculib_root $LIBS"
2051420511 cat >conftest.$ac_ext <<_ACEOF
20515 #line 20516 "configure"
20512 #line 20513 "configure"
2051620513 #include "confdefs.h"
2051720514 #include <${cf_cv_ncurses_header:-curses.h}>
2051820515 int
2052420521 }
2052520522 _ACEOF
2052620523 rm -f conftest.$ac_objext conftest$ac_exeext
20527 if { (eval echo "$as_me:20528: \"$ac_link\"") >&5
20524 if { (eval echo "$as_me:20525: \"$ac_link\"") >&5
2052820525 (eval $ac_link) 2>&5
2052920526 ac_status=$?
20530 echo "$as_me:20531: \$? = $ac_status" >&5
20527 echo "$as_me:20528: \$? = $ac_status" >&5
2053120528 (exit $ac_status); } &&
2053220529 { ac_try='test -s conftest$ac_exeext'
20533 { (eval echo "$as_me:20534: \"$ac_try\"") >&5
20530 { (eval echo "$as_me:20531: \"$ac_try\"") >&5
2053420531 (eval $ac_try) 2>&5
2053520532 ac_status=$?
20536 echo "$as_me:20537: \$? = $ac_status" >&5
20533 echo "$as_me:20534: \$? = $ac_status" >&5
2053720534 (exit $ac_status); }; }; then
20538 echo "$as_me:20539: result: yes" >&5
20535 echo "$as_me:20536: result: yes" >&5
2053920536 echo "${ECHO_T}yes" >&6
2054020537 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
2054120538
2054220539 else
2054320540 echo "$as_me: failed program was:" >&5
2054420541 cat conftest.$ac_ext >&5
20545 echo "$as_me:20546: result: no" >&5
20542 echo "$as_me:20543: result: no" >&5
2054620543 echo "${ECHO_T}no" >&6
2054720544
2054820545 cf_search=
2063220629
2063320630 for cf_libdir in $cf_search
2063420631 do
20635 echo "$as_me:20636: checking for -l$cf_nculib_root in $cf_libdir" >&5
20632 echo "$as_me:20633: checking for -l$cf_nculib_root in $cf_libdir" >&5
2063620633 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
2063720634 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
2063820635 cat >conftest.$ac_ext <<_ACEOF
20639 #line 20640 "configure"
20636 #line 20637 "configure"
2064020637 #include "confdefs.h"
2064120638 #include <${cf_cv_ncurses_header:-curses.h}>
2064220639 int
2064820645 }
2064920646 _ACEOF
2065020647 rm -f conftest.$ac_objext conftest$ac_exeext
20651 if { (eval echo "$as_me:20652: \"$ac_link\"") >&5
20648 if { (eval echo "$as_me:20649: \"$ac_link\"") >&5
2065220649 (eval $ac_link) 2>&5
2065320650 ac_status=$?
20654 echo "$as_me:20655: \$? = $ac_status" >&5
20651 echo "$as_me:20652: \$? = $ac_status" >&5
2065520652 (exit $ac_status); } &&
2065620653 { ac_try='test -s conftest$ac_exeext'
20657 { (eval echo "$as_me:20658: \"$ac_try\"") >&5
20654 { (eval echo "$as_me:20655: \"$ac_try\"") >&5
2065820655 (eval $ac_try) 2>&5
2065920656 ac_status=$?
20660 echo "$as_me:20661: \$? = $ac_status" >&5
20657 echo "$as_me:20658: \$? = $ac_status" >&5
2066120658 (exit $ac_status); }; }; then
20662 echo "$as_me:20663: result: yes" >&5
20659 echo "$as_me:20660: result: yes" >&5
2066320660 echo "${ECHO_T}yes" >&6
2066420661 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
2066520662 break
2066620663 else
2066720664 echo "$as_me: failed program was:" >&5
2066820665 cat conftest.$ac_ext >&5
20669 echo "$as_me:20670: result: no" >&5
20666 echo "$as_me:20667: result: no" >&5
2067020667 echo "${ECHO_T}no" >&6
2067120668 LIBS="$cf_save_LIBS"
2067220669 fi
2068120678 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
2068220679
2068320680 if test $cf_found_library = no ; then
20684 { { echo "$as_me:20685: error: Cannot link $cf_nculib_root library" >&5
20681 { { echo "$as_me:20682: error: Cannot link $cf_nculib_root library" >&5
2068520682 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
2068620683 { (exit 1); exit 1; }; }
2068720684 fi
2068920686 fi
2069020687
2069120688 if test -n "$cf_ncurses_LIBS" ; then
20692 echo "$as_me:20693: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
20689 echo "$as_me:20690: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
2069320690 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
2069420691 cf_ncurses_SAVE="$LIBS"
2069520692 for p in $cf_ncurses_LIBS ; do
2069920696 fi
2070020697 done
2070120698 cat >conftest.$ac_ext <<_ACEOF
20702 #line 20703 "configure"
20699 #line 20700 "configure"
2070320700 #include "confdefs.h"
2070420701 #include <${cf_cv_ncurses_header:-curses.h}>
2070520702 int
2071120708 }
2071220709 _ACEOF
2071320710 rm -f conftest.$ac_objext conftest$ac_exeext
20714 if { (eval echo "$as_me:20715: \"$ac_link\"") >&5
20711 if { (eval echo "$as_me:20712: \"$ac_link\"") >&5
2071520712 (eval $ac_link) 2>&5
2071620713 ac_status=$?
20717 echo "$as_me:20718: \$? = $ac_status" >&5
20714 echo "$as_me:20715: \$? = $ac_status" >&5
2071820715 (exit $ac_status); } &&
2071920716 { ac_try='test -s conftest$ac_exeext'
20720 { (eval echo "$as_me:20721: \"$ac_try\"") >&5
20717 { (eval echo "$as_me:20718: \"$ac_try\"") >&5
2072120718 (eval $ac_try) 2>&5
2072220719 ac_status=$?
20723 echo "$as_me:20724: \$? = $ac_status" >&5
20720 echo "$as_me:20721: \$? = $ac_status" >&5
2072420721 (exit $ac_status); }; }; then
20725 echo "$as_me:20726: result: yes" >&5
20722 echo "$as_me:20723: result: yes" >&5
2072620723 echo "${ECHO_T}yes" >&6
2072720724 else
2072820725 echo "$as_me: failed program was:" >&5
2072920726 cat conftest.$ac_ext >&5
20730 echo "$as_me:20731: result: no" >&5
20727 echo "$as_me:20728: result: no" >&5
2073120728 echo "${ECHO_T}no" >&6
2073220729 LIBS="$cf_ncurses_SAVE"
2073320730 fi
2074520742 ;;
2074620743 ncursesw)
2074720744
20748 echo "$as_me:20749: checking for multibyte character support" >&5
20745 echo "$as_me:20746: checking for multibyte character support" >&5
2074920746 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
2075020747 if test "${cf_cv_utf8_lib+set}" = set; then
2075120748 echo $ECHO_N "(cached) $ECHO_C" >&6
2075320750
2075420751 cf_save_LIBS="$LIBS"
2075520752 cat >conftest.$ac_ext <<_ACEOF
20756 #line 20757 "configure"
20753 #line 20754 "configure"
2075720754 #include "confdefs.h"
2075820755
2075920756 #include <stdlib.h>
2076620763 }
2076720764 _ACEOF
2076820765 rm -f conftest.$ac_objext conftest$ac_exeext
20769 if { (eval echo "$as_me:20770: \"$ac_link\"") >&5
20766 if { (eval echo "$as_me:20767: \"$ac_link\"") >&5
2077020767 (eval $ac_link) 2>&5
2077120768 ac_status=$?
20772 echo "$as_me:20773: \$? = $ac_status" >&5
20769 echo "$as_me:20770: \$? = $ac_status" >&5
2077320770 (exit $ac_status); } &&
2077420771 { ac_try='test -s conftest$ac_exeext'
20775 { (eval echo "$as_me:20776: \"$ac_try\"") >&5
20772 { (eval echo "$as_me:20773: \"$ac_try\"") >&5
2077620773 (eval $ac_try) 2>&5
2077720774 ac_status=$?
20778 echo "$as_me:20779: \$? = $ac_status" >&5
20775 echo "$as_me:20776: \$? = $ac_status" >&5
2077920776 (exit $ac_status); }; }; then
2078020777 cf_cv_utf8_lib=yes
2078120778 else
2078720784 cf_cv_header_path_utf8=
2078820785 cf_cv_library_path_utf8=
2078920786
20790 echo "${as_me:-configure}:20791: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
20787 echo "${as_me:-configure}:20788: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
2079120788
2079220789 cf_save_LIBS="$LIBS"
2079320790
2079420791 cat >conftest.$ac_ext <<_ACEOF
20795 #line 20796 "configure"
20792 #line 20793 "configure"
2079620793 #include "confdefs.h"
2079720794
2079820795 #include <libutf8.h>
2080520802 }
2080620803 _ACEOF
2080720804 rm -f conftest.$ac_objext conftest$ac_exeext
20808 if { (eval echo "$as_me:20809: \"$ac_link\"") >&5
20805 if { (eval echo "$as_me:20806: \"$ac_link\"") >&5
2080920806 (eval $ac_link) 2>&5
2081020807 ac_status=$?
20811 echo "$as_me:20812: \$? = $ac_status" >&5
20808 echo "$as_me:20809: \$? = $ac_status" >&5
2081220809 (exit $ac_status); } &&
2081320810 { ac_try='test -s conftest$ac_exeext'
20814 { (eval echo "$as_me:20815: \"$ac_try\"") >&5
20811 { (eval echo "$as_me:20812: \"$ac_try\"") >&5
2081520812 (eval $ac_try) 2>&5
2081620813 ac_status=$?
20817 echo "$as_me:20818: \$? = $ac_status" >&5
20814 echo "$as_me:20815: \$? = $ac_status" >&5
2081820815 (exit $ac_status); }; }; then
2081920816
2082020817 cf_cv_find_linkage_utf8=yes
2082820825 LIBS="-lutf8 $cf_save_LIBS"
2082920826
2083020827 cat >conftest.$ac_ext <<_ACEOF
20831 #line 20832 "configure"
20828 #line 20829 "configure"
2083220829 #include "confdefs.h"
2083320830
2083420831 #include <libutf8.h>
2084120838 }
2084220839 _ACEOF
2084320840 rm -f conftest.$ac_objext conftest$ac_exeext
20844 if { (eval echo "$as_me:20845: \"$ac_link\"") >&5
20841 if { (eval echo "$as_me:20842: \"$ac_link\"") >&5
2084520842 (eval $ac_link) 2>&5
2084620843 ac_status=$?
20847 echo "$as_me:20848: \$? = $ac_status" >&5
20844 echo "$as_me:20845: \$? = $ac_status" >&5
2084820845 (exit $ac_status); } &&
2084920846 { ac_try='test -s conftest$ac_exeext'
20850 { (eval echo "$as_me:20851: \"$ac_try\"") >&5
20847 { (eval echo "$as_me:20848: \"$ac_try\"") >&5
2085120848 (eval $ac_try) 2>&5
2085220849 ac_status=$?
20853 echo "$as_me:20854: \$? = $ac_status" >&5
20850 echo "$as_me:20851: \$? = $ac_status" >&5
2085420851 (exit $ac_status); }; }; then
2085520852
2085620853 cf_cv_find_linkage_utf8=yes
2086720864
2086820865 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6
2086920866
20870 echo "${as_me:-configure}:20871: testing find linkage for utf8 library ..." 1>&5
20871
20872 echo "${as_me:-configure}:20873: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
20867 echo "${as_me:-configure}:20868: testing find linkage for utf8 library ..." 1>&5
20868
20869 echo "${as_me:-configure}:20870: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
2087320870
2087420871 cf_save_CPPFLAGS="$CPPFLAGS"
2087520872 cf_test_CPPFLAGS="$CPPFLAGS"
2098220979 if test -d $cf_cv_header_path_utf8 ; then
2098320980 test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6
2098420981
20985 echo "${as_me:-configure}:20986: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
20982 echo "${as_me:-configure}:20983: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
2098620983
2098720984 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8"
2098820985 cat >conftest.$ac_ext <<_ACEOF
20989 #line 20990 "configure"
20986 #line 20987 "configure"
2099020987 #include "confdefs.h"
2099120988
2099220989 #include <libutf8.h>
2099920996 }
2100020997 _ACEOF
2100120998 rm -f conftest.$ac_objext
21002 if { (eval echo "$as_me:21003: \"$ac_compile\"") >&5
20999 if { (eval echo "$as_me:21000: \"$ac_compile\"") >&5
2100321000 (eval $ac_compile) 2>&5
2100421001 ac_status=$?
21005 echo "$as_me:21006: \$? = $ac_status" >&5
21002 echo "$as_me:21003: \$? = $ac_status" >&5
2100621003 (exit $ac_status); } &&
2100721004 { ac_try='test -s conftest.$ac_objext'
21008 { (eval echo "$as_me:21009: \"$ac_try\"") >&5
21005 { (eval echo "$as_me:21006: \"$ac_try\"") >&5
2100921006 (eval $ac_try) 2>&5
2101021007 ac_status=$?
21011 echo "$as_me:21012: \$? = $ac_status" >&5
21008 echo "$as_me:21009: \$? = $ac_status" >&5
2101221009 (exit $ac_status); }; }; then
2101321010
2101421011 test -n "$verbose" && echo " ... found utf8 headers in $cf_cv_header_path_utf8" 1>&6
2101521012
21016 echo "${as_me:-configure}:21017: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
21013 echo "${as_me:-configure}:21014: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
2101721014
2101821015 cf_cv_find_linkage_utf8=maybe
2101921016 cf_test_CPPFLAGS="$CPPFLAGS"
2103121028
2103221029 if test "$cf_cv_find_linkage_utf8" = maybe ; then
2103321030
21034 echo "${as_me:-configure}:21035: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
21031 echo "${as_me:-configure}:21032: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
2103521032
2103621033 cf_save_LIBS="$LIBS"
2103721034 cf_save_LDFLAGS="$LDFLAGS"
2112821125 if test -d $cf_cv_library_path_utf8 ; then
2112921126 test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6
2113021127
21131 echo "${as_me:-configure}:21132: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
21128 echo "${as_me:-configure}:21129: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
2113221129
2113321130 CPPFLAGS="$cf_test_CPPFLAGS"
2113421131 LIBS="-lutf8 $cf_save_LIBS"
2113521132 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8"
2113621133 cat >conftest.$ac_ext <<_ACEOF
21137 #line 21138 "configure"
21134 #line 21135 "configure"
2113821135 #include "confdefs.h"
2113921136
2114021137 #include <libutf8.h>
2114721144 }
2114821145 _ACEOF
2114921146 rm -f conftest.$ac_objext conftest$ac_exeext
21150 if { (eval echo "$as_me:21151: \"$ac_link\"") >&5
21147 if { (eval echo "$as_me:21148: \"$ac_link\"") >&5
2115121148 (eval $ac_link) 2>&5
2115221149 ac_status=$?
21153 echo "$as_me:21154: \$? = $ac_status" >&5
21150 echo "$as_me:21151: \$? = $ac_status" >&5
2115421151 (exit $ac_status); } &&
2115521152 { ac_try='test -s conftest$ac_exeext'
21156 { (eval echo "$as_me:21157: \"$ac_try\"") >&5
21153 { (eval echo "$as_me:21154: \"$ac_try\"") >&5
2115721154 (eval $ac_try) 2>&5
2115821155 ac_status=$?
21159 echo "$as_me:21160: \$? = $ac_status" >&5
21156 echo "$as_me:21157: \$? = $ac_status" >&5
2116021157 (exit $ac_status); }; }; then
2116121158
2116221159 test -n "$verbose" && echo " ... found utf8 library in $cf_cv_library_path_utf8" 1>&6
2116321160
21164 echo "${as_me:-configure}:21165: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
21161 echo "${as_me:-configure}:21162: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
2116521162
2116621163 cf_cv_find_linkage_utf8=yes
2116721164 cf_cv_library_file_utf8="-lutf8"
2120321200 fi
2120421201 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2120521202 fi
21206 echo "$as_me:21207: result: $cf_cv_utf8_lib" >&5
21203 echo "$as_me:21204: result: $cf_cv_utf8_lib" >&5
2120721204 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
2120821205
2120921206 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
2123821235 cf_save_CPPFLAGS=$CPPFLAGS
2123921236 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2124021237 cat >conftest.$ac_ext <<_ACEOF
21241 #line 21242 "configure"
21238 #line 21239 "configure"
2124221239 #include "confdefs.h"
2124321240 #include <stdio.h>
2124421241 int
2125021247 }
2125121248 _ACEOF
2125221249 rm -f conftest.$ac_objext
21253 if { (eval echo "$as_me:21254: \"$ac_compile\"") >&5
21250 if { (eval echo "$as_me:21251: \"$ac_compile\"") >&5
2125421251 (eval $ac_compile) 2>&5
2125521252 ac_status=$?
21256 echo "$as_me:21257: \$? = $ac_status" >&5
21253 echo "$as_me:21254: \$? = $ac_status" >&5
2125721254 (exit $ac_status); } &&
2125821255 { ac_try='test -s conftest.$ac_objext'
21259 { (eval echo "$as_me:21260: \"$ac_try\"") >&5
21256 { (eval echo "$as_me:21257: \"$ac_try\"") >&5
2126021257 (eval $ac_try) 2>&5
2126121258 ac_status=$?
21262 echo "$as_me:21263: \$? = $ac_status" >&5
21259 echo "$as_me:21260: \$? = $ac_status" >&5
2126321260 (exit $ac_status); }; }; then
2126421261 :
2126521262 else
2127621273 if test "$cf_have_incdir" = no ; then
2127721274 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
2127821275
21279 echo "${as_me:-configure}:21280: testing adding $cf_add_incdir to include-path ..." 1>&5
21276 echo "${as_me:-configure}:21277: testing adding $cf_add_incdir to include-path ..." 1>&5
2128021277
2128121278 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2128221279
2131021307 if test "$cf_have_libdir" = no ; then
2131121308 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
2131221309
21313 echo "${as_me:-configure}:21314: testing adding $cf_add_libdir to library-path ..." 1>&5
21310 echo "${as_me:-configure}:21311: testing adding $cf_add_libdir to library-path ..." 1>&5
2131421311
2131521312 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
2131621313 fi
2133021327 do
2133121328 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
2133221329 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
21333 echo "$as_me:21334: checking for $ac_word" >&5
21330 echo "$as_me:21331: checking for $ac_word" >&5
2133421331 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2133521332 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
2133621333 echo $ECHO_N "(cached) $ECHO_C" >&6
2134521342 test -z "$ac_dir" && ac_dir=.
2134621343 $as_executable_p "$ac_dir/$ac_word" || continue
2134721344 ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
21348 echo "$as_me:21349: found $ac_dir/$ac_word" >&5
21345 echo "$as_me:21346: found $ac_dir/$ac_word" >&5
2134921346 break
2135021347 done
2135121348
2135321350 fi
2135421351 NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
2135521352 if test -n "$NCURSES_CONFIG"; then
21356 echo "$as_me:21357: result: $NCURSES_CONFIG" >&5
21353 echo "$as_me:21354: result: $NCURSES_CONFIG" >&5
2135721354 echo "${ECHO_T}$NCURSES_CONFIG" >&6
2135821355 else
21359 echo "$as_me:21360: result: no" >&5
21356 echo "$as_me:21357: result: no" >&5
2136021357 echo "${ECHO_T}no" >&6
2136121358 fi
2136221359
2136921366 do
2137021367 # Extract the first word of "$ac_prog", so it can be a program name with args.
2137121368 set dummy $ac_prog; ac_word=$2
21372 echo "$as_me:21373: checking for $ac_word" >&5
21369 echo "$as_me:21370: checking for $ac_word" >&5
2137321370 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2137421371 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then
2137521372 echo $ECHO_N "(cached) $ECHO_C" >&6
2138421381 test -z "$ac_dir" && ac_dir=.
2138521382 $as_executable_p "$ac_dir/$ac_word" || continue
2138621383 ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
21387 echo "$as_me:21388: found $ac_dir/$ac_word" >&5
21384 echo "$as_me:21385: found $ac_dir/$ac_word" >&5
2138821385 break
2138921386 done
2139021387
2139221389 fi
2139321390 ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
2139421391 if test -n "$ac_ct_NCURSES_CONFIG"; then
21395 echo "$as_me:21396: result: $ac_ct_NCURSES_CONFIG" >&5
21392 echo "$as_me:21393: result: $ac_ct_NCURSES_CONFIG" >&5
2139621393 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
2139721394 else
21398 echo "$as_me:21399: result: no" >&5
21395 echo "$as_me:21396: result: no" >&5
2139921396 echo "${ECHO_T}no" >&6
2140021397 fi
2140121398
2141321410
2141421411 # even with config script, some packages use no-override for curses.h
2141521412
21416 echo "$as_me:21417: checking if we have identified curses headers" >&5
21413 echo "$as_me:21414: checking if we have identified curses headers" >&5
2141721414 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
2141821415 if test "${cf_cv_ncurses_header+set}" = set; then
2141921416 echo $ECHO_N "(cached) $ECHO_C" >&6
2142721424 curses.h
2142821425 do
2142921426 cat >conftest.$ac_ext <<_ACEOF
21430 #line 21431 "configure"
21427 #line 21428 "configure"
2143121428 #include "confdefs.h"
2143221429 #include <${cf_header}>
2143321430 int
2143921436 }
2144021437 _ACEOF
2144121438 rm -f conftest.$ac_objext
21442 if { (eval echo "$as_me:21443: \"$ac_compile\"") >&5
21439 if { (eval echo "$as_me:21440: \"$ac_compile\"") >&5
2144321440 (eval $ac_compile) 2>&5
2144421441 ac_status=$?
21445 echo "$as_me:21446: \$? = $ac_status" >&5
21442 echo "$as_me:21443: \$? = $ac_status" >&5
2144621443 (exit $ac_status); } &&
2144721444 { ac_try='test -s conftest.$ac_objext'
21448 { (eval echo "$as_me:21449: \"$ac_try\"") >&5
21445 { (eval echo "$as_me:21446: \"$ac_try\"") >&5
2144921446 (eval $ac_try) 2>&5
2145021447 ac_status=$?
21451 echo "$as_me:21452: \$? = $ac_status" >&5
21448 echo "$as_me:21449: \$? = $ac_status" >&5
2145221449 (exit $ac_status); }; }; then
2145321450 cf_cv_ncurses_header=$cf_header; break
2145421451 else
2145921456 done
2146021457
2146121458 fi
21462 echo "$as_me:21463: result: $cf_cv_ncurses_header" >&5
21459 echo "$as_me:21460: result: $cf_cv_ncurses_header" >&5
2146321460 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
2146421461
2146521462 if test "$cf_cv_ncurses_header" = none ; then
21466 { { echo "$as_me:21467: error: No curses header-files found" >&5
21463 { { echo "$as_me:21464: error: No curses header-files found" >&5
2146721464 echo "$as_me: error: No curses header-files found" >&2;}
2146821465 { (exit 1); exit 1; }; }
2146921466 fi
2147321470 for ac_header in $cf_cv_ncurses_header
2147421471 do
2147521472 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
21476 echo "$as_me:21477: checking for $ac_header" >&5
21473 echo "$as_me:21474: checking for $ac_header" >&5
2147721474 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2147821475 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2147921476 echo $ECHO_N "(cached) $ECHO_C" >&6
2148021477 else
2148121478 cat >conftest.$ac_ext <<_ACEOF
21482 #line 21483 "configure"
21479 #line 21480 "configure"
2148321480 #include "confdefs.h"
2148421481 #include <$ac_header>
2148521482 _ACEOF
21486 if { (eval echo "$as_me:21487: \"$ac_cpp conftest.$ac_ext\"") >&5
21483 if { (eval echo "$as_me:21484: \"$ac_cpp conftest.$ac_ext\"") >&5
2148721484 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2148821485 ac_status=$?
2148921486 egrep -v '^ *\+' conftest.er1 >conftest.err
2149021487 rm -f conftest.er1
2149121488 cat conftest.err >&5
21492 echo "$as_me:21493: \$? = $ac_status" >&5
21489 echo "$as_me:21490: \$? = $ac_status" >&5
2149321490 (exit $ac_status); } >/dev/null; then
2149421491 if test -s conftest.err; then
2149521492 ac_cpp_err=$ac_c_preproc_warn_flag
2150821505 fi
2150921506 rm -f conftest.err conftest.$ac_ext
2151021507 fi
21511 echo "$as_me:21512: result: `eval echo '${'$as_ac_Header'}'`" >&5
21508 echo "$as_me:21509: result: `eval echo '${'$as_ac_Header'}'`" >&5
2151221509 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2151321510 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2151421511 cat >>confdefs.h <<EOF
2156121558 cf_save_CPPFLAGS=$CPPFLAGS
2156221559 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2156321560 cat >conftest.$ac_ext <<_ACEOF
21564 #line 21565 "configure"
21561 #line 21562 "configure"
2156521562 #include "confdefs.h"
2156621563 #include <stdio.h>
2156721564 int
2157321570 }
2157421571 _ACEOF
2157521572 rm -f conftest.$ac_objext
21576 if { (eval echo "$as_me:21577: \"$ac_compile\"") >&5
21573 if { (eval echo "$as_me:21574: \"$ac_compile\"") >&5
2157721574 (eval $ac_compile) 2>&5
2157821575 ac_status=$?
21579 echo "$as_me:21580: \$? = $ac_status" >&5
21576 echo "$as_me:21577: \$? = $ac_status" >&5
2158021577 (exit $ac_status); } &&
2158121578 { ac_try='test -s conftest.$ac_objext'
21582 { (eval echo "$as_me:21583: \"$ac_try\"") >&5
21579 { (eval echo "$as_me:21580: \"$ac_try\"") >&5
2158321580 (eval $ac_try) 2>&5
2158421581 ac_status=$?
21585 echo "$as_me:21586: \$? = $ac_status" >&5
21582 echo "$as_me:21583: \$? = $ac_status" >&5
2158621583 (exit $ac_status); }; }; then
2158721584 :
2158821585 else
2159921596 if test "$cf_have_incdir" = no ; then
2160021597 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
2160121598
21602 echo "${as_me:-configure}:21603: testing adding $cf_add_incdir to include-path ..." 1>&5
21599 echo "${as_me:-configure}:21600: testing adding $cf_add_incdir to include-path ..." 1>&5
2160321600
2160421601 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2160521602
2161621613
2161721614 }
2161821615
21619 echo "$as_me:21620: checking for $cf_ncuhdr_root header in include-path" >&5
21616 echo "$as_me:21617: checking for $cf_ncuhdr_root header in include-path" >&5
2162021617 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
2162121618 if test "${cf_cv_ncurses_h+set}" = set; then
2162221619 echo $ECHO_N "(cached) $ECHO_C" >&6
2162821625 do
2162921626
2163021627 cat >conftest.$ac_ext <<_ACEOF
21631 #line 21632 "configure"
21628 #line 21629 "configure"
2163221629 #include "confdefs.h"
2163321630
2163421631 #define _XOPEN_SOURCE_EXTENDED
2166021657 }
2166121658 _ACEOF
2166221659 rm -f conftest.$ac_objext
21663 if { (eval echo "$as_me:21664: \"$ac_compile\"") >&5
21660 if { (eval echo "$as_me:21661: \"$ac_compile\"") >&5
2166421661 (eval $ac_compile) 2>&5
2166521662 ac_status=$?
21666 echo "$as_me:21667: \$? = $ac_status" >&5
21663 echo "$as_me:21664: \$? = $ac_status" >&5
2166721664 (exit $ac_status); } &&
2166821665 { ac_try='test -s conftest.$ac_objext'
21669 { (eval echo "$as_me:21670: \"$ac_try\"") >&5
21666 { (eval echo "$as_me:21667: \"$ac_try\"") >&5
2167021667 (eval $ac_try) 2>&5
2167121668 ac_status=$?
21672 echo "$as_me:21673: \$? = $ac_status" >&5
21669 echo "$as_me:21670: \$? = $ac_status" >&5
2167321670 (exit $ac_status); }; }; then
2167421671 cf_cv_ncurses_h=$cf_header
2167521672
2168421681 done
2168521682
2168621683 fi
21687 echo "$as_me:21688: result: $cf_cv_ncurses_h" >&5
21684 echo "$as_me:21685: result: $cf_cv_ncurses_h" >&5
2168821685 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
2168921686
2169021687 if test "$cf_cv_ncurses_h" != no ; then
2169121688 cf_cv_ncurses_header=$cf_cv_ncurses_h
2169221689 else
2169321690
21694 echo "$as_me:21695: checking for $cf_ncuhdr_root include-path" >&5
21691 echo "$as_me:21692: checking for $cf_ncuhdr_root include-path" >&5
2169521692 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
2169621693 if test "${cf_cv_ncurses_h2+set}" = set; then
2169721694 echo $ECHO_N "(cached) $ECHO_C" >&6
2183121828 cf_save_CPPFLAGS=$CPPFLAGS
2183221829 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2183321830 cat >conftest.$ac_ext <<_ACEOF
21834 #line 21835 "configure"
21831 #line 21832 "configure"
2183521832 #include "confdefs.h"
2183621833 #include <stdio.h>
2183721834 int
2184321840 }
2184421841 _ACEOF
2184521842 rm -f conftest.$ac_objext
21846 if { (eval echo "$as_me:21847: \"$ac_compile\"") >&5
21843 if { (eval echo "$as_me:21844: \"$ac_compile\"") >&5
2184721844 (eval $ac_compile) 2>&5
2184821845 ac_status=$?
21849 echo "$as_me:21850: \$? = $ac_status" >&5
21846 echo "$as_me:21847: \$? = $ac_status" >&5
2185021847 (exit $ac_status); } &&
2185121848 { ac_try='test -s conftest.$ac_objext'
21852 { (eval echo "$as_me:21853: \"$ac_try\"") >&5
21849 { (eval echo "$as_me:21850: \"$ac_try\"") >&5
2185321850 (eval $ac_try) 2>&5
2185421851 ac_status=$?
21855 echo "$as_me:21856: \$? = $ac_status" >&5
21852 echo "$as_me:21853: \$? = $ac_status" >&5
2185621853 (exit $ac_status); }; }; then
2185721854 :
2185821855 else
2186921866 if test "$cf_have_incdir" = no ; then
2187021867 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
2187121868
21872 echo "${as_me:-configure}:21873: testing adding $cf_add_incdir to include-path ..." 1>&5
21869 echo "${as_me:-configure}:21870: testing adding $cf_add_incdir to include-path ..." 1>&5
2187321870
2187421871 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2187521872
2189021887 do
2189121888
2189221889 cat >conftest.$ac_ext <<_ACEOF
21893 #line 21894 "configure"
21890 #line 21891 "configure"
2189421891 #include "confdefs.h"
2189521892
2189621893 #include <$cf_header>
2191421911 }
2191521912 _ACEOF
2191621913 rm -f conftest.$ac_objext
21917 if { (eval echo "$as_me:21918: \"$ac_compile\"") >&5
21914 if { (eval echo "$as_me:21915: \"$ac_compile\"") >&5
2191821915 (eval $ac_compile) 2>&5
2191921916 ac_status=$?
21920 echo "$as_me:21921: \$? = $ac_status" >&5
21917 echo "$as_me:21918: \$? = $ac_status" >&5
2192121918 (exit $ac_status); } &&
2192221919 { ac_try='test -s conftest.$ac_objext'
21923 { (eval echo "$as_me:21924: \"$ac_try\"") >&5
21920 { (eval echo "$as_me:21921: \"$ac_try\"") >&5
2192421921 (eval $ac_try) 2>&5
2192521922 ac_status=$?
21926 echo "$as_me:21927: \$? = $ac_status" >&5
21923 echo "$as_me:21924: \$? = $ac_status" >&5
2192721924 (exit $ac_status); }; }; then
2192821925 cf_cv_ncurses_h2=$cf_header
2192921926
2194421941 CPPFLAGS="$cf_save2_CPPFLAGS"
2194521942 test "$cf_cv_ncurses_h2" != no && break
2194621943 done
21947 test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:21948: error: not found" >&5
21944 test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:21945: error: not found" >&5
2194821945 echo "$as_me: error: not found" >&2;}
2194921946 { (exit 1); exit 1; }; }
2195021947
2195121948 fi
21952 echo "$as_me:21953: result: $cf_cv_ncurses_h2" >&5
21949 echo "$as_me:21950: result: $cf_cv_ncurses_h2" >&5
2195321950 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
2195421951
2195521952 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
2198221979 cf_save_CPPFLAGS=$CPPFLAGS
2198321980 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2198421981 cat >conftest.$ac_ext <<_ACEOF
21985 #line 21986 "configure"
21982 #line 21983 "configure"
2198621983 #include "confdefs.h"
2198721984 #include <stdio.h>
2198821985 int
2199421991 }
2199521992 _ACEOF
2199621993 rm -f conftest.$ac_objext
21997 if { (eval echo "$as_me:21998: \"$ac_compile\"") >&5
21994 if { (eval echo "$as_me:21995: \"$ac_compile\"") >&5
2199821995 (eval $ac_compile) 2>&5
2199921996 ac_status=$?
22000 echo "$as_me:22001: \$? = $ac_status" >&5
21997 echo "$as_me:21998: \$? = $ac_status" >&5
2200121998 (exit $ac_status); } &&
2200221999 { ac_try='test -s conftest.$ac_objext'
22003 { (eval echo "$as_me:22004: \"$ac_try\"") >&5
22000 { (eval echo "$as_me:22001: \"$ac_try\"") >&5
2200422001 (eval $ac_try) 2>&5
2200522002 ac_status=$?
22006 echo "$as_me:22007: \$? = $ac_status" >&5
22003 echo "$as_me:22004: \$? = $ac_status" >&5
2200722004 (exit $ac_status); }; }; then
2200822005 :
2200922006 else
2202022017 if test "$cf_have_incdir" = no ; then
2202122018 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
2202222019
22023 echo "${as_me:-configure}:22024: testing adding $cf_add_incdir to include-path ..." 1>&5
22020 echo "${as_me:-configure}:22021: testing adding $cf_add_incdir to include-path ..." 1>&5
2202422021
2202522022 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2202622023
2206622063 ;;
2206722064 esac
2206822065
22069 echo "$as_me:22070: checking for terminfo header" >&5
22066 echo "$as_me:22067: checking for terminfo header" >&5
2207022067 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
2207122068 if test "${cf_cv_term_header+set}" = set; then
2207222069 echo $ECHO_N "(cached) $ECHO_C" >&6
2208422081 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
2208522082 do
2208622083 cat >conftest.$ac_ext <<_ACEOF
22087 #line 22088 "configure"
22084 #line 22085 "configure"
2208822085 #include "confdefs.h"
2208922086 #include <stdio.h>
2209022087 #include <${cf_cv_ncurses_header:-curses.h}>
2209922096 }
2210022097 _ACEOF
2210122098 rm -f conftest.$ac_objext
22102 if { (eval echo "$as_me:22103: \"$ac_compile\"") >&5
22099 if { (eval echo "$as_me:22100: \"$ac_compile\"") >&5
2210322100 (eval $ac_compile) 2>&5
2210422101 ac_status=$?
22105 echo "$as_me:22106: \$? = $ac_status" >&5
22102 echo "$as_me:22103: \$? = $ac_status" >&5
2210622103 (exit $ac_status); } &&
2210722104 { ac_try='test -s conftest.$ac_objext'
22108 { (eval echo "$as_me:22109: \"$ac_try\"") >&5
22105 { (eval echo "$as_me:22106: \"$ac_try\"") >&5
2210922106 (eval $ac_try) 2>&5
2211022107 ac_status=$?
22111 echo "$as_me:22112: \$? = $ac_status" >&5
22108 echo "$as_me:22109: \$? = $ac_status" >&5
2211222109 (exit $ac_status); }; }; then
2211322110
2211422111 cf_cv_term_header="$cf_test"
2212422121 done
2212522122
2212622123 fi
22127 echo "$as_me:22128: result: $cf_cv_term_header" >&5
22124 echo "$as_me:22125: result: $cf_cv_term_header" >&5
2212822125 echo "${ECHO_T}$cf_cv_term_header" >&6
2212922126
2213022127 # Set definitions to allow ifdef'ing to accommodate subdirectories
2216222159 #define NCURSES 1
2216322160 EOF
2216422161
22165 echo "$as_me:22166: checking for ncurses version" >&5
22162 echo "$as_me:22163: checking for ncurses version" >&5
2216622163 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
2216722164 if test "${cf_cv_ncurses_version+set}" = set; then
2216822165 echo $ECHO_N "(cached) $ECHO_C" >&6
2218822185 #endif
2218922186 EOF
2219022187 cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
22191 { (eval echo "$as_me:22192: \"$cf_try\"") >&5
22188 { (eval echo "$as_me:22189: \"$cf_try\"") >&5
2219222189 (eval $cf_try) 2>&5
2219322190 ac_status=$?
22194 echo "$as_me:22195: \$? = $ac_status" >&5
22191 echo "$as_me:22192: \$? = $ac_status" >&5
2219522192 (exit $ac_status); }
2219622193 if test -f conftest.out ; then
2219722194 cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
2220122198
2220222199 else
2220322200 cat >conftest.$ac_ext <<_ACEOF
22204 #line 22205 "configure"
22201 #line 22202 "configure"
2220522202 #include "confdefs.h"
2220622203
2220722204 #include <${cf_cv_ncurses_header:-curses.h}>
2222622223 }
2222722224 _ACEOF
2222822225 rm -f conftest$ac_exeext
22229 if { (eval echo "$as_me:22230: \"$ac_link\"") >&5
22226 if { (eval echo "$as_me:22227: \"$ac_link\"") >&5
2223022227 (eval $ac_link) 2>&5
2223122228 ac_status=$?
22232 echo "$as_me:22233: \$? = $ac_status" >&5
22229 echo "$as_me:22230: \$? = $ac_status" >&5
2223322230 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
22234 { (eval echo "$as_me:22235: \"$ac_try\"") >&5
22231 { (eval echo "$as_me:22232: \"$ac_try\"") >&5
2223522232 (eval $ac_try) 2>&5
2223622233 ac_status=$?
22237 echo "$as_me:22238: \$? = $ac_status" >&5
22234 echo "$as_me:22235: \$? = $ac_status" >&5
2223822235 (exit $ac_status); }; }; then
2223922236
2224022237 cf_cv_ncurses_version=`cat $cf_tempfile`
2224822245 rm -f $cf_tempfile
2224922246
2225022247 fi
22251 echo "$as_me:22252: result: $cf_cv_ncurses_version" >&5
22248 echo "$as_me:22249: result: $cf_cv_ncurses_version" >&5
2225222249 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
2225322250 test "$cf_cv_ncurses_version" = no ||
2225422251 cat >>confdefs.h <<\EOF
2226122258 # to link gpm.
2226222259 cf_ncurses_LIBS=""
2226322260 cf_ncurses_SAVE="$LIBS"
22264 echo "$as_me:22265: checking for Gpm_Open in -lgpm" >&5
22261 echo "$as_me:22262: checking for Gpm_Open in -lgpm" >&5
2226522262 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
2226622263 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
2226722264 echo $ECHO_N "(cached) $ECHO_C" >&6
2226922266 ac_check_lib_save_LIBS=$LIBS
2227022267 LIBS="-lgpm $LIBS"
2227122268 cat >conftest.$ac_ext <<_ACEOF
22272 #line 22273 "configure"
22269 #line 22270 "configure"
2227322270 #include "confdefs.h"
2227422271
2227522272 /* Override any gcc2 internal prototype to avoid an error. */
2228822285 }
2228922286 _ACEOF
2229022287 rm -f conftest.$ac_objext conftest$ac_exeext
22291 if { (eval echo "$as_me:22292: \"$ac_link\"") >&5
22288 if { (eval echo "$as_me:22289: \"$ac_link\"") >&5
2229222289 (eval $ac_link) 2>&5
2229322290 ac_status=$?
22294 echo "$as_me:22295: \$? = $ac_status" >&5
22291 echo "$as_me:22292: \$? = $ac_status" >&5
2229522292 (exit $ac_status); } &&
2229622293 { ac_try='test -s conftest$ac_exeext'
22297 { (eval echo "$as_me:22298: \"$ac_try\"") >&5
22294 { (eval echo "$as_me:22295: \"$ac_try\"") >&5
2229822295 (eval $ac_try) 2>&5
2229922296 ac_status=$?
22300 echo "$as_me:22301: \$? = $ac_status" >&5
22297 echo "$as_me:22298: \$? = $ac_status" >&5
2230122298 (exit $ac_status); }; }; then
2230222299 ac_cv_lib_gpm_Gpm_Open=yes
2230322300 else
2230822305 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2230922306 LIBS=$ac_check_lib_save_LIBS
2231022307 fi
22311 echo "$as_me:22312: result: $ac_cv_lib_gpm_Gpm_Open" >&5
22308 echo "$as_me:22309: result: $ac_cv_lib_gpm_Gpm_Open" >&5
2231222309 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
2231322310 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
22314 echo "$as_me:22315: checking for initscr in -lgpm" >&5
22311 echo "$as_me:22312: checking for initscr in -lgpm" >&5
2231522312 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
2231622313 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
2231722314 echo $ECHO_N "(cached) $ECHO_C" >&6
2231922316 ac_check_lib_save_LIBS=$LIBS
2232022317 LIBS="-lgpm $LIBS"
2232122318 cat >conftest.$ac_ext <<_ACEOF
22322 #line 22323 "configure"
22319 #line 22320 "configure"
2232322320 #include "confdefs.h"
2232422321
2232522322 /* Override any gcc2 internal prototype to avoid an error. */
2233822335 }
2233922336 _ACEOF
2234022337 rm -f conftest.$ac_objext conftest$ac_exeext
22341 if { (eval echo "$as_me:22342: \"$ac_link\"") >&5
22338 if { (eval echo "$as_me:22339: \"$ac_link\"") >&5
2234222339 (eval $ac_link) 2>&5
2234322340 ac_status=$?
22344 echo "$as_me:22345: \$? = $ac_status" >&5
22341 echo "$as_me:22342: \$? = $ac_status" >&5
2234522342 (exit $ac_status); } &&
2234622343 { ac_try='test -s conftest$ac_exeext'
22347 { (eval echo "$as_me:22348: \"$ac_try\"") >&5
22344 { (eval echo "$as_me:22345: \"$ac_try\"") >&5
2234822345 (eval $ac_try) 2>&5
2234922346 ac_status=$?
22350 echo "$as_me:22351: \$? = $ac_status" >&5
22347 echo "$as_me:22348: \$? = $ac_status" >&5
2235122348 (exit $ac_status); }; }; then
2235222349 ac_cv_lib_gpm_initscr=yes
2235322350 else
2235822355 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2235922356 LIBS=$ac_check_lib_save_LIBS
2236022357 fi
22361 echo "$as_me:22362: result: $ac_cv_lib_gpm_initscr" >&5
22358 echo "$as_me:22359: result: $ac_cv_lib_gpm_initscr" >&5
2236222359 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
2236322360 if test $ac_cv_lib_gpm_initscr = yes; then
2236422361 LIBS="$cf_ncurses_SAVE"
2237322370 # This is only necessary if you are linking against an obsolete
2237422371 # version of ncurses (but it should do no harm, since it's static).
2237522372 if test "$cf_nculib_root" = ncurses ; then
22376 echo "$as_me:22377: checking for tgoto in -lmytinfo" >&5
22373 echo "$as_me:22374: checking for tgoto in -lmytinfo" >&5
2237722374 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
2237822375 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
2237922376 echo $ECHO_N "(cached) $ECHO_C" >&6
2238122378 ac_check_lib_save_LIBS=$LIBS
2238222379 LIBS="-lmytinfo $LIBS"
2238322380 cat >conftest.$ac_ext <<_ACEOF
22384 #line 22385 "configure"
22381 #line 22382 "configure"
2238522382 #include "confdefs.h"
2238622383
2238722384 /* Override any gcc2 internal prototype to avoid an error. */
2240022397 }
2240122398 _ACEOF
2240222399 rm -f conftest.$ac_objext conftest$ac_exeext
22403 if { (eval echo "$as_me:22404: \"$ac_link\"") >&5
22400 if { (eval echo "$as_me:22401: \"$ac_link\"") >&5
2240422401 (eval $ac_link) 2>&5
2240522402 ac_status=$?
22406 echo "$as_me:22407: \$? = $ac_status" >&5
22403 echo "$as_me:22404: \$? = $ac_status" >&5
2240722404 (exit $ac_status); } &&
2240822405 { ac_try='test -s conftest$ac_exeext'
22409 { (eval echo "$as_me:22410: \"$ac_try\"") >&5
22406 { (eval echo "$as_me:22407: \"$ac_try\"") >&5
2241022407 (eval $ac_try) 2>&5
2241122408 ac_status=$?
22412 echo "$as_me:22413: \$? = $ac_status" >&5
22409 echo "$as_me:22410: \$? = $ac_status" >&5
2241322410 (exit $ac_status); }; }; then
2241422411 ac_cv_lib_mytinfo_tgoto=yes
2241522412 else
2242022417 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2242122418 LIBS=$ac_check_lib_save_LIBS
2242222419 fi
22423 echo "$as_me:22424: result: $ac_cv_lib_mytinfo_tgoto" >&5
22420 echo "$as_me:22421: result: $ac_cv_lib_mytinfo_tgoto" >&5
2242422421 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
2242522422 if test $ac_cv_lib_mytinfo_tgoto = yes; then
2242622423 cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
2243922436
2244022437 eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
2244122438 cf_libdir=""
22442 echo "$as_me:22443: checking for initscr" >&5
22439 echo "$as_me:22440: checking for initscr" >&5
2244322440 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
2244422441 if test "${ac_cv_func_initscr+set}" = set; then
2244522442 echo $ECHO_N "(cached) $ECHO_C" >&6
2244622443 else
2244722444 cat >conftest.$ac_ext <<_ACEOF
22448 #line 22449 "configure"
22445 #line 22446 "configure"
2244922446 #include "confdefs.h"
2245022447 /* System header to define __stub macros and hopefully few prototypes,
2245122448 which can conflict with char initscr (); below. */
2247622473 }
2247722474 _ACEOF
2247822475 rm -f conftest.$ac_objext conftest$ac_exeext
22479 if { (eval echo "$as_me:22480: \"$ac_link\"") >&5
22476 if { (eval echo "$as_me:22477: \"$ac_link\"") >&5
2248022477 (eval $ac_link) 2>&5
2248122478 ac_status=$?
22482 echo "$as_me:22483: \$? = $ac_status" >&5
22479 echo "$as_me:22480: \$? = $ac_status" >&5
2248322480 (exit $ac_status); } &&
2248422481 { ac_try='test -s conftest$ac_exeext'
22485 { (eval echo "$as_me:22486: \"$ac_try\"") >&5
22482 { (eval echo "$as_me:22483: \"$ac_try\"") >&5
2248622483 (eval $ac_try) 2>&5
2248722484 ac_status=$?
22488 echo "$as_me:22489: \$? = $ac_status" >&5
22485 echo "$as_me:22486: \$? = $ac_status" >&5
2248922486 (exit $ac_status); }; }; then
2249022487 ac_cv_func_initscr=yes
2249122488 else
2249522492 fi
2249622493 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2249722494 fi
22498 echo "$as_me:22499: result: $ac_cv_func_initscr" >&5
22495 echo "$as_me:22496: result: $ac_cv_func_initscr" >&5
2249922496 echo "${ECHO_T}$ac_cv_func_initscr" >&6
2250022497 if test $ac_cv_func_initscr = yes; then
2250122498 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
2250222499 else
2250322500
2250422501 cf_save_LIBS="$LIBS"
22505 echo "$as_me:22506: checking for initscr in -l$cf_nculib_root" >&5
22502 echo "$as_me:22503: checking for initscr in -l$cf_nculib_root" >&5
2250622503 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
2250722504 LIBS="-l$cf_nculib_root $LIBS"
2250822505 cat >conftest.$ac_ext <<_ACEOF
22509 #line 22510 "configure"
22506 #line 22507 "configure"
2251022507 #include "confdefs.h"
2251122508 #include <${cf_cv_ncurses_header:-curses.h}>
2251222509 int
2251822515 }
2251922516 _ACEOF
2252022517 rm -f conftest.$ac_objext conftest$ac_exeext
22521 if { (eval echo "$as_me:22522: \"$ac_link\"") >&5
22518 if { (eval echo "$as_me:22519: \"$ac_link\"") >&5
2252222519 (eval $ac_link) 2>&5
2252322520 ac_status=$?
22524 echo "$as_me:22525: \$? = $ac_status" >&5
22521 echo "$as_me:22522: \$? = $ac_status" >&5
2252522522 (exit $ac_status); } &&
2252622523 { ac_try='test -s conftest$ac_exeext'
22527 { (eval echo "$as_me:22528: \"$ac_try\"") >&5
22524 { (eval echo "$as_me:22525: \"$ac_try\"") >&5
2252822525 (eval $ac_try) 2>&5
2252922526 ac_status=$?
22530 echo "$as_me:22531: \$? = $ac_status" >&5
22527 echo "$as_me:22528: \$? = $ac_status" >&5
2253122528 (exit $ac_status); }; }; then
22532 echo "$as_me:22533: result: yes" >&5
22529 echo "$as_me:22530: result: yes" >&5
2253322530 echo "${ECHO_T}yes" >&6
2253422531 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
2253522532
2253622533 else
2253722534 echo "$as_me: failed program was:" >&5
2253822535 cat conftest.$ac_ext >&5
22539 echo "$as_me:22540: result: no" >&5
22536 echo "$as_me:22537: result: no" >&5
2254022537 echo "${ECHO_T}no" >&6
2254122538
2254222539 cf_search=
2262622623
2262722624 for cf_libdir in $cf_search
2262822625 do
22629 echo "$as_me:22630: checking for -l$cf_nculib_root in $cf_libdir" >&5
22626 echo "$as_me:22627: checking for -l$cf_nculib_root in $cf_libdir" >&5
2263022627 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
2263122628 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
2263222629 cat >conftest.$ac_ext <<_ACEOF
22633 #line 22634 "configure"
22630 #line 22631 "configure"
2263422631 #include "confdefs.h"
2263522632 #include <${cf_cv_ncurses_header:-curses.h}>
2263622633 int
2264222639 }
2264322640 _ACEOF
2264422641 rm -f conftest.$ac_objext conftest$ac_exeext
22645 if { (eval echo "$as_me:22646: \"$ac_link\"") >&5
22642 if { (eval echo "$as_me:22643: \"$ac_link\"") >&5
2264622643 (eval $ac_link) 2>&5
2264722644 ac_status=$?
22648 echo "$as_me:22649: \$? = $ac_status" >&5
22645 echo "$as_me:22646: \$? = $ac_status" >&5
2264922646 (exit $ac_status); } &&
2265022647 { ac_try='test -s conftest$ac_exeext'
22651 { (eval echo "$as_me:22652: \"$ac_try\"") >&5
22648 { (eval echo "$as_me:22649: \"$ac_try\"") >&5
2265222649 (eval $ac_try) 2>&5
2265322650 ac_status=$?
22654 echo "$as_me:22655: \$? = $ac_status" >&5
22651 echo "$as_me:22652: \$? = $ac_status" >&5
2265522652 (exit $ac_status); }; }; then
22656 echo "$as_me:22657: result: yes" >&5
22653 echo "$as_me:22654: result: yes" >&5
2265722654 echo "${ECHO_T}yes" >&6
2265822655 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
2265922656 break
2266022657 else
2266122658 echo "$as_me: failed program was:" >&5
2266222659 cat conftest.$ac_ext >&5
22663 echo "$as_me:22664: result: no" >&5
22660 echo "$as_me:22661: result: no" >&5
2266422661 echo "${ECHO_T}no" >&6
2266522662 LIBS="$cf_save_LIBS"
2266622663 fi
2267522672 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
2267622673
2267722674 if test $cf_found_library = no ; then
22678 { { echo "$as_me:22679: error: Cannot link $cf_nculib_root library" >&5
22675 { { echo "$as_me:22676: error: Cannot link $cf_nculib_root library" >&5
2267922676 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
2268022677 { (exit 1); exit 1; }; }
2268122678 fi
2268322680 fi
2268422681
2268522682 if test -n "$cf_ncurses_LIBS" ; then
22686 echo "$as_me:22687: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
22683 echo "$as_me:22684: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
2268722684 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
2268822685 cf_ncurses_SAVE="$LIBS"
2268922686 for p in $cf_ncurses_LIBS ; do
2269322690 fi
2269422691 done
2269522692 cat >conftest.$ac_ext <<_ACEOF
22696 #line 22697 "configure"
22693 #line 22694 "configure"
2269722694 #include "confdefs.h"
2269822695 #include <${cf_cv_ncurses_header:-curses.h}>
2269922696 int
2270522702 }
2270622703 _ACEOF
2270722704 rm -f conftest.$ac_objext conftest$ac_exeext
22708 if { (eval echo "$as_me:22709: \"$ac_link\"") >&5
22705 if { (eval echo "$as_me:22706: \"$ac_link\"") >&5
2270922706 (eval $ac_link) 2>&5
2271022707 ac_status=$?
22711 echo "$as_me:22712: \$? = $ac_status" >&5
22708 echo "$as_me:22709: \$? = $ac_status" >&5
2271222709 (exit $ac_status); } &&
2271322710 { ac_try='test -s conftest$ac_exeext'
22714 { (eval echo "$as_me:22715: \"$ac_try\"") >&5
22711 { (eval echo "$as_me:22712: \"$ac_try\"") >&5
2271522712 (eval $ac_try) 2>&5
2271622713 ac_status=$?
22717 echo "$as_me:22718: \$? = $ac_status" >&5
22714 echo "$as_me:22715: \$? = $ac_status" >&5
2271822715 (exit $ac_status); }; }; then
22719 echo "$as_me:22720: result: yes" >&5
22716 echo "$as_me:22717: result: yes" >&5
2272022717 echo "${ECHO_T}yes" >&6
2272122718 else
2272222719 echo "$as_me: failed program was:" >&5
2272322720 cat conftest.$ac_ext >&5
22724 echo "$as_me:22725: result: no" >&5
22721 echo "$as_me:22722: result: no" >&5
2272522722 echo "${ECHO_T}no" >&6
2272622723 LIBS="$cf_ncurses_SAVE"
2272722724 fi
2275122748 ;;
2275222749 slang)
2275322750
22754 echo "$as_me:22755: checking for slang header file" >&5
22751 echo "$as_me:22752: checking for slang header file" >&5
2275522752 echo $ECHO_N "checking for slang header file... $ECHO_C" >&6
2275622753 if test "${cf_cv_slang_header+set}" = set; then
2275722754 echo $ECHO_N "(cached) $ECHO_C" >&6
2275922756
2276022757 cf_cv_slang_header=no
2276122758 cat >conftest.$ac_ext <<_ACEOF
22762 #line 22763 "configure"
22759 #line 22760 "configure"
2276322760 #include "confdefs.h"
2276422761 #include <slang.h>
2276522762 int
2277122768 }
2277222769 _ACEOF
2277322770 rm -f conftest.$ac_objext
22774 if { (eval echo "$as_me:22775: \"$ac_compile\"") >&5
22771 if { (eval echo "$as_me:22772: \"$ac_compile\"") >&5
2277522772 (eval $ac_compile) 2>&5
2277622773 ac_status=$?
22777 echo "$as_me:22778: \$? = $ac_status" >&5
22774 echo "$as_me:22775: \$? = $ac_status" >&5
2277822775 (exit $ac_status); } &&
2277922776 { ac_try='test -s conftest.$ac_objext'
22780 { (eval echo "$as_me:22781: \"$ac_try\"") >&5
22777 { (eval echo "$as_me:22778: \"$ac_try\"") >&5
2278122778 (eval $ac_try) 2>&5
2278222779 ac_status=$?
22783 echo "$as_me:22784: \$? = $ac_status" >&5
22780 echo "$as_me:22781: \$? = $ac_status" >&5
2278422781 (exit $ac_status); }; }; then
2278522782 cf_cv_slang_header=predefined
2278622783 else
2290722904 fi
2290822905 rm -f conftest.$ac_objext conftest.$ac_ext
2290922906 fi
22910 echo "$as_me:22911: result: $cf_cv_slang_header" >&5
22907 echo "$as_me:22908: result: $cf_cv_slang_header" >&5
2291122908 echo "${ECHO_T}$cf_cv_slang_header" >&6
2291222909
2291322910 if test "x$cf_cv_slang_header" != xno
2294822945 cf_save_CPPFLAGS=$CPPFLAGS
2294922946 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2295022947 cat >conftest.$ac_ext <<_ACEOF
22951 #line 22952 "configure"
22948 #line 22949 "configure"
2295222949 #include "confdefs.h"
2295322950 #include <stdio.h>
2295422951 int
2296022957 }
2296122958 _ACEOF
2296222959 rm -f conftest.$ac_objext
22963 if { (eval echo "$as_me:22964: \"$ac_compile\"") >&5
22960 if { (eval echo "$as_me:22961: \"$ac_compile\"") >&5
2296422961 (eval $ac_compile) 2>&5
2296522962 ac_status=$?
22966 echo "$as_me:22967: \$? = $ac_status" >&5
22963 echo "$as_me:22964: \$? = $ac_status" >&5
2296722964 (exit $ac_status); } &&
2296822965 { ac_try='test -s conftest.$ac_objext'
22969 { (eval echo "$as_me:22970: \"$ac_try\"") >&5
22966 { (eval echo "$as_me:22967: \"$ac_try\"") >&5
2297022967 (eval $ac_try) 2>&5
2297122968 ac_status=$?
22972 echo "$as_me:22973: \$? = $ac_status" >&5
22969 echo "$as_me:22970: \$? = $ac_status" >&5
2297322970 (exit $ac_status); }; }; then
2297422971 :
2297522972 else
2298622983 if test "$cf_have_incdir" = no ; then
2298722984 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
2298822985
22989 echo "${as_me:-configure}:22990: testing adding $cf_add_incdir to include-path ..." 1>&5
22986 echo "${as_me:-configure}:22987: testing adding $cf_add_incdir to include-path ..." 1>&5
2299022987
2299122988 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2299222989
2301623013
2301723014 cf_cv_termlib=none
2301823015 cat >conftest.$ac_ext <<_ACEOF
23019 #line 23020 "configure"
23016 #line 23017 "configure"
2302023017 #include "confdefs.h"
2302123018
2302223019 int
2302823025 }
2302923026 _ACEOF
2303023027 rm -f conftest.$ac_objext conftest$ac_exeext
23031 if { (eval echo "$as_me:23032: \"$ac_link\"") >&5
23028 if { (eval echo "$as_me:23029: \"$ac_link\"") >&5
2303223029 (eval $ac_link) 2>&5
2303323030 ac_status=$?
23034 echo "$as_me:23035: \$? = $ac_status" >&5
23031 echo "$as_me:23032: \$? = $ac_status" >&5
2303523032 (exit $ac_status); } &&
2303623033 { ac_try='test -s conftest$ac_exeext'
23037 { (eval echo "$as_me:23038: \"$ac_try\"") >&5
23034 { (eval echo "$as_me:23035: \"$ac_try\"") >&5
2303823035 (eval $ac_try) 2>&5
2303923036 ac_status=$?
23040 echo "$as_me:23041: \$? = $ac_status" >&5
23037 echo "$as_me:23038: \$? = $ac_status" >&5
2304123038 (exit $ac_status); }; }; then
2304223039 cat >conftest.$ac_ext <<_ACEOF
23043 #line 23044 "configure"
23040 #line 23041 "configure"
2304423041 #include "confdefs.h"
2304523042
2304623043 int
2305223049 }
2305323050 _ACEOF
2305423051 rm -f conftest.$ac_objext conftest$ac_exeext
23055 if { (eval echo "$as_me:23056: \"$ac_link\"") >&5
23052 if { (eval echo "$as_me:23053: \"$ac_link\"") >&5
2305623053 (eval $ac_link) 2>&5
2305723054 ac_status=$?
23058 echo "$as_me:23059: \$? = $ac_status" >&5
23055 echo "$as_me:23056: \$? = $ac_status" >&5
2305923056 (exit $ac_status); } &&
2306023057 { ac_try='test -s conftest$ac_exeext'
23061 { (eval echo "$as_me:23062: \"$ac_try\"") >&5
23058 { (eval echo "$as_me:23059: \"$ac_try\"") >&5
2306223059 (eval $ac_try) 2>&5
2306323060 ac_status=$?
23064 echo "$as_me:23065: \$? = $ac_status" >&5
23061 echo "$as_me:23062: \$? = $ac_status" >&5
2306523062 (exit $ac_status); }; }; then
2306623063 cf_cv_termlib=terminfo
2306723064 else
2307223069 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2307323070 test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6
2307423071
23075 echo "${as_me:-configure}:23076: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5
23072 echo "${as_me:-configure}:23073: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5
2307623073
2307723074 else
2307823075 echo "$as_me: failed program was:" >&5
2308723084 LIBS="-l$cf_lib $cf_save_LIBS"
2308823085 for cf_func in tigetstr tgetstr
2308923086 do
23090 echo "$as_me:23091: checking for $cf_func in -l$cf_lib" >&5
23087 echo "$as_me:23088: checking for $cf_func in -l$cf_lib" >&5
2309123088 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6
2309223089 cat >conftest.$ac_ext <<_ACEOF
23093 #line 23094 "configure"
23090 #line 23091 "configure"
2309423091 #include "confdefs.h"
2309523092
2309623093 int
2310223099 }
2310323100 _ACEOF
2310423101 rm -f conftest.$ac_objext conftest$ac_exeext
23105 if { (eval echo "$as_me:23106: \"$ac_link\"") >&5
23102 if { (eval echo "$as_me:23103: \"$ac_link\"") >&5
2310623103 (eval $ac_link) 2>&5
2310723104 ac_status=$?
23108 echo "$as_me:23109: \$? = $ac_status" >&5
23105 echo "$as_me:23106: \$? = $ac_status" >&5
2310923106 (exit $ac_status); } &&
2311023107 { ac_try='test -s conftest$ac_exeext'
23111 { (eval echo "$as_me:23112: \"$ac_try\"") >&5
23108 { (eval echo "$as_me:23109: \"$ac_try\"") >&5
2311223109 (eval $ac_try) 2>&5
2311323110 ac_status=$?
23114 echo "$as_me:23115: \$? = $ac_status" >&5
23111 echo "$as_me:23112: \$? = $ac_status" >&5
2311523112 (exit $ac_status); }; }; then
2311623113 cf_result=yes
2311723114 else
2312023117 cf_result=no
2312123118 fi
2312223119 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23123 echo "$as_me:23124: result: $cf_result" >&5
23120 echo "$as_me:23121: result: $cf_result" >&5
2312423121 echo "${ECHO_T}$cf_result" >&6
2312523122 if test "$cf_result" = yes ; then
2312623123 if test "$cf_func" = tigetstr ; then
2313723134 fi
2313823135 if test "$cf_cv_termlib" = none; then
2313923136 # allow curses library for broken AIX system.
23140 echo "$as_me:23141: checking for initscr in -lcurses" >&5
23137 echo "$as_me:23138: checking for initscr in -lcurses" >&5
2314123138 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6
2314223139 if test "${ac_cv_lib_curses_initscr+set}" = set; then
2314323140 echo $ECHO_N "(cached) $ECHO_C" >&6
2314523142 ac_check_lib_save_LIBS=$LIBS
2314623143 LIBS="-lcurses $LIBS"
2314723144 cat >conftest.$ac_ext <<_ACEOF
23148 #line 23149 "configure"
23145 #line 23146 "configure"
2314923146 #include "confdefs.h"
2315023147
2315123148 /* Override any gcc2 internal prototype to avoid an error. */
2316423161 }
2316523162 _ACEOF
2316623163 rm -f conftest.$ac_objext conftest$ac_exeext
23167 if { (eval echo "$as_me:23168: \"$ac_link\"") >&5
23164 if { (eval echo "$as_me:23165: \"$ac_link\"") >&5
2316823165 (eval $ac_link) 2>&5
2316923166 ac_status=$?
23170 echo "$as_me:23171: \$? = $ac_status" >&5
23167 echo "$as_me:23168: \$? = $ac_status" >&5
2317123168 (exit $ac_status); } &&
2317223169 { ac_try='test -s conftest$ac_exeext'
23173 { (eval echo "$as_me:23174: \"$ac_try\"") >&5
23170 { (eval echo "$as_me:23171: \"$ac_try\"") >&5
2317423171 (eval $ac_try) 2>&5
2317523172 ac_status=$?
23176 echo "$as_me:23177: \$? = $ac_status" >&5
23173 echo "$as_me:23174: \$? = $ac_status" >&5
2317723174 (exit $ac_status); }; }; then
2317823175 ac_cv_lib_curses_initscr=yes
2317923176 else
2318423181 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2318523182 LIBS=$ac_check_lib_save_LIBS
2318623183 fi
23187 echo "$as_me:23188: result: $ac_cv_lib_curses_initscr" >&5
23184 echo "$as_me:23185: result: $ac_cv_lib_curses_initscr" >&5
2318823185 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6
2318923186 if test $ac_cv_lib_curses_initscr = yes; then
2319023187 LIBS="-lcurses $LIBS"
2319123188 fi
2319223189
23193 echo "$as_me:23194: checking for tgoto in -ltermcap" >&5
23190 echo "$as_me:23191: checking for tgoto in -ltermcap" >&5
2319423191 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6
2319523192 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then
2319623193 echo $ECHO_N "(cached) $ECHO_C" >&6
2319823195 ac_check_lib_save_LIBS=$LIBS
2319923196 LIBS="-ltermcap $LIBS"
2320023197 cat >conftest.$ac_ext <<_ACEOF
23201 #line 23202 "configure"
23198 #line 23199 "configure"
2320223199 #include "confdefs.h"
2320323200
2320423201 /* Override any gcc2 internal prototype to avoid an error. */
2321723214 }
2321823215 _ACEOF
2321923216 rm -f conftest.$ac_objext conftest$ac_exeext
23220 if { (eval echo "$as_me:23221: \"$ac_link\"") >&5
23217 if { (eval echo "$as_me:23218: \"$ac_link\"") >&5
2322123218 (eval $ac_link) 2>&5
2322223219 ac_status=$?
23223 echo "$as_me:23224: \$? = $ac_status" >&5
23220 echo "$as_me:23221: \$? = $ac_status" >&5
2322423221 (exit $ac_status); } &&
2322523222 { ac_try='test -s conftest$ac_exeext'
23226 { (eval echo "$as_me:23227: \"$ac_try\"") >&5
23223 { (eval echo "$as_me:23224: \"$ac_try\"") >&5
2322723224 (eval $ac_try) 2>&5
2322823225 ac_status=$?
23229 echo "$as_me:23230: \$? = $ac_status" >&5
23226 echo "$as_me:23227: \$? = $ac_status" >&5
2323023227 (exit $ac_status); }; }; then
2323123228 ac_cv_lib_termcap_tgoto=yes
2323223229 else
2323723234 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2323823235 LIBS=$ac_check_lib_save_LIBS
2323923236 fi
23240 echo "$as_me:23241: result: $ac_cv_lib_termcap_tgoto" >&5
23237 echo "$as_me:23238: result: $ac_cv_lib_termcap_tgoto" >&5
2324123238 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6
2324223239 if test $ac_cv_lib_termcap_tgoto = yes; then
2324323240 LIBS="-ltermcap $LIBS" cf_cv_termlib=termcap
2324823245 fi
2324923246 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2325023247 if test "$cf_cv_termlib" = none; then
23251 { echo "$as_me:23252: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
23248 { echo "$as_me:23249: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
2325223249 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;}
2325323250 fi
2325423251
2325523252 fi
2325623253
2325723254 cf_slang_LIBS2="$LIBS"
23258 echo "$as_me:23259: checking for acos" >&5
23255 echo "$as_me:23256: checking for acos" >&5
2325923256 echo $ECHO_N "checking for acos... $ECHO_C" >&6
2326023257 if test "${ac_cv_func_acos+set}" = set; then
2326123258 echo $ECHO_N "(cached) $ECHO_C" >&6
2326223259 else
2326323260 cat >conftest.$ac_ext <<_ACEOF
23264 #line 23265 "configure"
23261 #line 23262 "configure"
2326523262 #include "confdefs.h"
2326623263 /* System header to define __stub macros and hopefully few prototypes,
2326723264 which can conflict with char acos (); below. */
2329223289 }
2329323290 _ACEOF
2329423291 rm -f conftest.$ac_objext conftest$ac_exeext
23295 if { (eval echo "$as_me:23296: \"$ac_link\"") >&5
23292 if { (eval echo "$as_me:23293: \"$ac_link\"") >&5
2329623293 (eval $ac_link) 2>&5
2329723294 ac_status=$?
23298 echo "$as_me:23299: \$? = $ac_status" >&5
23295 echo "$as_me:23296: \$? = $ac_status" >&5
2329923296 (exit $ac_status); } &&
2330023297 { ac_try='test -s conftest$ac_exeext'
23301 { (eval echo "$as_me:23302: \"$ac_try\"") >&5
23298 { (eval echo "$as_me:23299: \"$ac_try\"") >&5
2330223299 (eval $ac_try) 2>&5
2330323300 ac_status=$?
23304 echo "$as_me:23305: \$? = $ac_status" >&5
23301 echo "$as_me:23302: \$? = $ac_status" >&5
2330523302 (exit $ac_status); }; }; then
2330623303 ac_cv_func_acos=yes
2330723304 else
2331123308 fi
2331223309 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2331323310 fi
23314 echo "$as_me:23315: result: $ac_cv_func_acos" >&5
23311 echo "$as_me:23312: result: $ac_cv_func_acos" >&5
2331523312 echo "${ECHO_T}$ac_cv_func_acos" >&6
2331623313 if test $ac_cv_func_acos = yes; then
2331723314 :
2331823315 else
2331923316
23320 echo "$as_me:23321: checking for acos in -lm" >&5
23317 echo "$as_me:23318: checking for acos in -lm" >&5
2332123318 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6
2332223319 if test "${ac_cv_lib_m_acos+set}" = set; then
2332323320 echo $ECHO_N "(cached) $ECHO_C" >&6
2332523322 ac_check_lib_save_LIBS=$LIBS
2332623323 LIBS="-lm $LIBS $LIBS"
2332723324 cat >conftest.$ac_ext <<_ACEOF
23328 #line 23329 "configure"
23325 #line 23326 "configure"
2332923326 #include "confdefs.h"
2333023327
2333123328 /* Override any gcc2 internal prototype to avoid an error. */
2334423341 }
2334523342 _ACEOF
2334623343 rm -f conftest.$ac_objext conftest$ac_exeext
23347 if { (eval echo "$as_me:23348: \"$ac_link\"") >&5
23344 if { (eval echo "$as_me:23345: \"$ac_link\"") >&5
2334823345 (eval $ac_link) 2>&5
2334923346 ac_status=$?
23350 echo "$as_me:23351: \$? = $ac_status" >&5
23347 echo "$as_me:23348: \$? = $ac_status" >&5
2335123348 (exit $ac_status); } &&
2335223349 { ac_try='test -s conftest$ac_exeext'
23353 { (eval echo "$as_me:23354: \"$ac_try\"") >&5
23350 { (eval echo "$as_me:23351: \"$ac_try\"") >&5
2335423351 (eval $ac_try) 2>&5
2335523352 ac_status=$?
23356 echo "$as_me:23357: \$? = $ac_status" >&5
23353 echo "$as_me:23354: \$? = $ac_status" >&5
2335723354 (exit $ac_status); }; }; then
2335823355 ac_cv_lib_m_acos=yes
2335923356 else
2336423361 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2336523362 LIBS=$ac_check_lib_save_LIBS
2336623363 fi
23367 echo "$as_me:23368: result: $ac_cv_lib_m_acos" >&5
23364 echo "$as_me:23365: result: $ac_cv_lib_m_acos" >&5
2336823365 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6
2336923366 if test $ac_cv_lib_m_acos = yes; then
2337023367
2339023387
2339123388 eval 'cf_cv_have_lib_'video'=no'
2339223389 cf_libdir=""
23393 echo "$as_me:23394: checking for v_init" >&5
23390 echo "$as_me:23391: checking for v_init" >&5
2339423391 echo $ECHO_N "checking for v_init... $ECHO_C" >&6
2339523392 if test "${ac_cv_func_v_init+set}" = set; then
2339623393 echo $ECHO_N "(cached) $ECHO_C" >&6
2339723394 else
2339823395 cat >conftest.$ac_ext <<_ACEOF
23399 #line 23400 "configure"
23396 #line 23397 "configure"
2340023397 #include "confdefs.h"
2340123398 /* System header to define __stub macros and hopefully few prototypes,
2340223399 which can conflict with char v_init (); below. */
2342723424 }
2342823425 _ACEOF
2342923426 rm -f conftest.$ac_objext conftest$ac_exeext
23430 if { (eval echo "$as_me:23431: \"$ac_link\"") >&5
23427 if { (eval echo "$as_me:23428: \"$ac_link\"") >&5
2343123428 (eval $ac_link) 2>&5
2343223429 ac_status=$?
23433 echo "$as_me:23434: \$? = $ac_status" >&5
23430 echo "$as_me:23431: \$? = $ac_status" >&5
2343423431 (exit $ac_status); } &&
2343523432 { ac_try='test -s conftest$ac_exeext'
23436 { (eval echo "$as_me:23437: \"$ac_try\"") >&5
23433 { (eval echo "$as_me:23434: \"$ac_try\"") >&5
2343723434 (eval $ac_try) 2>&5
2343823435 ac_status=$?
23439 echo "$as_me:23440: \$? = $ac_status" >&5
23436 echo "$as_me:23437: \$? = $ac_status" >&5
2344023437 (exit $ac_status); }; }; then
2344123438 ac_cv_func_v_init=yes
2344223439 else
2344623443 fi
2344723444 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2344823445 fi
23449 echo "$as_me:23450: result: $ac_cv_func_v_init" >&5
23446 echo "$as_me:23447: result: $ac_cv_func_v_init" >&5
2345023447 echo "${ECHO_T}$ac_cv_func_v_init" >&6
2345123448 if test $ac_cv_func_v_init = yes; then
2345223449 eval 'cf_cv_have_lib_'video'=yes'
2345323450 else
2345423451
2345523452 cf_save_LIBS="$LIBS"
23456 echo "$as_me:23457: checking for v_init in -lvideo" >&5
23453 echo "$as_me:23454: checking for v_init in -lvideo" >&5
2345723454 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6
2345823455 LIBS="-lvideo $LIBS"
2345923456 cat >conftest.$ac_ext <<_ACEOF
23460 #line 23461 "configure"
23457 #line 23458 "configure"
2346123458 #include "confdefs.h"
2346223459 #include <sys/video.h>
2346323460 int
2346923466 }
2347023467 _ACEOF
2347123468 rm -f conftest.$ac_objext conftest$ac_exeext
23472 if { (eval echo "$as_me:23473: \"$ac_link\"") >&5
23469 if { (eval echo "$as_me:23470: \"$ac_link\"") >&5
2347323470 (eval $ac_link) 2>&5
2347423471 ac_status=$?
23475 echo "$as_me:23476: \$? = $ac_status" >&5
23472 echo "$as_me:23473: \$? = $ac_status" >&5
2347623473 (exit $ac_status); } &&
2347723474 { ac_try='test -s conftest$ac_exeext'
23478 { (eval echo "$as_me:23479: \"$ac_try\"") >&5
23475 { (eval echo "$as_me:23476: \"$ac_try\"") >&5
2347923476 (eval $ac_try) 2>&5
2348023477 ac_status=$?
23481 echo "$as_me:23482: \$? = $ac_status" >&5
23478 echo "$as_me:23479: \$? = $ac_status" >&5
2348223479 (exit $ac_status); }; }; then
23483 echo "$as_me:23484: result: yes" >&5
23480 echo "$as_me:23481: result: yes" >&5
2348423481 echo "${ECHO_T}yes" >&6
2348523482 eval 'cf_cv_have_lib_'video'=yes'
2348623483
2348723484 else
2348823485 echo "$as_me: failed program was:" >&5
2348923486 cat conftest.$ac_ext >&5
23490 echo "$as_me:23491: result: no" >&5
23487 echo "$as_me:23488: result: no" >&5
2349123488 echo "${ECHO_T}no" >&6
2349223489
2349323490 cf_search=
2357723574
2357823575 for cf_libdir in $cf_search
2357923576 do
23580 echo "$as_me:23581: checking for -lvideo in $cf_libdir" >&5
23577 echo "$as_me:23578: checking for -lvideo in $cf_libdir" >&5
2358123578 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6
2358223579 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS"
2358323580 cat >conftest.$ac_ext <<_ACEOF
23584 #line 23585 "configure"
23581 #line 23582 "configure"
2358523582 #include "confdefs.h"
2358623583 #include <sys/video.h>
2358723584 int
2359323590 }
2359423591 _ACEOF
2359523592 rm -f conftest.$ac_objext conftest$ac_exeext
23596 if { (eval echo "$as_me:23597: \"$ac_link\"") >&5
23593 if { (eval echo "$as_me:23594: \"$ac_link\"") >&5
2359723594 (eval $ac_link) 2>&5
2359823595 ac_status=$?
23599 echo "$as_me:23600: \$? = $ac_status" >&5
23596 echo "$as_me:23597: \$? = $ac_status" >&5
2360023597 (exit $ac_status); } &&
2360123598 { ac_try='test -s conftest$ac_exeext'
23602 { (eval echo "$as_me:23603: \"$ac_try\"") >&5
23599 { (eval echo "$as_me:23600: \"$ac_try\"") >&5
2360323600 (eval $ac_try) 2>&5
2360423601 ac_status=$?
23605 echo "$as_me:23606: \$? = $ac_status" >&5
23602 echo "$as_me:23603: \$? = $ac_status" >&5
2360623603 (exit $ac_status); }; }; then
23607 echo "$as_me:23608: result: yes" >&5
23604 echo "$as_me:23605: result: yes" >&5
2360823605 echo "${ECHO_T}yes" >&6
2360923606 eval 'cf_cv_have_lib_'video'=yes'
2361023607 break
2361123608 else
2361223609 echo "$as_me: failed program was:" >&5
2361323610 cat conftest.$ac_ext >&5
23614 echo "$as_me:23615: result: no" >&5
23611 echo "$as_me:23612: result: no" >&5
2361523612 echo "${ECHO_T}no" >&6
2361623613 LIBS="$cf_save_LIBS"
2361723614 fi
2362623623 eval 'cf_found_library=$cf_cv_have_lib_'video
2362723624
2362823625 if test $cf_found_library = no ; then
23629 { { echo "$as_me:23630: error: Cannot link video library" >&5
23626 { { echo "$as_me:23627: error: Cannot link video library" >&5
2363023627 echo "$as_me: error: Cannot link video library" >&2;}
2363123628 { (exit 1); exit 1; }; }
2363223629 fi
2363623633
2363723634 eval 'cf_cv_have_lib_'slang'=no'
2363823635 cf_libdir=""
23639 echo "$as_me:23640: checking for SLtt_get_screen_size" >&5
23636 echo "$as_me:23637: checking for SLtt_get_screen_size" >&5
2364023637 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6
2364123638 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then
2364223639 echo $ECHO_N "(cached) $ECHO_C" >&6
2364323640 else
2364423641 cat >conftest.$ac_ext <<_ACEOF
23645 #line 23646 "configure"
23642 #line 23643 "configure"
2364623643 #include "confdefs.h"
2364723644 /* System header to define __stub macros and hopefully few prototypes,
2364823645 which can conflict with char SLtt_get_screen_size (); below. */
2367323670 }
2367423671 _ACEOF
2367523672 rm -f conftest.$ac_objext conftest$ac_exeext
23676 if { (eval echo "$as_me:23677: \"$ac_link\"") >&5
23673 if { (eval echo "$as_me:23674: \"$ac_link\"") >&5
2367723674 (eval $ac_link) 2>&5
2367823675 ac_status=$?
23679 echo "$as_me:23680: \$? = $ac_status" >&5
23676 echo "$as_me:23677: \$? = $ac_status" >&5
2368023677 (exit $ac_status); } &&
2368123678 { ac_try='test -s conftest$ac_exeext'
23682 { (eval echo "$as_me:23683: \"$ac_try\"") >&5
23679 { (eval echo "$as_me:23680: \"$ac_try\"") >&5
2368323680 (eval $ac_try) 2>&5
2368423681 ac_status=$?
23685 echo "$as_me:23686: \$? = $ac_status" >&5
23682 echo "$as_me:23683: \$? = $ac_status" >&5
2368623683 (exit $ac_status); }; }; then
2368723684 ac_cv_func_SLtt_get_screen_size=yes
2368823685 else
2369223689 fi
2369323690 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2369423691 fi
23695 echo "$as_me:23696: result: $ac_cv_func_SLtt_get_screen_size" >&5
23692 echo "$as_me:23693: result: $ac_cv_func_SLtt_get_screen_size" >&5
2369623693 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6
2369723694 if test $ac_cv_func_SLtt_get_screen_size = yes; then
2369823695 eval 'cf_cv_have_lib_'slang'=yes'
2369923696 else
2370023697
2370123698 cf_save_LIBS="$LIBS"
23702 echo "$as_me:23703: checking for SLtt_get_screen_size in -lslang" >&5
23699 echo "$as_me:23700: checking for SLtt_get_screen_size in -lslang" >&5
2370323700 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang... $ECHO_C" >&6
2370423701 LIBS="-lslang $LIBS"
2370523702 cat >conftest.$ac_ext <<_ACEOF
23706 #line 23707 "configure"
23703 #line 23704 "configure"
2370723704 #include "confdefs.h"
2370823705 #include <slang.h>
2370923706 int
2371523712 }
2371623713 _ACEOF
2371723714 rm -f conftest.$ac_objext conftest$ac_exeext
23718 if { (eval echo "$as_me:23719: \"$ac_link\"") >&5
23715 if { (eval echo "$as_me:23716: \"$ac_link\"") >&5
2371923716 (eval $ac_link) 2>&5
2372023717 ac_status=$?
23721 echo "$as_me:23722: \$? = $ac_status" >&5
23718 echo "$as_me:23719: \$? = $ac_status" >&5
2372223719 (exit $ac_status); } &&
2372323720 { ac_try='test -s conftest$ac_exeext'
23724 { (eval echo "$as_me:23725: \"$ac_try\"") >&5
23721 { (eval echo "$as_me:23722: \"$ac_try\"") >&5
2372523722 (eval $ac_try) 2>&5
2372623723 ac_status=$?
23727 echo "$as_me:23728: \$? = $ac_status" >&5
23724 echo "$as_me:23725: \$? = $ac_status" >&5
2372823725 (exit $ac_status); }; }; then
23729 echo "$as_me:23730: result: yes" >&5
23726 echo "$as_me:23727: result: yes" >&5
2373023727 echo "${ECHO_T}yes" >&6
2373123728 eval 'cf_cv_have_lib_'slang'=yes'
2373223729
2373323730 else
2373423731 echo "$as_me: failed program was:" >&5
2373523732 cat conftest.$ac_ext >&5
23736 echo "$as_me:23737: result: no" >&5
23733 echo "$as_me:23734: result: no" >&5
2373723734 echo "${ECHO_T}no" >&6
2373823735
2373923736 cf_search=
2382323820
2382423821 for cf_libdir in $cf_search
2382523822 do
23826 echo "$as_me:23827: checking for -lslang in $cf_libdir" >&5
23823 echo "$as_me:23824: checking for -lslang in $cf_libdir" >&5
2382723824 echo $ECHO_N "checking for -lslang in $cf_libdir... $ECHO_C" >&6
2382823825 LIBS="-L$cf_libdir -lslang $cf_save_LIBS"
2382923826 cat >conftest.$ac_ext <<_ACEOF
23830 #line 23831 "configure"
23827 #line 23828 "configure"
2383123828 #include "confdefs.h"
2383223829 #include <slang.h>
2383323830 int
2383923836 }
2384023837 _ACEOF
2384123838 rm -f conftest.$ac_objext conftest$ac_exeext
23842 if { (eval echo "$as_me:23843: \"$ac_link\"") >&5
23839 if { (eval echo "$as_me:23840: \"$ac_link\"") >&5
2384323840 (eval $ac_link) 2>&5
2384423841 ac_status=$?
23845 echo "$as_me:23846: \$? = $ac_status" >&5
23842 echo "$as_me:23843: \$? = $ac_status" >&5
2384623843 (exit $ac_status); } &&
2384723844 { ac_try='test -s conftest$ac_exeext'
23848 { (eval echo "$as_me:23849: \"$ac_try\"") >&5
23845 { (eval echo "$as_me:23846: \"$ac_try\"") >&5
2384923846 (eval $ac_try) 2>&5
2385023847 ac_status=$?
23851 echo "$as_me:23852: \$? = $ac_status" >&5
23848 echo "$as_me:23849: \$? = $ac_status" >&5
2385223849 (exit $ac_status); }; }; then
23853 echo "$as_me:23854: result: yes" >&5
23850 echo "$as_me:23851: result: yes" >&5
2385423851 echo "${ECHO_T}yes" >&6
2385523852 eval 'cf_cv_have_lib_'slang'=yes'
2385623853 break
2385723854 else
2385823855 echo "$as_me: failed program was:" >&5
2385923856 cat conftest.$ac_ext >&5
23860 echo "$as_me:23861: result: no" >&5
23857 echo "$as_me:23858: result: no" >&5
2386123858 echo "${ECHO_T}no" >&6
2386223859 LIBS="$cf_save_LIBS"
2386323860 fi
2387223869 eval 'cf_found_library=$cf_cv_have_lib_'slang
2387323870
2387423871 if test $cf_found_library = no ; then
23875 { { echo "$as_me:23876: error: Cannot link slang library" >&5
23872 { { echo "$as_me:23873: error: Cannot link slang library" >&5
2387623873 echo "$as_me: error: Cannot link slang library" >&2;}
2387723874 { (exit 1); exit 1; }; }
2387823875 fi
2387923876
2388023877 cf_slang_LIBS3="$LIBS"
23881 echo "$as_me:23882: checking if we can link slang without termcap" >&5
23878 echo "$as_me:23879: checking if we can link slang without termcap" >&5
2388223879 echo $ECHO_N "checking if we can link slang without termcap... $ECHO_C" >&6
2388323880 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then
2388423881 cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'`
2388723884 fi
2388823885 LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'`
2388923886 cat >conftest.$ac_ext <<_ACEOF
23890 #line 23891 "configure"
23887 #line 23888 "configure"
2389123888 #include "confdefs.h"
2389223889 #include <slang.h>
2389323890 int
2389923896 }
2390023897 _ACEOF
2390123898 rm -f conftest.$ac_objext conftest$ac_exeext
23902 if { (eval echo "$as_me:23903: \"$ac_link\"") >&5
23899 if { (eval echo "$as_me:23900: \"$ac_link\"") >&5
2390323900 (eval $ac_link) 2>&5
2390423901 ac_status=$?
23905 echo "$as_me:23906: \$? = $ac_status" >&5
23902 echo "$as_me:23903: \$? = $ac_status" >&5
2390623903 (exit $ac_status); } &&
2390723904 { ac_try='test -s conftest$ac_exeext'
23908 { (eval echo "$as_me:23909: \"$ac_try\"") >&5
23905 { (eval echo "$as_me:23906: \"$ac_try\"") >&5
2390923906 (eval $ac_try) 2>&5
2391023907 ac_status=$?
23911 echo "$as_me:23912: \$? = $ac_status" >&5
23908 echo "$as_me:23909: \$? = $ac_status" >&5
2391223909 (exit $ac_status); }; }; then
2391323910 cf_result=yes
2391423911 else
2391723914 cf_result=no
2391823915 fi
2391923916 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23920 echo "$as_me:23921: result: $cf_result" >&5
23917 echo "$as_me:23918: result: $cf_result" >&5
2392123918 echo "${ECHO_T}$cf_result" >&6
2392223919 test $cf_result = no && LIBS="$cf_slang_LIBS3"
2392323920
2392423921 else
2392523922
23926 echo "$as_me:23927: checking for slang2 header file" >&5
23923 echo "$as_me:23924: checking for slang2 header file" >&5
2392723924 echo $ECHO_N "checking for slang2 header file... $ECHO_C" >&6
2392823925 if test "${cf_cv_slang2_header+set}" = set; then
2392923926 echo $ECHO_N "(cached) $ECHO_C" >&6
2393123928
2393223929 cf_cv_slang2_header=no
2393323930 cat >conftest.$ac_ext <<_ACEOF
23934 #line 23935 "configure"
23931 #line 23932 "configure"
2393523932 #include "confdefs.h"
2393623933 #include <slang.h>
2393723934 int
2394323940 }
2394423941 _ACEOF
2394523942 rm -f conftest.$ac_objext
23946 if { (eval echo "$as_me:23947: \"$ac_compile\"") >&5
23943 if { (eval echo "$as_me:23944: \"$ac_compile\"") >&5
2394723944 (eval $ac_compile) 2>&5
2394823945 ac_status=$?
23949 echo "$as_me:23950: \$? = $ac_status" >&5
23946 echo "$as_me:23947: \$? = $ac_status" >&5
2395023947 (exit $ac_status); } &&
2395123948 { ac_try='test -s conftest.$ac_objext'
23952 { (eval echo "$as_me:23953: \"$ac_try\"") >&5
23949 { (eval echo "$as_me:23950: \"$ac_try\"") >&5
2395323950 (eval $ac_try) 2>&5
2395423951 ac_status=$?
23955 echo "$as_me:23956: \$? = $ac_status" >&5
23952 echo "$as_me:23953: \$? = $ac_status" >&5
2395623953 (exit $ac_status); }; }; then
2395723954 cf_cv_slang2_header=predefined
2395823955 else
2407924076 fi
2408024077 rm -f conftest.$ac_objext conftest.$ac_ext
2408124078 fi
24082 echo "$as_me:24083: result: $cf_cv_slang2_header" >&5
24079 echo "$as_me:24080: result: $cf_cv_slang2_header" >&5
2408324080 echo "${ECHO_T}$cf_cv_slang2_header" >&6
2408424081
2408524082 if test "x$cf_cv_slang2_header" != xno
2412024117 cf_save_CPPFLAGS=$CPPFLAGS
2412124118 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2412224119 cat >conftest.$ac_ext <<_ACEOF
24123 #line 24124 "configure"
24120 #line 24121 "configure"
2412424121 #include "confdefs.h"
2412524122 #include <stdio.h>
2412624123 int
2413224129 }
2413324130 _ACEOF
2413424131 rm -f conftest.$ac_objext
24135 if { (eval echo "$as_me:24136: \"$ac_compile\"") >&5
24132 if { (eval echo "$as_me:24133: \"$ac_compile\"") >&5
2413624133 (eval $ac_compile) 2>&5
2413724134 ac_status=$?
24138 echo "$as_me:24139: \$? = $ac_status" >&5
24135 echo "$as_me:24136: \$? = $ac_status" >&5
2413924136 (exit $ac_status); } &&
2414024137 { ac_try='test -s conftest.$ac_objext'
24141 { (eval echo "$as_me:24142: \"$ac_try\"") >&5
24138 { (eval echo "$as_me:24139: \"$ac_try\"") >&5
2414224139 (eval $ac_try) 2>&5
2414324140 ac_status=$?
24144 echo "$as_me:24145: \$? = $ac_status" >&5
24141 echo "$as_me:24142: \$? = $ac_status" >&5
2414524142 (exit $ac_status); }; }; then
2414624143 :
2414724144 else
2415824155 if test "$cf_have_incdir" = no ; then
2415924156 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
2416024157
24161 echo "${as_me:-configure}:24162: testing adding $cf_add_incdir to include-path ..." 1>&5
24158 echo "${as_me:-configure}:24159: testing adding $cf_add_incdir to include-path ..." 1>&5
2416224159
2416324160 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2416424161
2418824185
2418924186 cf_cv_termlib=none
2419024187 cat >conftest.$ac_ext <<_ACEOF
24191 #line 24192 "configure"
24188 #line 24189 "configure"
2419224189 #include "confdefs.h"
2419324190
2419424191 int
2420024197 }
2420124198 _ACEOF
2420224199 rm -f conftest.$ac_objext conftest$ac_exeext
24203 if { (eval echo "$as_me:24204: \"$ac_link\"") >&5
24200 if { (eval echo "$as_me:24201: \"$ac_link\"") >&5
2420424201 (eval $ac_link) 2>&5
2420524202 ac_status=$?
24206 echo "$as_me:24207: \$? = $ac_status" >&5
24203 echo "$as_me:24204: \$? = $ac_status" >&5
2420724204 (exit $ac_status); } &&
2420824205 { ac_try='test -s conftest$ac_exeext'
24209 { (eval echo "$as_me:24210: \"$ac_try\"") >&5
24206 { (eval echo "$as_me:24207: \"$ac_try\"") >&5
2421024207 (eval $ac_try) 2>&5
2421124208 ac_status=$?
24212 echo "$as_me:24213: \$? = $ac_status" >&5
24209 echo "$as_me:24210: \$? = $ac_status" >&5
2421324210 (exit $ac_status); }; }; then
2421424211 cat >conftest.$ac_ext <<_ACEOF
24215 #line 24216 "configure"
24212 #line 24213 "configure"
2421624213 #include "confdefs.h"
2421724214
2421824215 int
2422424221 }
2422524222 _ACEOF
2422624223 rm -f conftest.$ac_objext conftest$ac_exeext
24227 if { (eval echo "$as_me:24228: \"$ac_link\"") >&5
24224 if { (eval echo "$as_me:24225: \"$ac_link\"") >&5
2422824225 (eval $ac_link) 2>&5
2422924226 ac_status=$?
24230 echo "$as_me:24231: \$? = $ac_status" >&5
24227 echo "$as_me:24228: \$? = $ac_status" >&5
2423124228 (exit $ac_status); } &&
2423224229 { ac_try='test -s conftest$ac_exeext'
24233 { (eval echo "$as_me:24234: \"$ac_try\"") >&5
24230 { (eval echo "$as_me:24231: \"$ac_try\"") >&5
2423424231 (eval $ac_try) 2>&5
2423524232 ac_status=$?
24236 echo "$as_me:24237: \$? = $ac_status" >&5
24233 echo "$as_me:24234: \$? = $ac_status" >&5
2423724234 (exit $ac_status); }; }; then
2423824235 cf_cv_termlib=terminfo
2423924236 else
2424424241 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2424524242 test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6
2424624243
24247 echo "${as_me:-configure}:24248: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5
24244 echo "${as_me:-configure}:24245: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5
2424824245
2424924246 else
2425024247 echo "$as_me: failed program was:" >&5
2425924256 LIBS="-l$cf_lib $cf_save_LIBS"
2426024257 for cf_func in tigetstr tgetstr
2426124258 do
24262 echo "$as_me:24263: checking for $cf_func in -l$cf_lib" >&5
24259 echo "$as_me:24260: checking for $cf_func in -l$cf_lib" >&5
2426324260 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6
2426424261 cat >conftest.$ac_ext <<_ACEOF
24265 #line 24266 "configure"
24262 #line 24263 "configure"
2426624263 #include "confdefs.h"
2426724264
2426824265 int
2427424271 }
2427524272 _ACEOF
2427624273 rm -f conftest.$ac_objext conftest$ac_exeext
24277 if { (eval echo "$as_me:24278: \"$ac_link\"") >&5
24274 if { (eval echo "$as_me:24275: \"$ac_link\"") >&5
2427824275 (eval $ac_link) 2>&5
2427924276 ac_status=$?
24280 echo "$as_me:24281: \$? = $ac_status" >&5
24277 echo "$as_me:24278: \$? = $ac_status" >&5
2428124278 (exit $ac_status); } &&
2428224279 { ac_try='test -s conftest$ac_exeext'
24283 { (eval echo "$as_me:24284: \"$ac_try\"") >&5
24280 { (eval echo "$as_me:24281: \"$ac_try\"") >&5
2428424281 (eval $ac_try) 2>&5
2428524282 ac_status=$?
24286 echo "$as_me:24287: \$? = $ac_status" >&5
24283 echo "$as_me:24284: \$? = $ac_status" >&5
2428724284 (exit $ac_status); }; }; then
2428824285 cf_result=yes
2428924286 else
2429224289 cf_result=no
2429324290 fi
2429424291 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
24295 echo "$as_me:24296: result: $cf_result" >&5
24292 echo "$as_me:24293: result: $cf_result" >&5
2429624293 echo "${ECHO_T}$cf_result" >&6
2429724294 if test "$cf_result" = yes ; then
2429824295 if test "$cf_func" = tigetstr ; then
2430924306 fi
2431024307 if test "$cf_cv_termlib" = none; then
2431124308 # allow curses library for broken AIX system.
24312 echo "$as_me:24313: checking for initscr in -lcurses" >&5
24309 echo "$as_me:24310: checking for initscr in -lcurses" >&5
2431324310 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6
2431424311 if test "${ac_cv_lib_curses_initscr+set}" = set; then
2431524312 echo $ECHO_N "(cached) $ECHO_C" >&6
2431724314 ac_check_lib_save_LIBS=$LIBS
2431824315 LIBS="-lcurses $LIBS"
2431924316 cat >conftest.$ac_ext <<_ACEOF
24320 #line 24321 "configure"
24317 #line 24318 "configure"
2432124318 #include "confdefs.h"
2432224319
2432324320 /* Override any gcc2 internal prototype to avoid an error. */
2433624333 }
2433724334 _ACEOF
2433824335 rm -f conftest.$ac_objext conftest$ac_exeext
24339 if { (eval echo "$as_me:24340: \"$ac_link\"") >&5
24336 if { (eval echo "$as_me:24337: \"$ac_link\"") >&5
2434024337 (eval $ac_link) 2>&5
2434124338 ac_status=$?
24342 echo "$as_me:24343: \$? = $ac_status" >&5
24339 echo "$as_me:24340: \$? = $ac_status" >&5
2434324340 (exit $ac_status); } &&
2434424341 { ac_try='test -s conftest$ac_exeext'
24345 { (eval echo "$as_me:24346: \"$ac_try\"") >&5
24342 { (eval echo "$as_me:24343: \"$ac_try\"") >&5
2434624343 (eval $ac_try) 2>&5
2434724344 ac_status=$?
24348 echo "$as_me:24349: \$? = $ac_status" >&5
24345 echo "$as_me:24346: \$? = $ac_status" >&5
2434924346 (exit $ac_status); }; }; then
2435024347 ac_cv_lib_curses_initscr=yes
2435124348 else
2435624353 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2435724354 LIBS=$ac_check_lib_save_LIBS
2435824355 fi
24359 echo "$as_me:24360: result: $ac_cv_lib_curses_initscr" >&5
24356 echo "$as_me:24357: result: $ac_cv_lib_curses_initscr" >&5
2436024357 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6
2436124358 if test $ac_cv_lib_curses_initscr = yes; then
2436224359 LIBS="-lcurses $LIBS"
2436324360 fi
2436424361
24365 echo "$as_me:24366: checking for tgoto in -ltermcap" >&5
24362 echo "$as_me:24363: checking for tgoto in -ltermcap" >&5
2436624363 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6
2436724364 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then
2436824365 echo $ECHO_N "(cached) $ECHO_C" >&6
2437024367 ac_check_lib_save_LIBS=$LIBS
2437124368 LIBS="-ltermcap $LIBS"
2437224369 cat >conftest.$ac_ext <<_ACEOF
24373 #line 24374 "configure"
24370 #line 24371 "configure"
2437424371 #include "confdefs.h"
2437524372
2437624373 /* Override any gcc2 internal prototype to avoid an error. */
2438924386 }
2439024387 _ACEOF
2439124388 rm -f conftest.$ac_objext conftest$ac_exeext
24392 if { (eval echo "$as_me:24393: \"$ac_link\"") >&5
24389 if { (eval echo "$as_me:24390: \"$ac_link\"") >&5
2439324390 (eval $ac_link) 2>&5
2439424391 ac_status=$?
24395 echo "$as_me:24396: \$? = $ac_status" >&5
24392 echo "$as_me:24393: \$? = $ac_status" >&5
2439624393 (exit $ac_status); } &&
2439724394 { ac_try='test -s conftest$ac_exeext'
24398 { (eval echo "$as_me:24399: \"$ac_try\"") >&5
24395 { (eval echo "$as_me:24396: \"$ac_try\"") >&5
2439924396 (eval $ac_try) 2>&5
2440024397 ac_status=$?
24401 echo "$as_me:24402: \$? = $ac_status" >&5
24398 echo "$as_me:24399: \$? = $ac_status" >&5
2440224399 (exit $ac_status); }; }; then
2440324400 ac_cv_lib_termcap_tgoto=yes
2440424401 else
2440924406 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2441024407 LIBS=$ac_check_lib_save_LIBS
2441124408 fi
24412 echo "$as_me:24413: result: $ac_cv_lib_termcap_tgoto" >&5
24409 echo "$as_me:24410: result: $ac_cv_lib_termcap_tgoto" >&5
2441324410 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6
2441424411 if test $ac_cv_lib_termcap_tgoto = yes; then
2441524412 LIBS="-ltermcap $LIBS" cf_cv_termlib=termcap
2442024417 fi
2442124418 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2442224419 if test "$cf_cv_termlib" = none; then
24423 { echo "$as_me:24424: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
24420 { echo "$as_me:24421: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
2442424421 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;}
2442524422 fi
2442624423
2442724424 fi
2442824425
2442924426 cf_slang_LIBS2="$LIBS"
24430 echo "$as_me:24431: checking for acos" >&5
24427 echo "$as_me:24428: checking for acos" >&5
2443124428 echo $ECHO_N "checking for acos... $ECHO_C" >&6
2443224429 if test "${ac_cv_func_acos+set}" = set; then
2443324430 echo $ECHO_N "(cached) $ECHO_C" >&6
2443424431 else
2443524432 cat >conftest.$ac_ext <<_ACEOF
24436 #line 24437 "configure"
24433 #line 24434 "configure"
2443724434 #include "confdefs.h"
2443824435 /* System header to define __stub macros and hopefully few prototypes,
2443924436 which can conflict with char acos (); below. */
2446424461 }
2446524462 _ACEOF
2446624463 rm -f conftest.$ac_objext conftest$ac_exeext
24467 if { (eval echo "$as_me:24468: \"$ac_link\"") >&5
24464 if { (eval echo "$as_me:24465: \"$ac_link\"") >&5
2446824465 (eval $ac_link) 2>&5
2446924466 ac_status=$?
24470 echo "$as_me:24471: \$? = $ac_status" >&5
24467 echo "$as_me:24468: \$? = $ac_status" >&5
2447124468 (exit $ac_status); } &&
2447224469 { ac_try='test -s conftest$ac_exeext'
24473 { (eval echo "$as_me:24474: \"$ac_try\"") >&5
24470 { (eval echo "$as_me:24471: \"$ac_try\"") >&5
2447424471 (eval $ac_try) 2>&5
2447524472 ac_status=$?
24476 echo "$as_me:24477: \$? = $ac_status" >&5
24473 echo "$as_me:24474: \$? = $ac_status" >&5
2447724474 (exit $ac_status); }; }; then
2447824475 ac_cv_func_acos=yes
2447924476 else
2448324480 fi
2448424481 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2448524482 fi
24486 echo "$as_me:24487: result: $ac_cv_func_acos" >&5
24483 echo "$as_me:24484: result: $ac_cv_func_acos" >&5
2448724484 echo "${ECHO_T}$ac_cv_func_acos" >&6
2448824485 if test $ac_cv_func_acos = yes; then
2448924486 :
2449024487 else
2449124488
24492 echo "$as_me:24493: checking for acos in -lm" >&5
24489 echo "$as_me:24490: checking for acos in -lm" >&5
2449324490 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6
2449424491 if test "${ac_cv_lib_m_acos+set}" = set; then
2449524492 echo $ECHO_N "(cached) $ECHO_C" >&6
2449724494 ac_check_lib_save_LIBS=$LIBS
2449824495 LIBS="-lm $LIBS $LIBS"
2449924496 cat >conftest.$ac_ext <<_ACEOF
24500 #line 24501 "configure"
24497 #line 24498 "configure"
2450124498 #include "confdefs.h"
2450224499
2450324500 /* Override any gcc2 internal prototype to avoid an error. */
2451624513 }
2451724514 _ACEOF
2451824515 rm -f conftest.$ac_objext conftest$ac_exeext
24519 if { (eval echo "$as_me:24520: \"$ac_link\"") >&5
24516 if { (eval echo "$as_me:24517: \"$ac_link\"") >&5
2452024517 (eval $ac_link) 2>&5
2452124518 ac_status=$?
24522 echo "$as_me:24523: \$? = $ac_status" >&5
24519 echo "$as_me:24520: \$? = $ac_status" >&5
2452324520 (exit $ac_status); } &&
2452424521 { ac_try='test -s conftest$ac_exeext'
24525 { (eval echo "$as_me:24526: \"$ac_try\"") >&5
24522 { (eval echo "$as_me:24523: \"$ac_try\"") >&5
2452624523 (eval $ac_try) 2>&5
2452724524 ac_status=$?
24528 echo "$as_me:24529: \$? = $ac_status" >&5
24525 echo "$as_me:24526: \$? = $ac_status" >&5
2452924526 (exit $ac_status); }; }; then
2453024527 ac_cv_lib_m_acos=yes
2453124528 else
2453624533 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2453724534 LIBS=$ac_check_lib_save_LIBS
2453824535 fi
24539 echo "$as_me:24540: result: $ac_cv_lib_m_acos" >&5
24536 echo "$as_me:24537: result: $ac_cv_lib_m_acos" >&5
2454024537 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6
2454124538 if test $ac_cv_lib_m_acos = yes; then
2454224539
2456224559
2456324560 eval 'cf_cv_have_lib_'video'=no'
2456424561 cf_libdir=""
24565 echo "$as_me:24566: checking for v_init" >&5
24562 echo "$as_me:24563: checking for v_init" >&5
2456624563 echo $ECHO_N "checking for v_init... $ECHO_C" >&6
2456724564 if test "${ac_cv_func_v_init+set}" = set; then
2456824565 echo $ECHO_N "(cached) $ECHO_C" >&6
2456924566 else
2457024567 cat >conftest.$ac_ext <<_ACEOF
24571 #line 24572 "configure"
24568 #line 24569 "configure"
2457224569 #include "confdefs.h"
2457324570 /* System header to define __stub macros and hopefully few prototypes,
2457424571 which can conflict with char v_init (); below. */
2459924596 }
2460024597 _ACEOF
2460124598 rm -f conftest.$ac_objext conftest$ac_exeext
24602 if { (eval echo "$as_me:24603: \"$ac_link\"") >&5
24599 if { (eval echo "$as_me:24600: \"$ac_link\"") >&5
2460324600 (eval $ac_link) 2>&5
2460424601 ac_status=$?
24605 echo "$as_me:24606: \$? = $ac_status" >&5
24602 echo "$as_me:24603: \$? = $ac_status" >&5
2460624603 (exit $ac_status); } &&
2460724604 { ac_try='test -s conftest$ac_exeext'
24608 { (eval echo "$as_me:24609: \"$ac_try\"") >&5
24605 { (eval echo "$as_me:24606: \"$ac_try\"") >&5
2460924606 (eval $ac_try) 2>&5
2461024607 ac_status=$?
24611 echo "$as_me:24612: \$? = $ac_status" >&5
24608 echo "$as_me:24609: \$? = $ac_status" >&5
2461224609 (exit $ac_status); }; }; then
2461324610 ac_cv_func_v_init=yes
2461424611 else
2461824615 fi
2461924616 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2462024617 fi
24621 echo "$as_me:24622: result: $ac_cv_func_v_init" >&5
24618 echo "$as_me:24619: result: $ac_cv_func_v_init" >&5
2462224619 echo "${ECHO_T}$ac_cv_func_v_init" >&6
2462324620 if test $ac_cv_func_v_init = yes; then
2462424621 eval 'cf_cv_have_lib_'video'=yes'
2462524622 else
2462624623
2462724624 cf_save_LIBS="$LIBS"
24628 echo "$as_me:24629: checking for v_init in -lvideo" >&5
24625 echo "$as_me:24626: checking for v_init in -lvideo" >&5
2462924626 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6
2463024627 LIBS="-lvideo $LIBS"
2463124628 cat >conftest.$ac_ext <<_ACEOF
24632 #line 24633 "configure"
24629 #line 24630 "configure"
2463324630 #include "confdefs.h"
2463424631 #include <sys/video.h>
2463524632 int
2464124638 }
2464224639 _ACEOF
2464324640 rm -f conftest.$ac_objext conftest$ac_exeext
24644 if { (eval echo "$as_me:24645: \"$ac_link\"") >&5
24641 if { (eval echo "$as_me:24642: \"$ac_link\"") >&5
2464524642 (eval $ac_link) 2>&5
2464624643 ac_status=$?
24647 echo "$as_me:24648: \$? = $ac_status" >&5
24644 echo "$as_me:24645: \$? = $ac_status" >&5
2464824645 (exit $ac_status); } &&
2464924646 { ac_try='test -s conftest$ac_exeext'
24650 { (eval echo "$as_me:24651: \"$ac_try\"") >&5
24647 { (eval echo "$as_me:24648: \"$ac_try\"") >&5
2465124648 (eval $ac_try) 2>&5
2465224649 ac_status=$?
24653 echo "$as_me:24654: \$? = $ac_status" >&5
24650 echo "$as_me:24651: \$? = $ac_status" >&5
2465424651 (exit $ac_status); }; }; then
24655 echo "$as_me:24656: result: yes" >&5
24652 echo "$as_me:24653: result: yes" >&5
2465624653 echo "${ECHO_T}yes" >&6
2465724654 eval 'cf_cv_have_lib_'video'=yes'
2465824655
2465924656 else
2466024657 echo "$as_me: failed program was:" >&5
2466124658 cat conftest.$ac_ext >&5
24662 echo "$as_me:24663: result: no" >&5
24659 echo "$as_me:24660: result: no" >&5
2466324660 echo "${ECHO_T}no" >&6
2466424661
2466524662 cf_search=
2474924746
2475024747 for cf_libdir in $cf_search
2475124748 do
24752 echo "$as_me:24753: checking for -lvideo in $cf_libdir" >&5
24749 echo "$as_me:24750: checking for -lvideo in $cf_libdir" >&5
2475324750 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6
2475424751 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS"
2475524752 cat >conftest.$ac_ext <<_ACEOF
24756 #line 24757 "configure"
24753 #line 24754 "configure"
2475724754 #include "confdefs.h"
2475824755 #include <sys/video.h>
2475924756 int
2476524762 }
2476624763 _ACEOF
2476724764 rm -f conftest.$ac_objext conftest$ac_exeext
24768 if { (eval echo "$as_me:24769: \"$ac_link\"") >&5
24765 if { (eval echo "$as_me:24766: \"$ac_link\"") >&5
2476924766 (eval $ac_link) 2>&5
2477024767 ac_status=$?
24771 echo "$as_me:24772: \$? = $ac_status" >&5
24768 echo "$as_me:24769: \$? = $ac_status" >&5
2477224769 (exit $ac_status); } &&
2477324770 { ac_try='test -s conftest$ac_exeext'
24774 { (eval echo "$as_me:24775: \"$ac_try\"") >&5
24771 { (eval echo "$as_me:24772: \"$ac_try\"") >&5
2477524772 (eval $ac_try) 2>&5
2477624773 ac_status=$?
24777 echo "$as_me:24778: \$? = $ac_status" >&5
24774 echo "$as_me:24775: \$? = $ac_status" >&5
2477824775 (exit $ac_status); }; }; then
24779 echo "$as_me:24780: result: yes" >&5
24776 echo "$as_me:24777: result: yes" >&5
2478024777 echo "${ECHO_T}yes" >&6
2478124778 eval 'cf_cv_have_lib_'video'=yes'
2478224779 break
2478324780 else
2478424781 echo "$as_me: failed program was:" >&5
2478524782 cat conftest.$ac_ext >&5
24786 echo "$as_me:24787: result: no" >&5
24783 echo "$as_me:24784: result: no" >&5
2478724784 echo "${ECHO_T}no" >&6
2478824785 LIBS="$cf_save_LIBS"
2478924786 fi
2479824795 eval 'cf_found_library=$cf_cv_have_lib_'video
2479924796
2480024797 if test $cf_found_library = no ; then
24801 { { echo "$as_me:24802: error: Cannot link video library" >&5
24798 { { echo "$as_me:24799: error: Cannot link video library" >&5
2480224799 echo "$as_me: error: Cannot link video library" >&2;}
2480324800 { (exit 1); exit 1; }; }
2480424801 fi
2480824805
2480924806 eval 'cf_cv_have_lib_'slang2'=no'
2481024807 cf_libdir=""
24811 echo "$as_me:24812: checking for SLtt_get_screen_size" >&5
24808 echo "$as_me:24809: checking for SLtt_get_screen_size" >&5
2481224809 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6
2481324810 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then
2481424811 echo $ECHO_N "(cached) $ECHO_C" >&6
2481524812 else
2481624813 cat >conftest.$ac_ext <<_ACEOF
24817 #line 24818 "configure"
24814 #line 24815 "configure"
2481824815 #include "confdefs.h"
2481924816 /* System header to define __stub macros and hopefully few prototypes,
2482024817 which can conflict with char SLtt_get_screen_size (); below. */
2484524842 }
2484624843 _ACEOF
2484724844 rm -f conftest.$ac_objext conftest$ac_exeext
24848 if { (eval echo "$as_me:24849: \"$ac_link\"") >&5
24845 if { (eval echo "$as_me:24846: \"$ac_link\"") >&5
2484924846 (eval $ac_link) 2>&5
2485024847 ac_status=$?
24851 echo "$as_me:24852: \$? = $ac_status" >&5
24848 echo "$as_me:24849: \$? = $ac_status" >&5
2485224849 (exit $ac_status); } &&
2485324850 { ac_try='test -s conftest$ac_exeext'
24854 { (eval echo "$as_me:24855: \"$ac_try\"") >&5
24851 { (eval echo "$as_me:24852: \"$ac_try\"") >&5
2485524852 (eval $ac_try) 2>&5
2485624853 ac_status=$?
24857 echo "$as_me:24858: \$? = $ac_status" >&5
24854 echo "$as_me:24855: \$? = $ac_status" >&5
2485824855 (exit $ac_status); }; }; then
2485924856 ac_cv_func_SLtt_get_screen_size=yes
2486024857 else
2486424861 fi
2486524862 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2486624863 fi
24867 echo "$as_me:24868: result: $ac_cv_func_SLtt_get_screen_size" >&5
24864 echo "$as_me:24865: result: $ac_cv_func_SLtt_get_screen_size" >&5
2486824865 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6
2486924866 if test $ac_cv_func_SLtt_get_screen_size = yes; then
2487024867 eval 'cf_cv_have_lib_'slang2'=yes'
2487124868 else
2487224869
2487324870 cf_save_LIBS="$LIBS"
24874 echo "$as_me:24875: checking for SLtt_get_screen_size in -lslang2" >&5
24871 echo "$as_me:24872: checking for SLtt_get_screen_size in -lslang2" >&5
2487524872 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang2... $ECHO_C" >&6
2487624873 LIBS="-lslang2 $LIBS"
2487724874 cat >conftest.$ac_ext <<_ACEOF
24878 #line 24879 "configure"
24875 #line 24876 "configure"
2487924876 #include "confdefs.h"
2488024877 #include <slang.h>
2488124878 int
2488724884 }
2488824885 _ACEOF
2488924886 rm -f conftest.$ac_objext conftest$ac_exeext
24890 if { (eval echo "$as_me:24891: \"$ac_link\"") >&5
24887 if { (eval echo "$as_me:24888: \"$ac_link\"") >&5
2489124888 (eval $ac_link) 2>&5
2489224889 ac_status=$?
24893 echo "$as_me:24894: \$? = $ac_status" >&5
24890 echo "$as_me:24891: \$? = $ac_status" >&5
2489424891 (exit $ac_status); } &&
2489524892 { ac_try='test -s conftest$ac_exeext'
24896 { (eval echo "$as_me:24897: \"$ac_try\"") >&5
24893 { (eval echo "$as_me:24894: \"$ac_try\"") >&5
2489724894 (eval $ac_try) 2>&5
2489824895 ac_status=$?
24899 echo "$as_me:24900: \$? = $ac_status" >&5
24896 echo "$as_me:24897: \$? = $ac_status" >&5
2490024897 (exit $ac_status); }; }; then
24901 echo "$as_me:24902: result: yes" >&5
24898 echo "$as_me:24899: result: yes" >&5
2490224899 echo "${ECHO_T}yes" >&6
2490324900 eval 'cf_cv_have_lib_'slang2'=yes'
2490424901
2490524902 else
2490624903 echo "$as_me: failed program was:" >&5
2490724904 cat conftest.$ac_ext >&5
24908 echo "$as_me:24909: result: no" >&5
24905 echo "$as_me:24906: result: no" >&5
2490924906 echo "${ECHO_T}no" >&6
2491024907
2491124908 cf_search=
2499524992
2499624993 for cf_libdir in $cf_search
2499724994 do
24998 echo "$as_me:24999: checking for -lslang2 in $cf_libdir" >&5
24995 echo "$as_me:24996: checking for -lslang2 in $cf_libdir" >&5
2499924996 echo $ECHO_N "checking for -lslang2 in $cf_libdir... $ECHO_C" >&6
2500024997 LIBS="-L$cf_libdir -lslang2 $cf_save_LIBS"
2500124998 cat >conftest.$ac_ext <<_ACEOF
25002 #line 25003 "configure"
24999 #line 25000 "configure"
2500325000 #include "confdefs.h"
2500425001 #include <slang.h>
2500525002 int
2501125008 }
2501225009 _ACEOF
2501325010 rm -f conftest.$ac_objext conftest$ac_exeext
25014 if { (eval echo "$as_me:25015: \"$ac_link\"") >&5
25011 if { (eval echo "$as_me:25012: \"$ac_link\"") >&5
2501525012 (eval $ac_link) 2>&5
2501625013 ac_status=$?
25017 echo "$as_me:25018: \$? = $ac_status" >&5
25014 echo "$as_me:25015: \$? = $ac_status" >&5
2501825015 (exit $ac_status); } &&
2501925016 { ac_try='test -s conftest$ac_exeext'
25020 { (eval echo "$as_me:25021: \"$ac_try\"") >&5
25017 { (eval echo "$as_me:25018: \"$ac_try\"") >&5
2502125018 (eval $ac_try) 2>&5
2502225019 ac_status=$?
25023 echo "$as_me:25024: \$? = $ac_status" >&5
25020 echo "$as_me:25021: \$? = $ac_status" >&5
2502425021 (exit $ac_status); }; }; then
25025 echo "$as_me:25026: result: yes" >&5
25022 echo "$as_me:25023: result: yes" >&5
2502625023 echo "${ECHO_T}yes" >&6
2502725024 eval 'cf_cv_have_lib_'slang2'=yes'
2502825025 break
2502925026 else
2503025027 echo "$as_me: failed program was:" >&5
2503125028 cat conftest.$ac_ext >&5
25032 echo "$as_me:25033: result: no" >&5
25029 echo "$as_me:25030: result: no" >&5
2503325030 echo "${ECHO_T}no" >&6
2503425031 LIBS="$cf_save_LIBS"
2503525032 fi
2504425041 eval 'cf_found_library=$cf_cv_have_lib_'slang2
2504525042
2504625043 if test $cf_found_library = no ; then
25047 { { echo "$as_me:25048: error: Cannot link slang2 library" >&5
25044 { { echo "$as_me:25045: error: Cannot link slang2 library" >&5
2504825045 echo "$as_me: error: Cannot link slang2 library" >&2;}
2504925046 { (exit 1); exit 1; }; }
2505025047 fi
2505125048
2505225049 cf_slang_LIBS3="$LIBS"
25053 echo "$as_me:25054: checking if we can link slang2 without termcap" >&5
25050 echo "$as_me:25051: checking if we can link slang2 without termcap" >&5
2505425051 echo $ECHO_N "checking if we can link slang2 without termcap... $ECHO_C" >&6
2505525052 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then
2505625053 cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'`
2505925056 fi
2506025057 LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'`
2506125058 cat >conftest.$ac_ext <<_ACEOF
25062 #line 25063 "configure"
25059 #line 25060 "configure"
2506325060 #include "confdefs.h"
2506425061 #include <slang.h>
2506525062 int
2507125068 }
2507225069 _ACEOF
2507325070 rm -f conftest.$ac_objext conftest$ac_exeext
25074 if { (eval echo "$as_me:25075: \"$ac_link\"") >&5
25071 if { (eval echo "$as_me:25072: \"$ac_link\"") >&5
2507525072 (eval $ac_link) 2>&5
2507625073 ac_status=$?
25077 echo "$as_me:25078: \$? = $ac_status" >&5
25074 echo "$as_me:25075: \$? = $ac_status" >&5
2507825075 (exit $ac_status); } &&
2507925076 { ac_try='test -s conftest$ac_exeext'
25080 { (eval echo "$as_me:25081: \"$ac_try\"") >&5
25077 { (eval echo "$as_me:25078: \"$ac_try\"") >&5
2508125078 (eval $ac_try) 2>&5
2508225079 ac_status=$?
25083 echo "$as_me:25084: \$? = $ac_status" >&5
25080 echo "$as_me:25081: \$? = $ac_status" >&5
2508425081 (exit $ac_status); }; }; then
2508525082 cf_result=yes
2508625083 else
2508925086 cf_result=no
2509025087 fi
2509125088 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
25092 echo "$as_me:25093: result: $cf_result" >&5
25089 echo "$as_me:25090: result: $cf_result" >&5
2509325090 echo "${ECHO_T}$cf_result" >&6
2509425091 test $cf_result = no && LIBS="$cf_slang_LIBS3"
2509525092
2509625093 else
25097 { { echo "$as_me:25098: error: cannot find slang headers" >&5
25094 { { echo "$as_me:25095: error: cannot find slang headers" >&5
2509825095 echo "$as_me: error: cannot find slang headers" >&2;}
2509925096 { (exit 1); exit 1; }; }
2510025097 fi
2510225099
2510325100 # There's an unofficial set of patches for slang that gives it some limited
2510425101 # UTF8 capability. Unfortunately it won't compile unless one defines UTF8.
25105 echo "$as_me:25106: checking if we must define UTF8" >&5
25102 echo "$as_me:25103: checking if we must define UTF8" >&5
2510625103 echo $ECHO_N "checking if we must define UTF8... $ECHO_C" >&6
2510725104 if test "${cf_cv_slang_utf8+set}" = set; then
2510825105 echo $ECHO_N "(cached) $ECHO_C" >&6
2510925106 else
2511025107
2511125108 cat >conftest.$ac_ext <<_ACEOF
25112 #line 25113 "configure"
25109 #line 25110 "configure"
2511325110 #include "confdefs.h"
2511425111 #include <slang.h>
2511525112 int
2512125118 }
2512225119 _ACEOF
2512325120 rm -f conftest.$ac_objext
25124 if { (eval echo "$as_me:25125: \"$ac_compile\"") >&5
25121 if { (eval echo "$as_me:25122: \"$ac_compile\"") >&5
2512525122 (eval $ac_compile) 2>&5
2512625123 ac_status=$?
25127 echo "$as_me:25128: \$? = $ac_status" >&5
25124 echo "$as_me:25125: \$? = $ac_status" >&5
2512825125 (exit $ac_status); } &&
2512925126 { ac_try='test -s conftest.$ac_objext'
25130 { (eval echo "$as_me:25131: \"$ac_try\"") >&5
25127 { (eval echo "$as_me:25128: \"$ac_try\"") >&5
2513125128 (eval $ac_try) 2>&5
2513225129 ac_status=$?
25133 echo "$as_me:25134: \$? = $ac_status" >&5
25130 echo "$as_me:25131: \$? = $ac_status" >&5
2513425131 (exit $ac_status); }; }; then
2513525132 cf_cv_slang_utf8=no
2513625133 else
2513825135 cat conftest.$ac_ext >&5
2513925136
2514025137 cat >conftest.$ac_ext <<_ACEOF
25141 #line 25142 "configure"
25138 #line 25139 "configure"
2514225139 #include "confdefs.h"
2514325140
2514425141 #define UTF8
2515225149 }
2515325150 _ACEOF
2515425151 rm -f conftest.$ac_objext
25155 if { (eval echo "$as_me:25156: \"$ac_compile\"") >&5
25152 if { (eval echo "$as_me:25153: \"$ac_compile\"") >&5
2515625153 (eval $ac_compile) 2>&5
2515725154 ac_status=$?
25158 echo "$as_me:25159: \$? = $ac_status" >&5
25155 echo "$as_me:25156: \$? = $ac_status" >&5
2515925156 (exit $ac_status); } &&
2516025157 { ac_try='test -s conftest.$ac_objext'
25161 { (eval echo "$as_me:25162: \"$ac_try\"") >&5
25158 { (eval echo "$as_me:25159: \"$ac_try\"") >&5
2516225159 (eval $ac_try) 2>&5
2516325160 ac_status=$?
25164 echo "$as_me:25165: \$? = $ac_status" >&5
25161 echo "$as_me:25162: \$? = $ac_status" >&5
2516525162 (exit $ac_status); }; }; then
2516625163 cf_cv_slang_utf8=yes
2516725164 else
2517425171 rm -f conftest.$ac_objext conftest.$ac_ext
2517525172
2517625173 fi
25177 echo "$as_me:25178: result: $cf_cv_slang_utf8" >&5
25174 echo "$as_me:25175: result: $cf_cv_slang_utf8" >&5
2517825175 echo "${ECHO_T}$cf_cv_slang_utf8" >&6
2517925176
2518025177 if test "$cf_cv_slang_utf8" = yes ; then
2518525182
2518625183 fi
2518725184
25188 echo "$as_me:25189: checking if we must tell slang this is UNIX" >&5
25185 echo "$as_me:25186: checking if we must tell slang this is UNIX" >&5
2518925186 echo $ECHO_N "checking if we must tell slang this is UNIX... $ECHO_C" >&6
2519025187 if test "${cf_cv_slang_unix+set}" = set; then
2519125188 echo $ECHO_N "(cached) $ECHO_C" >&6
2519225189 else
2519325190
2519425191 cat >conftest.$ac_ext <<_ACEOF
25195 #line 25196 "configure"
25192 #line 25193 "configure"
2519625193 #include "confdefs.h"
2519725194 #include <slang.h>
2519825195 int
2521125208 }
2521225209 _ACEOF
2521325210 rm -f conftest.$ac_objext conftest$ac_exeext
25214 if { (eval echo "$as_me:25215: \"$ac_link\"") >&5
25211 if { (eval echo "$as_me:25212: \"$ac_link\"") >&5
2521525212 (eval $ac_link) 2>&5
2521625213 ac_status=$?
25217 echo "$as_me:25218: \$? = $ac_status" >&5
25214 echo "$as_me:25215: \$? = $ac_status" >&5
2521825215 (exit $ac_status); } &&
2521925216 { ac_try='test -s conftest$ac_exeext'
25220 { (eval echo "$as_me:25221: \"$ac_try\"") >&5
25217 { (eval echo "$as_me:25218: \"$ac_try\"") >&5
2522125218 (eval $ac_try) 2>&5
2522225219 ac_status=$?
25223 echo "$as_me:25224: \$? = $ac_status" >&5
25220 echo "$as_me:25221: \$? = $ac_status" >&5
2522425221 (exit $ac_status); }; }; then
2522525222 cf_cv_slang_unix=yes
2522625223 else
2523125228 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2523225229
2523325230 fi
25234 echo "$as_me:25235: result: $cf_cv_slang_unix" >&5
25231 echo "$as_me:25232: result: $cf_cv_slang_unix" >&5
2523525232 echo "${ECHO_T}$cf_cv_slang_unix" >&6
2523625233 test $cf_cv_slang_unix = yes &&
2523725234 cat >>confdefs.h <<\EOF
2523825235 #define REAL_UNIX_SYSTEM 1
2523925236 EOF
2524025237
25241 echo "$as_me:25242: checking for SLsmg_Color_Type" >&5
25238 echo "$as_me:25239: checking for SLsmg_Color_Type" >&5
2524225239 echo $ECHO_N "checking for SLsmg_Color_Type... $ECHO_C" >&6
2524325240 if test "${ac_cv_type_SLsmg_Color_Type+set}" = set; then
2524425241 echo $ECHO_N "(cached) $ECHO_C" >&6
2524525242 else
2524625243 cat >conftest.$ac_ext <<_ACEOF
25247 #line 25248 "configure"
25244 #line 25245 "configure"
2524825245 #include "confdefs.h"
2524925246 #include <slang.h>
2525025247
2526025257 }
2526125258 _ACEOF
2526225259 rm -f conftest.$ac_objext
25263 if { (eval echo "$as_me:25264: \"$ac_compile\"") >&5
25260 if { (eval echo "$as_me:25261: \"$ac_compile\"") >&5
2526425261 (eval $ac_compile) 2>&5
2526525262 ac_status=$?
25266 echo "$as_me:25267: \$? = $ac_status" >&5
25263 echo "$as_me:25264: \$? = $ac_status" >&5
2526725264 (exit $ac_status); } &&
2526825265 { ac_try='test -s conftest.$ac_objext'
25269 { (eval echo "$as_me:25270: \"$ac_try\"") >&5
25266 { (eval echo "$as_me:25267: \"$ac_try\"") >&5
2527025267 (eval $ac_try) 2>&5
2527125268 ac_status=$?
25272 echo "$as_me:25273: \$? = $ac_status" >&5
25269 echo "$as_me:25270: \$? = $ac_status" >&5
2527325270 (exit $ac_status); }; }; then
2527425271 ac_cv_type_SLsmg_Color_Type=yes
2527525272 else
2527925276 fi
2528025277 rm -f conftest.$ac_objext conftest.$ac_ext
2528125278 fi
25282 echo "$as_me:25283: result: $ac_cv_type_SLsmg_Color_Type" >&5
25279 echo "$as_me:25280: result: $ac_cv_type_SLsmg_Color_Type" >&5
2528325280 echo "${ECHO_T}$ac_cv_type_SLsmg_Color_Type" >&6
2528425281 if test $ac_cv_type_SLsmg_Color_Type = yes; then
2528525282 ac_cv_type_SLsmg_Color_Type=yes
2529525292
2529625293 fi
2529725294
25298 echo "$as_me:25299: checking for SLtt_Char_Type" >&5
25295 echo "$as_me:25296: checking for SLtt_Char_Type" >&5
2529925296 echo $ECHO_N "checking for SLtt_Char_Type... $ECHO_C" >&6
2530025297 if test "${ac_cv_type_SLtt_Char_Type+set}" = set; then
2530125298 echo $ECHO_N "(cached) $ECHO_C" >&6
2530225299 else
2530325300 cat >conftest.$ac_ext <<_ACEOF
25304 #line 25305 "configure"
25301 #line 25302 "configure"
2530525302 #include "confdefs.h"
2530625303 #include <slang.h>
2530725304
2531725314 }
2531825315 _ACEOF
2531925316 rm -f conftest.$ac_objext
25320 if { (eval echo "$as_me:25321: \"$ac_compile\"") >&5
25317 if { (eval echo "$as_me:25318: \"$ac_compile\"") >&5
2532125318 (eval $ac_compile) 2>&5
2532225319 ac_status=$?
25323 echo "$as_me:25324: \$? = $ac_status" >&5
25320 echo "$as_me:25321: \$? = $ac_status" >&5
2532425321 (exit $ac_status); } &&
2532525322 { ac_try='test -s conftest.$ac_objext'
25326 { (eval echo "$as_me:25327: \"$ac_try\"") >&5
25323 { (eval echo "$as_me:25324: \"$ac_try\"") >&5
2532725324 (eval $ac_try) 2>&5
2532825325 ac_status=$?
25329 echo "$as_me:25330: \$? = $ac_status" >&5
25326 echo "$as_me:25327: \$? = $ac_status" >&5
2533025327 (exit $ac_status); }; }; then
2533125328 ac_cv_type_SLtt_Char_Type=yes
2533225329 else
2533625333 fi
2533725334 rm -f conftest.$ac_objext conftest.$ac_ext
2533825335 fi
25339 echo "$as_me:25340: result: $ac_cv_type_SLtt_Char_Type" >&5
25336 echo "$as_me:25337: result: $ac_cv_type_SLtt_Char_Type" >&5
2534025337 echo "${ECHO_T}$ac_cv_type_SLtt_Char_Type" >&6
2534125338 if test $ac_cv_type_SLtt_Char_Type = yes; then
2534225339 ac_cv_type_SLtt_Char_Type=yes
2535625353 ;;
2535725354 esac
2535825355
25359 echo "$as_me:25360: checking for chtype typedef" >&5
25356 echo "$as_me:25357: checking for chtype typedef" >&5
2536025357 echo $ECHO_N "checking for chtype typedef... $ECHO_C" >&6
2536125358 if test "${cf_cv_chtype_decl+set}" = set; then
2536225359 echo $ECHO_N "(cached) $ECHO_C" >&6
2536325360 else
2536425361
2536525362 cat >conftest.$ac_ext <<_ACEOF
25366 #line 25367 "configure"
25363 #line 25364 "configure"
2536725364 #include "confdefs.h"
2536825365 #include <${cf_cv_ncurses_header:-curses.h}>
2536925366 int
2537525372 }
2537625373 _ACEOF
2537725374 rm -f conftest.$ac_objext
25378 if { (eval echo "$as_me:25379: \"$ac_compile\"") >&5
25375 if { (eval echo "$as_me:25376: \"$ac_compile\"") >&5
2537925376 (eval $ac_compile) 2>&5
2538025377 ac_status=$?
25381 echo "$as_me:25382: \$? = $ac_status" >&5
25378 echo "$as_me:25379: \$? = $ac_status" >&5
2538225379 (exit $ac_status); } &&
2538325380 { ac_try='test -s conftest.$ac_objext'
25384 { (eval echo "$as_me:25385: \"$ac_try\"") >&5
25381 { (eval echo "$as_me:25382: \"$ac_try\"") >&5
2538525382 (eval $ac_try) 2>&5
2538625383 ac_status=$?
25387 echo "$as_me:25388: \$? = $ac_status" >&5
25384 echo "$as_me:25385: \$? = $ac_status" >&5
2538825385 (exit $ac_status); }; }; then
2538925386 cf_cv_chtype_decl=yes
2539025387 else
2539425391 fi
2539525392 rm -f conftest.$ac_objext conftest.$ac_ext
2539625393 fi
25397 echo "$as_me:25398: result: $cf_cv_chtype_decl" >&5
25394 echo "$as_me:25395: result: $cf_cv_chtype_decl" >&5
2539825395 echo "${ECHO_T}$cf_cv_chtype_decl" >&6
2539925396 if test $cf_cv_chtype_decl = yes ; then
2540025397
2540225399 #define HAVE_TYPE_CHTYPE 1
2540325400 EOF
2540425401
25405 echo "$as_me:25406: checking if chtype is scalar or struct" >&5
25402 echo "$as_me:25403: checking if chtype is scalar or struct" >&5
2540625403 echo $ECHO_N "checking if chtype is scalar or struct... $ECHO_C" >&6
2540725404 if test "${cf_cv_chtype_type+set}" = set; then
2540825405 echo $ECHO_N "(cached) $ECHO_C" >&6
2540925406 else
2541025407
2541125408 cat >conftest.$ac_ext <<_ACEOF
25412 #line 25413 "configure"
25409 #line 25410 "configure"
2541325410 #include "confdefs.h"
2541425411 #include <${cf_cv_ncurses_header:-curses.h}>
2541525412 int
2542125418 }
2542225419 _ACEOF
2542325420 rm -f conftest.$ac_objext
25424 if { (eval echo "$as_me:25425: \"$ac_compile\"") >&5
25421 if { (eval echo "$as_me:25422: \"$ac_compile\"") >&5
2542525422 (eval $ac_compile) 2>&5
2542625423 ac_status=$?
25427 echo "$as_me:25428: \$? = $ac_status" >&5
25424 echo "$as_me:25425: \$? = $ac_status" >&5
2542825425 (exit $ac_status); } &&
2542925426 { ac_try='test -s conftest.$ac_objext'
25430 { (eval echo "$as_me:25431: \"$ac_try\"") >&5
25427 { (eval echo "$as_me:25428: \"$ac_try\"") >&5
2543125428 (eval $ac_try) 2>&5
2543225429 ac_status=$?
25433 echo "$as_me:25434: \$? = $ac_status" >&5
25430 echo "$as_me:25431: \$? = $ac_status" >&5
2543425431 (exit $ac_status); }; }; then
2543525432 cf_cv_chtype_type=scalar
2543625433 else
2544025437 fi
2544125438 rm -f conftest.$ac_objext conftest.$ac_ext
2544225439 fi
25443 echo "$as_me:25444: result: $cf_cv_chtype_type" >&5
25440 echo "$as_me:25441: result: $cf_cv_chtype_type" >&5
2544425441 echo "${ECHO_T}$cf_cv_chtype_type" >&6
2544525442 if test $cf_cv_chtype_type = scalar ; then
2544625443
2545125448 fi
2545225449 fi
2545325450
25454 echo "$as_me:25455: checking if you want the wide-curses features" >&5
25451 echo "$as_me:25452: checking if you want the wide-curses features" >&5
2545525452 echo $ECHO_N "checking if you want the wide-curses features... $ECHO_C" >&6
2545625453
2545725454 # Check whether --enable-widec or --disable-widec was given.
2546825465 use_wide_curses=$cf_wide_curses
2546925466
2547025467 fi;
25471 echo "$as_me:25472: result: $use_wide_curses" >&5
25468 echo "$as_me:25469: result: $use_wide_curses" >&5
2547225469 echo "${ECHO_T}$use_wide_curses" >&6
2547325470
25474 echo "$as_me:25475: checking if color-style code should be used" >&5
25471 echo "$as_me:25472: checking if color-style code should be used" >&5
2547525472 echo $ECHO_N "checking if color-style code should be used... $ECHO_C" >&6
2547625473
2547725474 # Check whether --enable-color-style or --disable-color-style was given.
2549125488
2549225489 case $use_color_style in
2549325490 no)
25494 echo "$as_me:25495: result: no" >&5
25491 echo "$as_me:25492: result: no" >&5
2549525492 echo "${ECHO_T}no" >&6
2549625493 INSTALL_LSS=
2549725494 ;;
2550125498 #define USE_COLOR_STYLE 1
2550225499 EOF
2550325500
25504 echo "$as_me:25505: result: yes" >&5
25501 echo "$as_me:25502: result: yes" >&5
2550525502 echo "${ECHO_T}yes" >&6
2550625503
25507 echo "$as_me:25508: checking for location of style-sheet file" >&5
25504 echo "$as_me:25505: checking for location of style-sheet file" >&5
2550825505 echo $ECHO_N "checking for location of style-sheet file... $ECHO_C" >&6
2550925506
2551025507 # Check whether --with-lss-file or --without-lss-file was given.
2554025537 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
2554125538 ;;
2554225539 *)
25543 { { echo "$as_me:25544: error: expected a pathname, not \"$withval\"" >&5
25540 { { echo "$as_me:25541: error: expected a pathname, not \"$withval\"" >&5
2554425541 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
2554525542 { (exit 1); exit 1; }; }
2554625543 ;;
2554925546 fi
2555025547 eval LYNX_LSS_FILE="$withval"
2555125548
25552 echo "$as_me:25553: result: $LYNX_LSS_FILE" >&5
25549 echo "$as_me:25550: result: $LYNX_LSS_FILE" >&5
2555325550 echo "${ECHO_T}$LYNX_LSS_FILE" >&6
2555425551
2555525552 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE=
2556225559 ;;
2556325560 esac
2556425561
25565 echo "$as_me:25566: checking for the default configuration-file" >&5
25562 echo "$as_me:25563: checking for the default configuration-file" >&5
2556625563 echo $ECHO_N "checking for the default configuration-file... $ECHO_C" >&6
2556725564
2556825565 # Check whether --with-cfg-file or --without-cfg-file was given.
2559825595 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
2559925596 ;;
2560025597 *)
25601 { { echo "$as_me:25602: error: expected a pathname, not \"$withval\"" >&5
25598 { { echo "$as_me:25599: error: expected a pathname, not \"$withval\"" >&5
2560225599 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
2560325600 { (exit 1); exit 1; }; }
2560425601 ;;
2560725604 fi
2560825605 eval LYNX_CFG_FILE="$withval"
2560925606
25610 echo "$as_me:25611: result: $LYNX_CFG_FILE" >&5
25607 echo "$as_me:25608: result: $LYNX_CFG_FILE" >&5
2561125608 echo "${ECHO_T}$LYNX_CFG_FILE" >&6
2561225609
2561325610 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE=
2561625613 #define LYNX_CFG_FILE "$LYNX_CFG_FILE"
2561725614 EOF
2561825615
25619 echo "$as_me:25620: checking for the default configuration-path" >&5
25616 echo "$as_me:25617: checking for the default configuration-path" >&5
2562025617 echo $ECHO_N "checking for the default configuration-path... $ECHO_C" >&6
2562125618
2562225619 # Check whether --with-cfg-path or --without-cfg-path was given.
2565225649 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
2565325650 ;;
2565425651 *)
25655 { { echo "$as_me:25656: error: expected a pathname, not \"$withval\"" >&5
25652 { { echo "$as_me:25653: error: expected a pathname, not \"$withval\"" >&5
2565625653 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
2565725654 { (exit 1); exit 1; }; }
2565825655 ;;
2566125658 fi
2566225659 eval LYNX_CFG_PATH="$withval"
2566325660
25664 echo "$as_me:25665: result: $LYNX_CFG_PATH" >&5
25661 echo "$as_me:25662: result: $LYNX_CFG_PATH" >&5
2566525662 echo "${ECHO_T}$LYNX_CFG_PATH" >&6
2566625663
2566725664 test -z "$LYNX_CFG_PATH" && `echo "$LYNX_CFG_FILE" | sed -e 's%/[^/]*$%%'`
2567125668 #define LYNX_CFG_PATH "$LYNX_CFG_PATH"
2567225669 EOF
2567325670
25674 echo "$as_me:25675: checking if htmlized lynx.cfg should be built" >&5
25671 echo "$as_me:25672: checking if htmlized lynx.cfg should be built" >&5
2567525672 echo $ECHO_N "checking if htmlized lynx.cfg should be built... $ECHO_C" >&6
2567625673
2567725674 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given.
2568825685 use_htmlized_cfg=no
2568925686
2569025687 fi;
25691 echo "$as_me:25692: result: $use_htmlized_cfg" >&5
25688 echo "$as_me:25689: result: $use_htmlized_cfg" >&5
2569225689 echo "${ECHO_T}$use_htmlized_cfg" >&6
2569325690
2569425691 LYNXCFG_MAKE=''
2569625693 LYNXCFG_MAKE='#'
2569725694 fi
2569825695
25699 echo "$as_me:25700: checking if local doc directory should be linked to help page" >&5
25696 echo "$as_me:25697: checking if local doc directory should be linked to help page" >&5
2570025697 echo $ECHO_N "checking if local doc directory should be linked to help page... $ECHO_C" >&6
2570125698
2570225699 # Check whether --enable-local-docs or --disable-local-docs was given.
2571325710 use_local_docs=no
2571425711
2571525712 fi;
25716 echo "$as_me:25717: result: $use_local_docs" >&5
25713 echo "$as_me:25714: result: $use_local_docs" >&5
2571725714 echo "${ECHO_T}$use_local_docs" >&6
2571825715
2571925716 LYNXDOC_MAKE=''
2572125718 LYNXDOC_MAKE='#'
2572225719 fi
2572325720
25724 echo "$as_me:25725: checking for MIME library directory" >&5
25721 echo "$as_me:25722: checking for MIME library directory" >&5
2572525722 echo $ECHO_N "checking for MIME library directory... $ECHO_C" >&6
2572625723
2572725724 # Check whether --with-mime-libdir or --without-mime-libdir was given.
2575725754 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
2575825755 ;;
2575925756 *)
25760 { { echo "$as_me:25761: error: expected a pathname, not \"$withval\"" >&5
25757 { { echo "$as_me:25758: error: expected a pathname, not \"$withval\"" >&5
2576125758 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
2576225759 { (exit 1); exit 1; }; }
2576325760 ;;
2576625763 fi
2576725764 eval MIME_LIBDIR="$withval"
2576825765
25769 echo "$as_me:25770: result: $MIME_LIBDIR" >&5
25766 echo "$as_me:25767: result: $MIME_LIBDIR" >&5
2577025767 echo "${ECHO_T}$MIME_LIBDIR" >&6
2577125768 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'`
2577225769
2577425771 #define MIME_LIBDIR "$MIME_LIBDIR"
2577525772 EOF
2577625773
25777 echo "$as_me:25778: checking if locale-charset selection logic should be used" >&5
25774 echo "$as_me:25775: checking if locale-charset selection logic should be used" >&5
2577825775 echo $ECHO_N "checking if locale-charset selection logic should be used... $ECHO_C" >&6
2577925776
2578025777 # Check whether --enable-locale-charset or --disable-locale-charset was given.
2579125788 use_locale_charset=yes
2579225789
2579325790 fi;
25794 echo "$as_me:25795: result: $use_locale_charset" >&5
25791 echo "$as_me:25792: result: $use_locale_charset" >&5
2579525792 echo "${ECHO_T}$use_locale_charset" >&6
2579625793 test $use_locale_charset != no &&
2579725794 cat >>confdefs.h <<\EOF
2580025797
2580125798 CHARSET_DEFS=
2580225799
25803 echo "$as_me:25804: checking if you want only a few charsets" >&5
25800 echo "$as_me:25801: checking if you want only a few charsets" >&5
2580425801 echo $ECHO_N "checking if you want only a few charsets... $ECHO_C" >&6
2580525802
2580625803 # Check whether --with-charsets or --without-charsets was given.
2581225809 fi;
2581325810
2581425811 if test -n "$cf_charsets" ; then
25815 echo "$as_me:25816: result: yes" >&5
25812 echo "$as_me:25813: result: yes" >&5
2581625813 echo "${ECHO_T}yes" >&6
2581725814
2581825815 cat >>confdefs.h <<\EOF
2582625823 if test "$cf_charsets" = "minimal" ; then
2582725824 test -n "$verbose" && echo " using minimal list of charsets: $cf_min_charsets" 1>&6
2582825825
25829 echo "${as_me:-configure}:25830: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5
25826 echo "${as_me:-configure}:25827: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5
2583025827
2583125828 fi
2583225829 cf_charsets=`echo $cf_charsets | sed -e "s/minimal/$cf_min_charsets/g" -e 's/,/ /g'`
2585325850 then
2585425851 test -n "$verbose" && echo " found $cf_charset" 1>&6
2585525852
25856 echo "${as_me:-configure}:25857: testing found $cf_charset ..." 1>&5
25853 echo "${as_me:-configure}:25854: testing found $cf_charset ..." 1>&5
2585725854
2585825855 CHARSET_DEFS="-DNO_CHARSET_${cf_def_charset}=0 $CHARSET_DEFS"
2585925856 else
2586025857 test -n "$verbose" && echo " not found $cf_charset" 1>&6
2586125858
25862 echo "${as_me:-configure}:25863: testing not found $cf_charset ..." 1>&5
25859 echo "${as_me:-configure}:25860: testing not found $cf_charset ..." 1>&5
2586325860
2586425861 fi
2586525862 done
2586625863 else
25867 echo "$as_me:25868: result: no" >&5
25864 echo "$as_me:25865: result: no" >&5
2586825865 echo "${ECHO_T}no" >&6
2586925866 fi
2587025867
25871 echo "$as_me:25872: checking for ANSI C header files" >&5
25868 echo "$as_me:25869: checking for ANSI C header files" >&5
2587225869 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
2587325870 if test "${ac_cv_header_stdc+set}" = set; then
2587425871 echo $ECHO_N "(cached) $ECHO_C" >&6
2587525872 else
2587625873 cat >conftest.$ac_ext <<_ACEOF
25877 #line 25878 "configure"
25874 #line 25875 "configure"
2587825875 #include "confdefs.h"
2587925876 #include <stdlib.h>
2588025877 #include <stdarg.h>
2588225879 #include <float.h>
2588325880
2588425881 _ACEOF
25885 if { (eval echo "$as_me:25886: \"$ac_cpp conftest.$ac_ext\"") >&5
25882 if { (eval echo "$as_me:25883: \"$ac_cpp conftest.$ac_ext\"") >&5
2588625883 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2588725884 ac_status=$?
2588825885 egrep -v '^ *\+' conftest.er1 >conftest.err
2588925886 rm -f conftest.er1
2589025887 cat conftest.err >&5
25891 echo "$as_me:25892: \$? = $ac_status" >&5
25888 echo "$as_me:25889: \$? = $ac_status" >&5
2589225889 (exit $ac_status); } >/dev/null; then
2589325890 if test -s conftest.err; then
2589425891 ac_cpp_err=$ac_c_preproc_warn_flag
2591025907 if test $ac_cv_header_stdc = yes; then
2591125908 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
2591225909 cat >conftest.$ac_ext <<_ACEOF
25913 #line 25914 "configure"
25910 #line 25911 "configure"
2591425911 #include "confdefs.h"
2591525912 #include <string.h>
2591625913
2592825925 if test $ac_cv_header_stdc = yes; then
2592925926 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
2593025927 cat >conftest.$ac_ext <<_ACEOF
25931 #line 25932 "configure"
25928 #line 25929 "configure"
2593225929 #include "confdefs.h"
2593325930 #include <stdlib.h>
2593425931
2594925946 :
2595025947 else
2595125948 cat >conftest.$ac_ext <<_ACEOF
25952 #line 25953 "configure"
25949 #line 25950 "configure"
2595325950 #include "confdefs.h"
2595425951 #include <ctype.h>
2595525952 #if ((' ' & 0x0FF) == 0x020)
2597525972 }
2597625973 _ACEOF
2597725974 rm -f conftest$ac_exeext
25978 if { (eval echo "$as_me:25979: \"$ac_link\"") >&5
25975 if { (eval echo "$as_me:25976: \"$ac_link\"") >&5
2597925976 (eval $ac_link) 2>&5
2598025977 ac_status=$?
25981 echo "$as_me:25982: \$? = $ac_status" >&5
25978 echo "$as_me:25979: \$? = $ac_status" >&5
2598225979 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
25983 { (eval echo "$as_me:25984: \"$ac_try\"") >&5
25980 { (eval echo "$as_me:25981: \"$ac_try\"") >&5
2598425981 (eval $ac_try) 2>&5
2598525982 ac_status=$?
25986 echo "$as_me:25987: \$? = $ac_status" >&5
25983 echo "$as_me:25984: \$? = $ac_status" >&5
2598725984 (exit $ac_status); }; }; then
2598825985 :
2598925986 else
2599625993 fi
2599725994 fi
2599825995 fi
25999 echo "$as_me:26000: result: $ac_cv_header_stdc" >&5
25996 echo "$as_me:25997: result: $ac_cv_header_stdc" >&5
2600025997 echo "${ECHO_T}$ac_cv_header_stdc" >&6
2600125998 if test $ac_cv_header_stdc = yes; then
2600225999
2600626003
2600726004 fi
2600826005
26009 echo "$as_me:26010: checking whether time.h and sys/time.h may both be included" >&5
26006 echo "$as_me:26007: checking whether time.h and sys/time.h may both be included" >&5
2601026007 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
2601126008 if test "${ac_cv_header_time+set}" = set; then
2601226009 echo $ECHO_N "(cached) $ECHO_C" >&6
2601326010 else
2601426011 cat >conftest.$ac_ext <<_ACEOF
26015 #line 26016 "configure"
26012 #line 26013 "configure"
2601626013 #include "confdefs.h"
2601726014 #include <sys/types.h>
2601826015 #include <sys/time.h>
2602826025 }
2602926026 _ACEOF
2603026027 rm -f conftest.$ac_objext
26031 if { (eval echo "$as_me:26032: \"$ac_compile\"") >&5
26028 if { (eval echo "$as_me:26029: \"$ac_compile\"") >&5
2603226029 (eval $ac_compile) 2>&5
2603326030 ac_status=$?
26034 echo "$as_me:26035: \$? = $ac_status" >&5
26031 echo "$as_me:26032: \$? = $ac_status" >&5
2603526032 (exit $ac_status); } &&
2603626033 { ac_try='test -s conftest.$ac_objext'
26037 { (eval echo "$as_me:26038: \"$ac_try\"") >&5
26034 { (eval echo "$as_me:26035: \"$ac_try\"") >&5
2603826035 (eval $ac_try) 2>&5
2603926036 ac_status=$?
26040 echo "$as_me:26041: \$? = $ac_status" >&5
26037 echo "$as_me:26038: \$? = $ac_status" >&5
2604126038 (exit $ac_status); }; }; then
2604226039 ac_cv_header_time=yes
2604326040 else
2604726044 fi
2604826045 rm -f conftest.$ac_objext conftest.$ac_ext
2604926046 fi
26050 echo "$as_me:26051: result: $ac_cv_header_time" >&5
26047 echo "$as_me:26048: result: $ac_cv_header_time" >&5
2605126048 echo "${ECHO_T}$ac_cv_header_time" >&6
2605226049 if test $ac_cv_header_time = yes; then
2605326050
2606026057 ac_header_dirent=no
2606126058 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
2606226059 as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
26063 echo "$as_me:26064: checking for $ac_hdr that defines DIR" >&5
26060 echo "$as_me:26061: checking for $ac_hdr that defines DIR" >&5
2606426061 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
2606526062 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2606626063 echo $ECHO_N "(cached) $ECHO_C" >&6
2606726064 else
2606826065 cat >conftest.$ac_ext <<_ACEOF
26069 #line 26070 "configure"
26066 #line 26067 "configure"
2607026067 #include "confdefs.h"
2607126068 #include <sys/types.h>
2607226069 #include <$ac_hdr>
2608126078 }
2608226079 _ACEOF
2608326080 rm -f conftest.$ac_objext
26084 if { (eval echo "$as_me:26085: \"$ac_compile\"") >&5
26081 if { (eval echo "$as_me:26082: \"$ac_compile\"") >&5
2608526082 (eval $ac_compile) 2>&5
2608626083 ac_status=$?
26087 echo "$as_me:26088: \$? = $ac_status" >&5
26084 echo "$as_me:26085: \$? = $ac_status" >&5
2608826085 (exit $ac_status); } &&
2608926086 { ac_try='test -s conftest.$ac_objext'
26090 { (eval echo "$as_me:26091: \"$ac_try\"") >&5
26087 { (eval echo "$as_me:26088: \"$ac_try\"") >&5
2609126088 (eval $ac_try) 2>&5
2609226089 ac_status=$?
26093 echo "$as_me:26094: \$? = $ac_status" >&5
26090 echo "$as_me:26091: \$? = $ac_status" >&5
2609426091 (exit $ac_status); }; }; then
2609526092 eval "$as_ac_Header=yes"
2609626093 else
2610026097 fi
2610126098 rm -f conftest.$ac_objext conftest.$ac_ext
2610226099 fi
26103 echo "$as_me:26104: result: `eval echo '${'$as_ac_Header'}'`" >&5
26100 echo "$as_me:26101: result: `eval echo '${'$as_ac_Header'}'`" >&5
2610426101 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2610526102 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2610626103 cat >>confdefs.h <<EOF
2611326110 done
2611426111 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
2611526112 if test $ac_header_dirent = dirent.h; then
26116 echo "$as_me:26117: checking for opendir in -ldir" >&5
26113 echo "$as_me:26114: checking for opendir in -ldir" >&5
2611726114 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
2611826115 if test "${ac_cv_lib_dir_opendir+set}" = set; then
2611926116 echo $ECHO_N "(cached) $ECHO_C" >&6
2612126118 ac_check_lib_save_LIBS=$LIBS
2612226119 LIBS="-ldir $LIBS"
2612326120 cat >conftest.$ac_ext <<_ACEOF
26124 #line 26125 "configure"
26121 #line 26122 "configure"
2612526122 #include "confdefs.h"
2612626123
2612726124 /* Override any gcc2 internal prototype to avoid an error. */
2614026137 }
2614126138 _ACEOF
2614226139 rm -f conftest.$ac_objext conftest$ac_exeext
26143 if { (eval echo "$as_me:26144: \"$ac_link\"") >&5
26140 if { (eval echo "$as_me:26141: \"$ac_link\"") >&5
2614426141 (eval $ac_link) 2>&5
2614526142 ac_status=$?
26146 echo "$as_me:26147: \$? = $ac_status" >&5
26143 echo "$as_me:26144: \$? = $ac_status" >&5
2614726144 (exit $ac_status); } &&
2614826145 { ac_try='test -s conftest$ac_exeext'
26149 { (eval echo "$as_me:26150: \"$ac_try\"") >&5
26146 { (eval echo "$as_me:26147: \"$ac_try\"") >&5
2615026147 (eval $ac_try) 2>&5
2615126148 ac_status=$?
26152 echo "$as_me:26153: \$? = $ac_status" >&5
26149 echo "$as_me:26150: \$? = $ac_status" >&5
2615326150 (exit $ac_status); }; }; then
2615426151 ac_cv_lib_dir_opendir=yes
2615526152 else
2616026157 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2616126158 LIBS=$ac_check_lib_save_LIBS
2616226159 fi
26163 echo "$as_me:26164: result: $ac_cv_lib_dir_opendir" >&5
26160 echo "$as_me:26161: result: $ac_cv_lib_dir_opendir" >&5
2616426161 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
2616526162 if test $ac_cv_lib_dir_opendir = yes; then
2616626163 LIBS="$LIBS -ldir"
2616726164 fi
2616826165
2616926166 else
26170 echo "$as_me:26171: checking for opendir in -lx" >&5
26167 echo "$as_me:26168: checking for opendir in -lx" >&5
2617126168 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
2617226169 if test "${ac_cv_lib_x_opendir+set}" = set; then
2617326170 echo $ECHO_N "(cached) $ECHO_C" >&6
2617526172 ac_check_lib_save_LIBS=$LIBS
2617626173 LIBS="-lx $LIBS"
2617726174 cat >conftest.$ac_ext <<_ACEOF
26178 #line 26179 "configure"
26175 #line 26176 "configure"
2617926176 #include "confdefs.h"
2618026177
2618126178 /* Override any gcc2 internal prototype to avoid an error. */
2619426191 }
2619526192 _ACEOF
2619626193 rm -f conftest.$ac_objext conftest$ac_exeext
26197 if { (eval echo "$as_me:26198: \"$ac_link\"") >&5
26194 if { (eval echo "$as_me:26195: \"$ac_link\"") >&5
2619826195 (eval $ac_link) 2>&5
2619926196 ac_status=$?
26200 echo "$as_me:26201: \$? = $ac_status" >&5
26197 echo "$as_me:26198: \$? = $ac_status" >&5
2620126198 (exit $ac_status); } &&
2620226199 { ac_try='test -s conftest$ac_exeext'
26203 { (eval echo "$as_me:26204: \"$ac_try\"") >&5
26200 { (eval echo "$as_me:26201: \"$ac_try\"") >&5
2620426201 (eval $ac_try) 2>&5
2620526202 ac_status=$?
26206 echo "$as_me:26207: \$? = $ac_status" >&5
26203 echo "$as_me:26204: \$? = $ac_status" >&5
2620726204 (exit $ac_status); }; }; then
2620826205 ac_cv_lib_x_opendir=yes
2620926206 else
2621426211 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2621526212 LIBS=$ac_check_lib_save_LIBS
2621626213 fi
26217 echo "$as_me:26218: result: $ac_cv_lib_x_opendir" >&5
26214 echo "$as_me:26215: result: $ac_cv_lib_x_opendir" >&5
2621826215 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
2621926216 if test $ac_cv_lib_x_opendir = yes; then
2622026217 LIBS="$LIBS -lx"
2624226239
2624326240 do
2624426241 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
26245 echo "$as_me:26246: checking for $ac_header" >&5
26242 echo "$as_me:26243: checking for $ac_header" >&5
2624626243 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2624726244 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2624826245 echo $ECHO_N "(cached) $ECHO_C" >&6
2624926246 else
2625026247 cat >conftest.$ac_ext <<_ACEOF
26251 #line 26252 "configure"
26248 #line 26249 "configure"
2625226249 #include "confdefs.h"
2625326250 #include <$ac_header>
2625426251 _ACEOF
26255 if { (eval echo "$as_me:26256: \"$ac_cpp conftest.$ac_ext\"") >&5
26252 if { (eval echo "$as_me:26253: \"$ac_cpp conftest.$ac_ext\"") >&5
2625626253 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2625726254 ac_status=$?
2625826255 egrep -v '^ *\+' conftest.er1 >conftest.err
2625926256 rm -f conftest.er1
2626026257 cat conftest.err >&5
26261 echo "$as_me:26262: \$? = $ac_status" >&5
26258 echo "$as_me:26259: \$? = $ac_status" >&5
2626226259 (exit $ac_status); } >/dev/null; then
2626326260 if test -s conftest.err; then
2626426261 ac_cpp_err=$ac_c_preproc_warn_flag
2627726274 fi
2627826275 rm -f conftest.err conftest.$ac_ext
2627926276 fi
26280 echo "$as_me:26281: result: `eval echo '${'$as_ac_Header'}'`" >&5
26277 echo "$as_me:26278: result: `eval echo '${'$as_ac_Header'}'`" >&5
2628126278 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2628226279 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2628326280 cat >>confdefs.h <<EOF
2628726284 fi
2628826285 done
2628926286
26290 echo "$as_me:26291: checking termio.h and termios.h" >&5
26287 echo "$as_me:26288: checking termio.h and termios.h" >&5
2629126288 echo $ECHO_N "checking termio.h and termios.h... $ECHO_C" >&6
2629226289 if test "${cf_cv_termio_and_termios+set}" = set; then
2629326290 echo $ECHO_N "(cached) $ECHO_C" >&6
2629426291 else
2629526292
2629626293 cat >conftest.$ac_ext <<_ACEOF
26297 #line 26298 "configure"
26294 #line 26295 "configure"
2629826295 #include "confdefs.h"
2629926296
2630026297 #if HAVE_TERMIO_H
2631226309 }
2631326310 _ACEOF
2631426311 rm -f conftest.$ac_objext
26315 if { (eval echo "$as_me:26316: \"$ac_compile\"") >&5
26312 if { (eval echo "$as_me:26313: \"$ac_compile\"") >&5
2631626313 (eval $ac_compile) 2>&5
2631726314 ac_status=$?
26318 echo "$as_me:26319: \$? = $ac_status" >&5
26315 echo "$as_me:26316: \$? = $ac_status" >&5
2631926316 (exit $ac_status); } &&
2632026317 { ac_try='test -s conftest.$ac_objext'
26321 { (eval echo "$as_me:26322: \"$ac_try\"") >&5
26318 { (eval echo "$as_me:26319: \"$ac_try\"") >&5
2632226319 (eval $ac_try) 2>&5
2632326320 ac_status=$?
26324 echo "$as_me:26325: \$? = $ac_status" >&5
26321 echo "$as_me:26322: \$? = $ac_status" >&5
2632526322 (exit $ac_status); }; }; then
2632626323 cf_cv_termio_and_termios=yes
2632726324 else
2633226329 rm -f conftest.$ac_objext conftest.$ac_ext
2633326330 fi
2633426331
26335 echo "$as_me:26336: result: $cf_cv_termio_and_termios" >&5
26332 echo "$as_me:26333: result: $cf_cv_termio_and_termios" >&5
2633626333 echo "${ECHO_T}$cf_cv_termio_and_termios" >&6
2633726334 test $cf_cv_termio_and_termios = no &&
2633826335 cat >>confdefs.h <<\EOF
2633926336 #define TERMIO_AND_TERMIOS 1
2634026337 EOF
2634126338
26342 echo "$as_me:26343: checking for sigaction and structs" >&5
26339 echo "$as_me:26340: checking for sigaction and structs" >&5
2634326340 echo $ECHO_N "checking for sigaction and structs... $ECHO_C" >&6
2634426341 if test "${cf_cv_func_sigaction+set}" = set; then
2634526342 echo $ECHO_N "(cached) $ECHO_C" >&6
2634626343 else
2634726344
2634826345 cat >conftest.$ac_ext <<_ACEOF
26349 #line 26350 "configure"
26346 #line 26347 "configure"
2635026347 #include "confdefs.h"
2635126348
2635226349 #include <sys/types.h>
2636626363 }
2636726364 _ACEOF
2636826365 rm -f conftest.$ac_objext conftest$ac_exeext
26369 if { (eval echo "$as_me:26370: \"$ac_link\"") >&5
26366 if { (eval echo "$as_me:26367: \"$ac_link\"") >&5
2637026367 (eval $ac_link) 2>&5
2637126368 ac_status=$?
26372 echo "$as_me:26373: \$? = $ac_status" >&5
26369 echo "$as_me:26370: \$? = $ac_status" >&5
2637326370 (exit $ac_status); } &&
2637426371 { ac_try='test -s conftest$ac_exeext'
26375 { (eval echo "$as_me:26376: \"$ac_try\"") >&5
26372 { (eval echo "$as_me:26373: \"$ac_try\"") >&5
2637626373 (eval $ac_try) 2>&5
2637726374 ac_status=$?
26378 echo "$as_me:26379: \$? = $ac_status" >&5
26375 echo "$as_me:26376: \$? = $ac_status" >&5
2637926376 (exit $ac_status); }; }; then
2638026377 cf_cv_func_sigaction=yes
2638126378 else
2638626383 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2638726384
2638826385 fi
26389 echo "$as_me:26390: result: $cf_cv_func_sigaction" >&5
26386 echo "$as_me:26387: result: $cf_cv_func_sigaction" >&5
2639026387 echo "${ECHO_T}$cf_cv_func_sigaction" >&6
2639126388 test "$cf_cv_func_sigaction" = yes &&
2639226389 cat >>confdefs.h <<\EOF
2639626393 for ac_header in sys/wait.h
2639726394 do
2639826395 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
26399 echo "$as_me:26400: checking for $ac_header" >&5
26396 echo "$as_me:26397: checking for $ac_header" >&5
2640026397 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2640126398 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2640226399 echo $ECHO_N "(cached) $ECHO_C" >&6
2640326400 else
2640426401 cat >conftest.$ac_ext <<_ACEOF
26405 #line 26406 "configure"
26402 #line 26403 "configure"
2640626403 #include "confdefs.h"
2640726404 #include <$ac_header>
2640826405 _ACEOF
26409 if { (eval echo "$as_me:26410: \"$ac_cpp conftest.$ac_ext\"") >&5
26406 if { (eval echo "$as_me:26407: \"$ac_cpp conftest.$ac_ext\"") >&5
2641026407 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2641126408 ac_status=$?
2641226409 egrep -v '^ *\+' conftest.er1 >conftest.err
2641326410 rm -f conftest.er1
2641426411 cat conftest.err >&5
26415 echo "$as_me:26416: \$? = $ac_status" >&5
26412 echo "$as_me:26413: \$? = $ac_status" >&5
2641626413 (exit $ac_status); } >/dev/null; then
2641726414 if test -s conftest.err; then
2641826415 ac_cpp_err=$ac_c_preproc_warn_flag
2643126428 fi
2643226429 rm -f conftest.err conftest.$ac_ext
2643326430 fi
26434 echo "$as_me:26435: result: `eval echo '${'$as_ac_Header'}'`" >&5
26431 echo "$as_me:26432: result: `eval echo '${'$as_ac_Header'}'`" >&5
2643526432 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2643626433 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2643726434 cat >>confdefs.h <<EOF
2645226449 for ac_header in wait.h
2645326450 do
2645426451 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
26455 echo "$as_me:26456: checking for $ac_header" >&5
26452 echo "$as_me:26453: checking for $ac_header" >&5
2645626453 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2645726454 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2645826455 echo $ECHO_N "(cached) $ECHO_C" >&6
2645926456 else
2646026457 cat >conftest.$ac_ext <<_ACEOF
26461 #line 26462 "configure"
26458 #line 26459 "configure"
2646226459 #include "confdefs.h"
2646326460 #include <$ac_header>
2646426461 _ACEOF
26465 if { (eval echo "$as_me:26466: \"$ac_cpp conftest.$ac_ext\"") >&5
26462 if { (eval echo "$as_me:26463: \"$ac_cpp conftest.$ac_ext\"") >&5
2646626463 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2646726464 ac_status=$?
2646826465 egrep -v '^ *\+' conftest.er1 >conftest.err
2646926466 rm -f conftest.er1
2647026467 cat conftest.err >&5
26471 echo "$as_me:26472: \$? = $ac_status" >&5
26468 echo "$as_me:26469: \$? = $ac_status" >&5
2647226469 (exit $ac_status); } >/dev/null; then
2647326470 if test -s conftest.err; then
2647426471 ac_cpp_err=$ac_c_preproc_warn_flag
2648726484 fi
2648826485 rm -f conftest.err conftest.$ac_ext
2648926486 fi
26490 echo "$as_me:26491: result: `eval echo '${'$as_ac_Header'}'`" >&5
26487 echo "$as_me:26488: result: `eval echo '${'$as_ac_Header'}'`" >&5
2649126488 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2649226489 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2649326490 cat >>confdefs.h <<EOF
2650026497 for ac_header in waitstatus.h
2650126498 do
2650226499 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
26503 echo "$as_me:26504: checking for $ac_header" >&5
26500 echo "$as_me:26501: checking for $ac_header" >&5
2650426501 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2650526502 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2650626503 echo $ECHO_N "(cached) $ECHO_C" >&6
2650726504 else
2650826505 cat >conftest.$ac_ext <<_ACEOF
26509 #line 26510 "configure"
26506 #line 26507 "configure"
2651026507 #include "confdefs.h"
2651126508 #include <$ac_header>
2651226509 _ACEOF
26513 if { (eval echo "$as_me:26514: \"$ac_cpp conftest.$ac_ext\"") >&5
26510 if { (eval echo "$as_me:26511: \"$ac_cpp conftest.$ac_ext\"") >&5
2651426511 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2651526512 ac_status=$?
2651626513 egrep -v '^ *\+' conftest.er1 >conftest.err
2651726514 rm -f conftest.er1
2651826515 cat conftest.err >&5
26519 echo "$as_me:26520: \$? = $ac_status" >&5
26516 echo "$as_me:26517: \$? = $ac_status" >&5
2652026517 (exit $ac_status); } >/dev/null; then
2652126518 if test -s conftest.err; then
2652226519 ac_cpp_err=$ac_c_preproc_warn_flag
2653526532 fi
2653626533 rm -f conftest.err conftest.$ac_ext
2653726534 fi
26538 echo "$as_me:26539: result: `eval echo '${'$as_ac_Header'}'`" >&5
26535 echo "$as_me:26536: result: `eval echo '${'$as_ac_Header'}'`" >&5
2653926536 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2654026537 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2654126538 cat >>confdefs.h <<EOF
2655726554 fi
2655826555 fi
2655926556
26560 echo "$as_me:26561: checking for union wait" >&5
26557 echo "$as_me:26558: checking for union wait" >&5
2656126558 echo $ECHO_N "checking for union wait... $ECHO_C" >&6
2656226559 if test "${cf_cv_type_unionwait+set}" = set; then
2656326560 echo $ECHO_N "(cached) $ECHO_C" >&6
2656426561 else
2656526562
2656626563 cat >conftest.$ac_ext <<_ACEOF
26567 #line 26568 "configure"
26564 #line 26565 "configure"
2656826565 #include "confdefs.h"
2656926566 $cf_wait_headers
2657026567 int
2658026577 }
2658126578 _ACEOF
2658226579 rm -f conftest.$ac_objext conftest$ac_exeext
26583 if { (eval echo "$as_me:26584: \"$ac_link\"") >&5
26580 if { (eval echo "$as_me:26581: \"$ac_link\"") >&5
2658426581 (eval $ac_link) 2>&5
2658526582 ac_status=$?
26586 echo "$as_me:26587: \$? = $ac_status" >&5
26583 echo "$as_me:26584: \$? = $ac_status" >&5
2658726584 (exit $ac_status); } &&
2658826585 { ac_try='test -s conftest$ac_exeext'
26589 { (eval echo "$as_me:26590: \"$ac_try\"") >&5
26586 { (eval echo "$as_me:26587: \"$ac_try\"") >&5
2659026587 (eval $ac_try) 2>&5
2659126588 ac_status=$?
26592 echo "$as_me:26593: \$? = $ac_status" >&5
26589 echo "$as_me:26590: \$? = $ac_status" >&5
2659326590 (exit $ac_status); }; }; then
2659426591 cf_cv_type_unionwait=no
2659526592 echo compiles ok w/o union wait 1>&5
2659926596 cat conftest.$ac_ext >&5
2660026597
2660126598 cat >conftest.$ac_ext <<_ACEOF
26602 #line 26603 "configure"
26599 #line 26600 "configure"
2660326600 #include "confdefs.h"
2660426601 $cf_wait_headers
2660526602 int
2661926616 }
2662026617 _ACEOF
2662126618 rm -f conftest.$ac_objext conftest$ac_exeext
26622 if { (eval echo "$as_me:26623: \"$ac_link\"") >&5
26619 if { (eval echo "$as_me:26620: \"$ac_link\"") >&5
2662326620 (eval $ac_link) 2>&5
2662426621 ac_status=$?
26625 echo "$as_me:26626: \$? = $ac_status" >&5
26622 echo "$as_me:26623: \$? = $ac_status" >&5
2662626623 (exit $ac_status); } &&
2662726624 { ac_try='test -s conftest$ac_exeext'
26628 { (eval echo "$as_me:26629: \"$ac_try\"") >&5
26625 { (eval echo "$as_me:26626: \"$ac_try\"") >&5
2662926626 (eval $ac_try) 2>&5
2663026627 ac_status=$?
26631 echo "$as_me:26632: \$? = $ac_status" >&5
26628 echo "$as_me:26629: \$? = $ac_status" >&5
2663226629 (exit $ac_status); }; }; then
2663326630 cf_cv_type_unionwait=yes
2663426631 echo compiles ok with union wait and possibly macros too 1>&5
2664326640 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2664426641 fi
2664526642
26646 echo "$as_me:26647: result: $cf_cv_type_unionwait" >&5
26643 echo "$as_me:26644: result: $cf_cv_type_unionwait" >&5
2664726644 echo "${ECHO_T}$cf_cv_type_unionwait" >&6
2664826645 test $cf_cv_type_unionwait = yes &&
2664926646 cat >>confdefs.h <<\EOF
2665226649
2665326650 if test $cf_cv_type_unionwait = yes; then
2665426651
26655 echo "$as_me:26656: checking if union wait can be used as wait-arg" >&5
26652 echo "$as_me:26653: checking if union wait can be used as wait-arg" >&5
2665626653 echo $ECHO_N "checking if union wait can be used as wait-arg... $ECHO_C" >&6
2665726654 if test "${cf_cv_arg_union_wait+set}" = set; then
2665826655 echo $ECHO_N "(cached) $ECHO_C" >&6
2665926656 else
2666026657
2666126658 cat >conftest.$ac_ext <<_ACEOF
26662 #line 26663 "configure"
26659 #line 26660 "configure"
2666326660 #include "confdefs.h"
2666426661 $cf_wait_headers
2666526662 int
2667126668 }
2667226669 _ACEOF
2667326670 rm -f conftest.$ac_objext
26674 if { (eval echo "$as_me:26675: \"$ac_compile\"") >&5
26671 if { (eval echo "$as_me:26672: \"$ac_compile\"") >&5
2667526672 (eval $ac_compile) 2>&5
2667626673 ac_status=$?
26677 echo "$as_me:26678: \$? = $ac_status" >&5
26674 echo "$as_me:26675: \$? = $ac_status" >&5
2667826675 (exit $ac_status); } &&
2667926676 { ac_try='test -s conftest.$ac_objext'
26680 { (eval echo "$as_me:26681: \"$ac_try\"") >&5
26677 { (eval echo "$as_me:26678: \"$ac_try\"") >&5
2668126678 (eval $ac_try) 2>&5
2668226679 ac_status=$?
26683 echo "$as_me:26684: \$? = $ac_status" >&5
26680 echo "$as_me:26681: \$? = $ac_status" >&5
2668426681 (exit $ac_status); }; }; then
2668526682 cf_cv_arg_union_wait=yes
2668626683 else
2669226689
2669326690 fi
2669426691
26695 echo "$as_me:26696: result: $cf_cv_arg_union_wait" >&5
26692 echo "$as_me:26693: result: $cf_cv_arg_union_wait" >&5
2669626693 echo "${ECHO_T}$cf_cv_arg_union_wait" >&6
2669726694 test $cf_cv_arg_union_wait = yes &&
2669826695 cat >>confdefs.h <<\EOF
2669926696 #define WAIT_USES_UNION 1
2670026697 EOF
2670126698
26702 echo "$as_me:26703: checking if union wait can be used as waitpid-arg" >&5
26699 echo "$as_me:26700: checking if union wait can be used as waitpid-arg" >&5
2670326700 echo $ECHO_N "checking if union wait can be used as waitpid-arg... $ECHO_C" >&6
2670426701 if test "${cf_cv_arg_union_waitpid+set}" = set; then
2670526702 echo $ECHO_N "(cached) $ECHO_C" >&6
2670626703 else
2670726704
2670826705 cat >conftest.$ac_ext <<_ACEOF
26709 #line 26710 "configure"
26706 #line 26707 "configure"
2671026707 #include "confdefs.h"
2671126708 $cf_wait_headers
2671226709 int
2671826715 }
2671926716 _ACEOF
2672026717 rm -f conftest.$ac_objext
26721 if { (eval echo "$as_me:26722: \"$ac_compile\"") >&5
26718 if { (eval echo "$as_me:26719: \"$ac_compile\"") >&5
2672226719 (eval $ac_compile) 2>&5
2672326720 ac_status=$?
26724 echo "$as_me:26725: \$? = $ac_status" >&5
26721 echo "$as_me:26722: \$? = $ac_status" >&5
2672526722 (exit $ac_status); } &&
2672626723 { ac_try='test -s conftest.$ac_objext'
26727 { (eval echo "$as_me:26728: \"$ac_try\"") >&5
26724 { (eval echo "$as_me:26725: \"$ac_try\"") >&5
2672826725 (eval $ac_try) 2>&5
2672926726 ac_status=$?
26730 echo "$as_me:26731: \$? = $ac_status" >&5
26727 echo "$as_me:26728: \$? = $ac_status" >&5
2673126728 (exit $ac_status); }; }; then
2673226729 cf_cv_arg_union_waitpid=yes
2673326730 else
2673926736
2674026737 fi
2674126738
26742 echo "$as_me:26743: result: $cf_cv_arg_union_waitpid" >&5
26739 echo "$as_me:26740: result: $cf_cv_arg_union_waitpid" >&5
2674326740 echo "${ECHO_T}$cf_cv_arg_union_waitpid" >&6
2674426741 test $cf_cv_arg_union_waitpid = yes &&
2674526742 cat >>confdefs.h <<\EOF
2674826745
2674926746 fi
2675026747
26751 echo "$as_me:26752: checking for uid_t in sys/types.h" >&5
26748 echo "$as_me:26749: checking for uid_t in sys/types.h" >&5
2675226749 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
2675326750 if test "${ac_cv_type_uid_t+set}" = set; then
2675426751 echo $ECHO_N "(cached) $ECHO_C" >&6
2675526752 else
2675626753 cat >conftest.$ac_ext <<_ACEOF
26757 #line 26758 "configure"
26754 #line 26755 "configure"
2675826755 #include "confdefs.h"
2675926756 #include <sys/types.h>
2676026757
2676826765 rm -rf conftest*
2676926766
2677026767 fi
26771 echo "$as_me:26772: result: $ac_cv_type_uid_t" >&5
26768 echo "$as_me:26769: result: $ac_cv_type_uid_t" >&5
2677226769 echo "${ECHO_T}$ac_cv_type_uid_t" >&6
2677326770 if test $ac_cv_type_uid_t = no; then
2677426771
2678226779
2678326780 fi
2678426781
26785 echo "$as_me:26786: checking type of array argument to getgroups" >&5
26782 echo "$as_me:26783: checking type of array argument to getgroups" >&5
2678626783 echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6
2678726784 if test "${ac_cv_type_getgroups+set}" = set; then
2678826785 echo $ECHO_N "(cached) $ECHO_C" >&6
2679126788 ac_cv_type_getgroups=cross
2679226789 else
2679326790 cat >conftest.$ac_ext <<_ACEOF
26794 #line 26795 "configure"
26791 #line 26792 "configure"
2679526792 #include "confdefs.h"
2679626793 /* Thanks to Mike Rendell for this test. */
2679726794 #include <sys/types.h>
2681726814 }
2681826815 _ACEOF
2681926816 rm -f conftest$ac_exeext
26820 if { (eval echo "$as_me:26821: \"$ac_link\"") >&5
26817 if { (eval echo "$as_me:26818: \"$ac_link\"") >&5
2682126818 (eval $ac_link) 2>&5
2682226819 ac_status=$?
26823 echo "$as_me:26824: \$? = $ac_status" >&5
26820 echo "$as_me:26821: \$? = $ac_status" >&5
2682426821 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
26825 { (eval echo "$as_me:26826: \"$ac_try\"") >&5
26822 { (eval echo "$as_me:26823: \"$ac_try\"") >&5
2682626823 (eval $ac_try) 2>&5
2682726824 ac_status=$?
26828 echo "$as_me:26829: \$? = $ac_status" >&5
26825 echo "$as_me:26826: \$? = $ac_status" >&5
2682926826 (exit $ac_status); }; }; then
2683026827 ac_cv_type_getgroups=gid_t
2683126828 else
2683826835 fi
2683926836 if test $ac_cv_type_getgroups = cross; then
2684026837 cat >conftest.$ac_ext <<_ACEOF
26841 #line 26842 "configure"
26838 #line 26839 "configure"
2684226839 #include "confdefs.h"
2684326840 #include <unistd.h>
2684426841
2685326850
2685426851 fi
2685526852 fi
26856 echo "$as_me:26857: result: $ac_cv_type_getgroups" >&5
26853 echo "$as_me:26854: result: $ac_cv_type_getgroups" >&5
2685726854 echo "${ECHO_T}$ac_cv_type_getgroups" >&6
2685826855
2685926856 cat >>confdefs.h <<EOF
2686026857 #define GETGROUPS_T $ac_cv_type_getgroups
2686126858 EOF
2686226859
26863 echo "$as_me:26864: checking for off_t" >&5
26860 echo "$as_me:26861: checking for off_t" >&5
2686426861 echo $ECHO_N "checking for off_t... $ECHO_C" >&6
2686526862 if test "${ac_cv_type_off_t+set}" = set; then
2686626863 echo $ECHO_N "(cached) $ECHO_C" >&6
2686726864 else
2686826865 cat >conftest.$ac_ext <<_ACEOF
26869 #line 26870 "configure"
26866 #line 26867 "configure"
2687026867 #include "confdefs.h"
2687126868 $ac_includes_default
2687226869 int
2688126878 }
2688226879 _ACEOF
2688326880 rm -f conftest.$ac_objext
26884 if { (eval echo "$as_me:26885: \"$ac_compile\"") >&5
26881 if { (eval echo "$as_me:26882: \"$ac_compile\"") >&5
2688526882 (eval $ac_compile) 2>&5
2688626883 ac_status=$?
26887 echo "$as_me:26888: \$? = $ac_status" >&5
26884 echo "$as_me:26885: \$? = $ac_status" >&5
2688826885 (exit $ac_status); } &&
2688926886 { ac_try='test -s conftest.$ac_objext'
26890 { (eval echo "$as_me:26891: \"$ac_try\"") >&5
26887 { (eval echo "$as_me:26888: \"$ac_try\"") >&5
2689126888 (eval $ac_try) 2>&5
2689226889 ac_status=$?
26893 echo "$as_me:26894: \$? = $ac_status" >&5
26890 echo "$as_me:26891: \$? = $ac_status" >&5
2689426891 (exit $ac_status); }; }; then
2689526892 ac_cv_type_off_t=yes
2689626893 else
2690026897 fi
2690126898 rm -f conftest.$ac_objext conftest.$ac_ext
2690226899 fi
26903 echo "$as_me:26904: result: $ac_cv_type_off_t" >&5
26900 echo "$as_me:26901: result: $ac_cv_type_off_t" >&5
2690426901 echo "${ECHO_T}$ac_cv_type_off_t" >&6
2690526902 if test $ac_cv_type_off_t = yes; then
2690626903 :
2691226909
2691326910 fi
2691426911
26915 echo "$as_me:26916: checking for pid_t" >&5
26912 echo "$as_me:26913: checking for pid_t" >&5
2691626913 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
2691726914 if test "${ac_cv_type_pid_t+set}" = set; then
2691826915 echo $ECHO_N "(cached) $ECHO_C" >&6
2691926916 else
2692026917 cat >conftest.$ac_ext <<_ACEOF
26921 #line 26922 "configure"
26918 #line 26919 "configure"
2692226919 #include "confdefs.h"
2692326920 $ac_includes_default
2692426921 int
2693326930 }
2693426931 _ACEOF
2693526932 rm -f conftest.$ac_objext
26936 if { (eval echo "$as_me:26937: \"$ac_compile\"") >&5
26933 if { (eval echo "$as_me:26934: \"$ac_compile\"") >&5
2693726934 (eval $ac_compile) 2>&5
2693826935 ac_status=$?
26939 echo "$as_me:26940: \$? = $ac_status" >&5
26936 echo "$as_me:26937: \$? = $ac_status" >&5
2694026937 (exit $ac_status); } &&
2694126938 { ac_try='test -s conftest.$ac_objext'
26942 { (eval echo "$as_me:26943: \"$ac_try\"") >&5
26939 { (eval echo "$as_me:26940: \"$ac_try\"") >&5
2694326940 (eval $ac_try) 2>&5
2694426941 ac_status=$?
26945 echo "$as_me:26946: \$? = $ac_status" >&5
26942 echo "$as_me:26943: \$? = $ac_status" >&5
2694626943 (exit $ac_status); }; }; then
2694726944 ac_cv_type_pid_t=yes
2694826945 else
2695226949 fi
2695326950 rm -f conftest.$ac_objext conftest.$ac_ext
2695426951 fi
26955 echo "$as_me:26956: result: $ac_cv_type_pid_t" >&5
26952 echo "$as_me:26953: result: $ac_cv_type_pid_t" >&5
2695626953 echo "${ECHO_T}$ac_cv_type_pid_t" >&6
2695726954 if test $ac_cv_type_pid_t = yes; then
2695826955 :
2696426961
2696526962 fi
2696626963
26967 echo "$as_me:26968: checking for uid_t in sys/types.h" >&5
26964 echo "$as_me:26965: checking for uid_t in sys/types.h" >&5
2696826965 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
2696926966 if test "${ac_cv_type_uid_t+set}" = set; then
2697026967 echo $ECHO_N "(cached) $ECHO_C" >&6
2697126968 else
2697226969 cat >conftest.$ac_ext <<_ACEOF
26973 #line 26974 "configure"
26970 #line 26971 "configure"
2697426971 #include "confdefs.h"
2697526972 #include <sys/types.h>
2697626973
2698426981 rm -rf conftest*
2698526982
2698626983 fi
26987 echo "$as_me:26988: result: $ac_cv_type_uid_t" >&5
26984 echo "$as_me:26985: result: $ac_cv_type_uid_t" >&5
2698826985 echo "${ECHO_T}$ac_cv_type_uid_t" >&6
2698926986 if test $ac_cv_type_uid_t = no; then
2699026987
2699826995
2699926996 fi
2700026997
27001 echo "$as_me:27002: checking for mode_t" >&5
26998 echo "$as_me:26999: checking for mode_t" >&5
2700226999 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6
2700327000 if test "${ac_cv_type_mode_t+set}" = set; then
2700427001 echo $ECHO_N "(cached) $ECHO_C" >&6
2700527002 else
2700627003 cat >conftest.$ac_ext <<_ACEOF
27007 #line 27008 "configure"
27004 #line 27005 "configure"
2700827005 #include "confdefs.h"
2700927006 $ac_includes_default
2701027007 int
2701927016 }
2702027017 _ACEOF
2702127018 rm -f conftest.$ac_objext
27022 if { (eval echo "$as_me:27023: \"$ac_compile\"") >&5
27019 if { (eval echo "$as_me:27020: \"$ac_compile\"") >&5
2702327020 (eval $ac_compile) 2>&5
2702427021 ac_status=$?
27025 echo "$as_me:27026: \$? = $ac_status" >&5
27022 echo "$as_me:27023: \$? = $ac_status" >&5
2702627023 (exit $ac_status); } &&
2702727024 { ac_try='test -s conftest.$ac_objext'
27028 { (eval echo "$as_me:27029: \"$ac_try\"") >&5
27025 { (eval echo "$as_me:27026: \"$ac_try\"") >&5
2702927026 (eval $ac_try) 2>&5
2703027027 ac_status=$?
27031 echo "$as_me:27032: \$? = $ac_status" >&5
27028 echo "$as_me:27029: \$? = $ac_status" >&5
2703227029 (exit $ac_status); }; }; then
2703327030 ac_cv_type_mode_t=yes
2703427031 else
2703827035 fi
2703927036 rm -f conftest.$ac_objext conftest.$ac_ext
2704027037 fi
27041 echo "$as_me:27042: result: $ac_cv_type_mode_t" >&5
27038 echo "$as_me:27039: result: $ac_cv_type_mode_t" >&5
2704227039 echo "${ECHO_T}$ac_cv_type_mode_t" >&6
2704327040 if test $ac_cv_type_mode_t = yes; then
2704427041 :
2705027047
2705127048 fi
2705227049
27053 echo "$as_me:27054: checking for ssize_t" >&5
27050 echo "$as_me:27051: checking for ssize_t" >&5
2705427051 echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6
2705527052 if test "${ac_cv_type_ssize_t+set}" = set; then
2705627053 echo $ECHO_N "(cached) $ECHO_C" >&6
2705727054 else
2705827055 cat >conftest.$ac_ext <<_ACEOF
27059 #line 27060 "configure"
27056 #line 27057 "configure"
2706027057 #include "confdefs.h"
2706127058 $ac_includes_default
2706227059 int
2707127068 }
2707227069 _ACEOF
2707327070 rm -f conftest.$ac_objext
27074 if { (eval echo "$as_me:27075: \"$ac_compile\"") >&5
27071 if { (eval echo "$as_me:27072: \"$ac_compile\"") >&5
2707527072 (eval $ac_compile) 2>&5
2707627073 ac_status=$?
27077 echo "$as_me:27078: \$? = $ac_status" >&5
27074 echo "$as_me:27075: \$? = $ac_status" >&5
2707827075 (exit $ac_status); } &&
2707927076 { ac_try='test -s conftest.$ac_objext'
27080 { (eval echo "$as_me:27081: \"$ac_try\"") >&5
27077 { (eval echo "$as_me:27078: \"$ac_try\"") >&5
2708127078 (eval $ac_try) 2>&5
2708227079 ac_status=$?
27083 echo "$as_me:27084: \$? = $ac_status" >&5
27080 echo "$as_me:27081: \$? = $ac_status" >&5
2708427081 (exit $ac_status); }; }; then
2708527082 ac_cv_type_ssize_t=yes
2708627083 else
2709027087 fi
2709127088 rm -f conftest.$ac_objext conftest.$ac_ext
2709227089 fi
27093 echo "$as_me:27094: result: $ac_cv_type_ssize_t" >&5
27090 echo "$as_me:27091: result: $ac_cv_type_ssize_t" >&5
2709427091 echo "${ECHO_T}$ac_cv_type_ssize_t" >&6
2709527092 if test $ac_cv_type_ssize_t = yes; then
2709627093 ac_cv_type_ssize_t=yes
2710627103
2710727104 fi
2710827105
27109 echo "$as_me:27110: checking for socklen_t" >&5
27106 echo "$as_me:27107: checking for socklen_t" >&5
2711027107 echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6
2711127108 if test "${ac_cv_type_socklen_t+set}" = set; then
2711227109 echo $ECHO_N "(cached) $ECHO_C" >&6
2711327110 else
2711427111 cat >conftest.$ac_ext <<_ACEOF
27115 #line 27116 "configure"
27112 #line 27113 "configure"
2711627113 #include "confdefs.h"
2711727114
2711827115 #include <sys/types.h>
2713027127 }
2713127128 _ACEOF
2713227129 rm -f conftest.$ac_objext
27133 if { (eval echo "$as_me:27134: \"$ac_compile\"") >&5
27130 if { (eval echo "$as_me:27131: \"$ac_compile\"") >&5
2713427131 (eval $ac_compile) 2>&5
2713527132 ac_status=$?
27136 echo "$as_me:27137: \$? = $ac_status" >&5
27133 echo "$as_me:27134: \$? = $ac_status" >&5
2713727134 (exit $ac_status); } &&
2713827135 { ac_try='test -s conftest.$ac_objext'
27139 { (eval echo "$as_me:27140: \"$ac_try\"") >&5
27136 { (eval echo "$as_me:27137: \"$ac_try\"") >&5
2714027137 (eval $ac_try) 2>&5
2714127138 ac_status=$?
27142 echo "$as_me:27143: \$? = $ac_status" >&5
27139 echo "$as_me:27140: \$? = $ac_status" >&5
2714327140 (exit $ac_status); }; }; then
2714427141 ac_cv_type_socklen_t=yes
2714527142 else
2714927146 fi
2715027147 rm -f conftest.$ac_objext conftest.$ac_ext
2715127148 fi
27152 echo "$as_me:27153: result: $ac_cv_type_socklen_t" >&5
27149 echo "$as_me:27150: result: $ac_cv_type_socklen_t" >&5
2715327150 echo "${ECHO_T}$ac_cv_type_socklen_t" >&6
2715427151 if test $ac_cv_type_socklen_t = yes; then
2715527152 ac_cv_type_socklen_t=yes
2716527162
2716627163 fi
2716727164
27168 echo "$as_me:27169: checking for long long type" >&5
27165 echo "$as_me:27166: checking for long long type" >&5
2716927166 echo $ECHO_N "checking for long long type... $ECHO_C" >&6
2717027167 if test "${cf_cv_type_long_long+set}" = set; then
2717127168 echo $ECHO_N "(cached) $ECHO_C" >&6
2719627193 rm -f conftest*
2719727194
2719827195 fi
27199 echo "$as_me:27200: result: $cf_cv_type_long_long" >&5
27196 echo "$as_me:27197: result: $cf_cv_type_long_long" >&5
2720027197 echo "${ECHO_T}$cf_cv_type_long_long" >&6
2720127198
2720227199 if test "$cf_cv_type_long_long" = yes ; then
2720727204
2720827205 fi
2720927206
27210 echo "$as_me:27211: checking for tm.tm_gmtoff" >&5
27207 echo "$as_me:27208: checking for tm.tm_gmtoff" >&5
2721127208 echo $ECHO_N "checking for tm.tm_gmtoff... $ECHO_C" >&6
2721227209 if test "${cf_cv_tm_gmtoff+set}" = set; then
2721327210 echo $ECHO_N "(cached) $ECHO_C" >&6
2721427211 else
2721527212
2721627213 cat >conftest.$ac_ext <<_ACEOF
27217 #line 27218 "configure"
27214 #line 27215 "configure"
2721827215 #include "confdefs.h"
2721927216
2722027217 #ifdef TIME_WITH_SYS_TIME
2723927236 }
2724027237 _ACEOF
2724127238 rm -f conftest.$ac_objext
27242 if { (eval echo "$as_me:27243: \"$ac_compile\"") >&5
27239 if { (eval echo "$as_me:27240: \"$ac_compile\"") >&5
2724327240 (eval $ac_compile) 2>&5
2724427241 ac_status=$?
27245 echo "$as_me:27246: \$? = $ac_status" >&5
27242 echo "$as_me:27243: \$? = $ac_status" >&5
2724627243 (exit $ac_status); } &&
2724727244 { ac_try='test -s conftest.$ac_objext'
27248 { (eval echo "$as_me:27249: \"$ac_try\"") >&5
27245 { (eval echo "$as_me:27246: \"$ac_try\"") >&5
2724927246 (eval $ac_try) 2>&5
2725027247 ac_status=$?
27251 echo "$as_me:27252: \$? = $ac_status" >&5
27248 echo "$as_me:27249: \$? = $ac_status" >&5
2725227249 (exit $ac_status); }; }; then
2725327250 cf_cv_tm_gmtoff=yes
2725427251 else
2725927256 rm -f conftest.$ac_objext conftest.$ac_ext
2726027257 fi
2726127258
27262 echo "$as_me:27263: result: $cf_cv_tm_gmtoff" >&5
27259 echo "$as_me:27260: result: $cf_cv_tm_gmtoff" >&5
2726327260 echo "${ECHO_T}$cf_cv_tm_gmtoff" >&6
2726427261 test $cf_cv_tm_gmtoff = no &&
2726527262 cat >>confdefs.h <<\EOF
2726627263 #define DONT_HAVE_TM_GMTOFF 1
2726727264 EOF
2726827265
27269 echo "$as_me:27270: checking for int" >&5
27266 echo "$as_me:27267: checking for int" >&5
2727027267 echo $ECHO_N "checking for int... $ECHO_C" >&6
2727127268 if test "${ac_cv_type_int+set}" = set; then
2727227269 echo $ECHO_N "(cached) $ECHO_C" >&6
2727327270 else
2727427271 cat >conftest.$ac_ext <<_ACEOF
27275 #line 27276 "configure"
27272 #line 27273 "configure"
2727627273 #include "confdefs.h"
2727727274 $ac_includes_default
2727827275 int
2728727284 }
2728827285 _ACEOF
2728927286 rm -f conftest.$ac_objext
27290 if { (eval echo "$as_me:27291: \"$ac_compile\"") >&5
27287 if { (eval echo "$as_me:27288: \"$ac_compile\"") >&5
2729127288 (eval $ac_compile) 2>&5
2729227289 ac_status=$?
27293 echo "$as_me:27294: \$? = $ac_status" >&5
27290 echo "$as_me:27291: \$? = $ac_status" >&5
2729427291 (exit $ac_status); } &&
2729527292 { ac_try='test -s conftest.$ac_objext'
27296 { (eval echo "$as_me:27297: \"$ac_try\"") >&5
27293 { (eval echo "$as_me:27294: \"$ac_try\"") >&5
2729727294 (eval $ac_try) 2>&5
2729827295 ac_status=$?
27299 echo "$as_me:27300: \$? = $ac_status" >&5
27296 echo "$as_me:27297: \$? = $ac_status" >&5
2730027297 (exit $ac_status); }; }; then
2730127298 ac_cv_type_int=yes
2730227299 else
2730627303 fi
2730727304 rm -f conftest.$ac_objext conftest.$ac_ext
2730827305 fi
27309 echo "$as_me:27310: result: $ac_cv_type_int" >&5
27306 echo "$as_me:27307: result: $ac_cv_type_int" >&5
2731027307 echo "${ECHO_T}$ac_cv_type_int" >&6
2731127308
27312 echo "$as_me:27313: checking size of int" >&5
27309 echo "$as_me:27310: checking size of int" >&5
2731327310 echo $ECHO_N "checking size of int... $ECHO_C" >&6
2731427311 if test "${ac_cv_sizeof_int+set}" = set; then
2731527312 echo $ECHO_N "(cached) $ECHO_C" >&6
2731827315 if test "$cross_compiling" = yes; then
2731927316 # Depending upon the size, compute the lo and hi bounds.
2732027317 cat >conftest.$ac_ext <<_ACEOF
27321 #line 27322 "configure"
27318 #line 27319 "configure"
2732227319 #include "confdefs.h"
2732327320 $ac_includes_default
2732427321 int
2733027327 }
2733127328 _ACEOF
2733227329 rm -f conftest.$ac_objext
27333 if { (eval echo "$as_me:27334: \"$ac_compile\"") >&5
27330 if { (eval echo "$as_me:27331: \"$ac_compile\"") >&5
2733427331 (eval $ac_compile) 2>&5
2733527332 ac_status=$?
27336 echo "$as_me:27337: \$? = $ac_status" >&5
27333 echo "$as_me:27334: \$? = $ac_status" >&5
2733727334 (exit $ac_status); } &&
2733827335 { ac_try='test -s conftest.$ac_objext'
27339 { (eval echo "$as_me:27340: \"$ac_try\"") >&5
27336 { (eval echo "$as_me:27337: \"$ac_try\"") >&5
2734027337 (eval $ac_try) 2>&5
2734127338 ac_status=$?
27342 echo "$as_me:27343: \$? = $ac_status" >&5
27339 echo "$as_me:27340: \$? = $ac_status" >&5
2734327340 (exit $ac_status); }; }; then
2734427341 ac_lo=0 ac_mid=0
2734527342 while :; do
2734627343 cat >conftest.$ac_ext <<_ACEOF
27347 #line 27348 "configure"
27344 #line 27345 "configure"
2734827345 #include "confdefs.h"
2734927346 $ac_includes_default
2735027347 int
2735627353 }
2735727354 _ACEOF
2735827355 rm -f conftest.$ac_objext
27359 if { (eval echo "$as_me:27360: \"$ac_compile\"") >&5
27356 if { (eval echo "$as_me:27357: \"$ac_compile\"") >&5
2736027357 (eval $ac_compile) 2>&5
2736127358 ac_status=$?
27362 echo "$as_me:27363: \$? = $ac_status" >&5
27359 echo "$as_me:27360: \$? = $ac_status" >&5
2736327360 (exit $ac_status); } &&
2736427361 { ac_try='test -s conftest.$ac_objext'
27365 { (eval echo "$as_me:27366: \"$ac_try\"") >&5
27362 { (eval echo "$as_me:27363: \"$ac_try\"") >&5
2736627363 (eval $ac_try) 2>&5
2736727364 ac_status=$?
27368 echo "$as_me:27369: \$? = $ac_status" >&5
27365 echo "$as_me:27366: \$? = $ac_status" >&5
2736927366 (exit $ac_status); }; }; then
2737027367 ac_hi=$ac_mid; break
2737127368 else
2738127378 ac_hi=-1 ac_mid=-1
2738227379 while :; do
2738327380 cat >conftest.$ac_ext <<_ACEOF
27384 #line 27385 "configure"
27381 #line 27382 "configure"
2738527382 #include "confdefs.h"
2738627383 $ac_includes_default
2738727384 int
2739327390 }
2739427391 _ACEOF
2739527392 rm -f conftest.$ac_objext
27396 if { (eval echo "$as_me:27397: \"$ac_compile\"") >&5
27393 if { (eval echo "$as_me:27394: \"$ac_compile\"") >&5
2739727394 (eval $ac_compile) 2>&5
2739827395 ac_status=$?
27399 echo "$as_me:27400: \$? = $ac_status" >&5
27396 echo "$as_me:27397: \$? = $ac_status" >&5
2740027397 (exit $ac_status); } &&
2740127398 { ac_try='test -s conftest.$ac_objext'
27402 { (eval echo "$as_me:27403: \"$ac_try\"") >&5
27399 { (eval echo "$as_me:27400: \"$ac_try\"") >&5
2740327400 (eval $ac_try) 2>&5
2740427401 ac_status=$?
27405 echo "$as_me:27406: \$? = $ac_status" >&5
27402 echo "$as_me:27403: \$? = $ac_status" >&5
2740627403 (exit $ac_status); }; }; then
2740727404 ac_lo=$ac_mid; break
2740827405 else
2741827415 while test "x$ac_lo" != "x$ac_hi"; do
2741927416 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
2742027417 cat >conftest.$ac_ext <<_ACEOF
27421 #line 27422 "configure"
27418 #line 27419 "configure"
2742227419 #include "confdefs.h"
2742327420 $ac_includes_default
2742427421 int
2743027427 }
2743127428 _ACEOF
2743227429 rm -f conftest.$ac_objext
27433 if { (eval echo "$as_me:27434: \"$ac_compile\"") >&5
27430 if { (eval echo "$as_me:27431: \"$ac_compile\"") >&5
2743427431 (eval $ac_compile) 2>&5
2743527432 ac_status=$?
27436 echo "$as_me:27437: \$? = $ac_status" >&5
27433 echo "$as_me:27434: \$? = $ac_status" >&5
2743727434 (exit $ac_status); } &&
2743827435 { ac_try='test -s conftest.$ac_objext'
27439 { (eval echo "$as_me:27440: \"$ac_try\"") >&5
27436 { (eval echo "$as_me:27437: \"$ac_try\"") >&5
2744027437 (eval $ac_try) 2>&5
2744127438 ac_status=$?
27442 echo "$as_me:27443: \$? = $ac_status" >&5
27439 echo "$as_me:27440: \$? = $ac_status" >&5
2744327440 (exit $ac_status); }; }; then
2744427441 ac_hi=$ac_mid
2744527442 else
2745227449 ac_cv_sizeof_int=$ac_lo
2745327450 else
2745427451 if test "$cross_compiling" = yes; then
27455 { { echo "$as_me:27456: error: cannot run test program while cross compiling" >&5
27452 { { echo "$as_me:27453: error: cannot run test program while cross compiling" >&5
2745627453 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
2745727454 { (exit 1); exit 1; }; }
2745827455 else
2745927456 cat >conftest.$ac_ext <<_ACEOF
27460 #line 27461 "configure"
27457 #line 27458 "configure"
2746127458 #include "confdefs.h"
2746227459 $ac_includes_default
2746327460 int
2747327470 }
2747427471 _ACEOF
2747527472 rm -f conftest$ac_exeext
27476 if { (eval echo "$as_me:27477: \"$ac_link\"") >&5
27473 if { (eval echo "$as_me:27474: \"$ac_link\"") >&5
2747727474 (eval $ac_link) 2>&5
2747827475 ac_status=$?
27479 echo "$as_me:27480: \$? = $ac_status" >&5
27476 echo "$as_me:27477: \$? = $ac_status" >&5
2748027477 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
27481 { (eval echo "$as_me:27482: \"$ac_try\"") >&5
27478 { (eval echo "$as_me:27479: \"$ac_try\"") >&5
2748227479 (eval $ac_try) 2>&5
2748327480 ac_status=$?
27484 echo "$as_me:27485: \$? = $ac_status" >&5
27481 echo "$as_me:27482: \$? = $ac_status" >&5
2748527482 (exit $ac_status); }; }; then
2748627483 ac_cv_sizeof_int=`cat conftest.val`
2748727484 else
2749727494 ac_cv_sizeof_int=0
2749827495 fi
2749927496 fi
27500 echo "$as_me:27501: result: $ac_cv_sizeof_int" >&5
27497 echo "$as_me:27498: result: $ac_cv_sizeof_int" >&5
2750127498 echo "${ECHO_T}$ac_cv_sizeof_int" >&6
2750227499 cat >>confdefs.h <<EOF
2750327500 #define SIZEOF_INT $ac_cv_sizeof_int
2750527502
2750627503 if test "${ac_cv_type_int:+set}" = set; then
2750727504 if test "${ac_cv_sizeof_int:+set}" != set; then
27508 { echo "$as_me:27509: WARNING: using 4 for sizeof int" >&5
27505 { echo "$as_me:27506: WARNING: using 4 for sizeof int" >&5
2750927506 echo "$as_me: WARNING: using 4 for sizeof int" >&2;}
2751027507 ac_cv_sizeof_int=4
2751127508 elif test "x${ac_cv_sizeof_int}" = x0; then
27512 { echo "$as_me:27513: WARNING: sizeof int not found, using 4" >&5
27509 { echo "$as_me:27510: WARNING: sizeof int not found, using 4" >&5
2751327510 echo "$as_me: WARNING: sizeof int not found, using 4" >&2;}
2751427511 ac_cv_sizeof_int=4
2751527512 fi
2751627513 fi
2751727514
27518 echo "$as_me:27519: checking for long" >&5
27515 echo "$as_me:27516: checking for long" >&5
2751927516 echo $ECHO_N "checking for long... $ECHO_C" >&6
2752027517 if test "${ac_cv_type_long+set}" = set; then
2752127518 echo $ECHO_N "(cached) $ECHO_C" >&6
2752227519 else
2752327520 cat >conftest.$ac_ext <<_ACEOF
27524 #line 27525 "configure"
27521 #line 27522 "configure"
2752527522 #include "confdefs.h"
2752627523 $ac_includes_default
2752727524 int
2753627533 }
2753727534 _ACEOF
2753827535 rm -f conftest.$ac_objext
27539 if { (eval echo "$as_me:27540: \"$ac_compile\"") >&5
27536 if { (eval echo "$as_me:27537: \"$ac_compile\"") >&5
2754027537 (eval $ac_compile) 2>&5
2754127538 ac_status=$?
27542 echo "$as_me:27543: \$? = $ac_status" >&5
27539 echo "$as_me:27540: \$? = $ac_status" >&5
2754327540 (exit $ac_status); } &&
2754427541 { ac_try='test -s conftest.$ac_objext'
27545 { (eval echo "$as_me:27546: \"$ac_try\"") >&5
27542 { (eval echo "$as_me:27543: \"$ac_try\"") >&5
2754627543 (eval $ac_try) 2>&5
2754727544 ac_status=$?
27548 echo "$as_me:27549: \$? = $ac_status" >&5
27545 echo "$as_me:27546: \$? = $ac_status" >&5
2754927546 (exit $ac_status); }; }; then
2755027547 ac_cv_type_long=yes
2755127548 else
2755527552 fi
2755627553 rm -f conftest.$ac_objext conftest.$ac_ext
2755727554 fi
27558 echo "$as_me:27559: result: $ac_cv_type_long" >&5
27555 echo "$as_me:27556: result: $ac_cv_type_long" >&5
2755927556 echo "${ECHO_T}$ac_cv_type_long" >&6
2756027557
27561 echo "$as_me:27562: checking size of long" >&5
27558 echo "$as_me:27559: checking size of long" >&5
2756227559 echo $ECHO_N "checking size of long... $ECHO_C" >&6
2756327560 if test "${ac_cv_sizeof_long+set}" = set; then
2756427561 echo $ECHO_N "(cached) $ECHO_C" >&6
2756727564 if test "$cross_compiling" = yes; then
2756827565 # Depending upon the size, compute the lo and hi bounds.
2756927566 cat >conftest.$ac_ext <<_ACEOF
27570 #line 27571 "configure"
27567 #line 27568 "configure"
2757127568 #include "confdefs.h"
2757227569 $ac_includes_default
2757327570 int
2757927576 }
2758027577 _ACEOF
2758127578 rm -f conftest.$ac_objext
27582 if { (eval echo "$as_me:27583: \"$ac_compile\"") >&5
27579 if { (eval echo "$as_me:27580: \"$ac_compile\"") >&5
2758327580 (eval $ac_compile) 2>&5
2758427581 ac_status=$?
27585 echo "$as_me:27586: \$? = $ac_status" >&5
27582 echo "$as_me:27583: \$? = $ac_status" >&5
2758627583 (exit $ac_status); } &&
2758727584 { ac_try='test -s conftest.$ac_objext'
27588 { (eval echo "$as_me:27589: \"$ac_try\"") >&5
27585 { (eval echo "$as_me:27586: \"$ac_try\"") >&5
2758927586 (eval $ac_try) 2>&5
2759027587 ac_status=$?
27591 echo "$as_me:27592: \$? = $ac_status" >&5
27588 echo "$as_me:27589: \$? = $ac_status" >&5
2759227589 (exit $ac_status); }; }; then
2759327590 ac_lo=0 ac_mid=0
2759427591 while :; do
2759527592 cat >conftest.$ac_ext <<_ACEOF
27596 #line 27597 "configure"
27593 #line 27594 "configure"
2759727594 #include "confdefs.h"
2759827595 $ac_includes_default
2759927596 int
2760527602 }
2760627603 _ACEOF
2760727604 rm -f conftest.$ac_objext
27608 if { (eval echo "$as_me:27609: \"$ac_compile\"") >&5
27605 if { (eval echo "$as_me:27606: \"$ac_compile\"") >&5
2760927606 (eval $ac_compile) 2>&5
2761027607 ac_status=$?
27611 echo "$as_me:27612: \$? = $ac_status" >&5
27608 echo "$as_me:27609: \$? = $ac_status" >&5
2761227609 (exit $ac_status); } &&
2761327610 { ac_try='test -s conftest.$ac_objext'
27614 { (eval echo "$as_me:27615: \"$ac_try\"") >&5
27611 { (eval echo "$as_me:27612: \"$ac_try\"") >&5
2761527612 (eval $ac_try) 2>&5
2761627613 ac_status=$?
27617 echo "$as_me:27618: \$? = $ac_status" >&5
27614 echo "$as_me:27615: \$? = $ac_status" >&5
2761827615 (exit $ac_status); }; }; then
2761927616 ac_hi=$ac_mid; break
2762027617 else
2763027627 ac_hi=-1 ac_mid=-1
2763127628 while :; do
2763227629 cat >conftest.$ac_ext <<_ACEOF
27633 #line 27634 "configure"
27630 #line 27631 "configure"
2763427631 #include "confdefs.h"
2763527632 $ac_includes_default
2763627633 int
2764227639 }
2764327640 _ACEOF
2764427641 rm -f conftest.$ac_objext
27645 if { (eval echo "$as_me:27646: \"$ac_compile\"") >&5
27642 if { (eval echo "$as_me:27643: \"$ac_compile\"") >&5
2764627643 (eval $ac_compile) 2>&5
2764727644 ac_status=$?
27648 echo "$as_me:27649: \$? = $ac_status" >&5
27645 echo "$as_me:27646: \$? = $ac_status" >&5
2764927646 (exit $ac_status); } &&
2765027647 { ac_try='test -s conftest.$ac_objext'
27651 { (eval echo "$as_me:27652: \"$ac_try\"") >&5
27648 { (eval echo "$as_me:27649: \"$ac_try\"") >&5
2765227649 (eval $ac_try) 2>&5
2765327650 ac_status=$?
27654 echo "$as_me:27655: \$? = $ac_status" >&5
27651 echo "$as_me:27652: \$? = $ac_status" >&5
2765527652 (exit $ac_status); }; }; then
2765627653 ac_lo=$ac_mid; break
2765727654 else
2766727664 while test "x$ac_lo" != "x$ac_hi"; do
2766827665 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
2766927666 cat >conftest.$ac_ext <<_ACEOF
27670 #line 27671 "configure"
27667 #line 27668 "configure"
2767127668 #include "confdefs.h"
2767227669 $ac_includes_default
2767327670 int
2767927676 }
2768027677 _ACEOF
2768127678 rm -f conftest.$ac_objext
27682 if { (eval echo "$as_me:27683: \"$ac_compile\"") >&5
27679 if { (eval echo "$as_me:27680: \"$ac_compile\"") >&5
2768327680 (eval $ac_compile) 2>&5
2768427681 ac_status=$?
27685 echo "$as_me:27686: \$? = $ac_status" >&5
27682 echo "$as_me:27683: \$? = $ac_status" >&5
2768627683 (exit $ac_status); } &&
2768727684 { ac_try='test -s conftest.$ac_objext'
27688 { (eval echo "$as_me:27689: \"$ac_try\"") >&5
27685 { (eval echo "$as_me:27686: \"$ac_try\"") >&5
2768927686 (eval $ac_try) 2>&5
2769027687 ac_status=$?
27691 echo "$as_me:27692: \$? = $ac_status" >&5
27688 echo "$as_me:27689: \$? = $ac_status" >&5
2769227689 (exit $ac_status); }; }; then
2769327690 ac_hi=$ac_mid
2769427691 else
2770127698 ac_cv_sizeof_long=$ac_lo
2770227699 else
2770327700 if test "$cross_compiling" = yes; then
27704 { { echo "$as_me:27705: error: cannot run test program while cross compiling" >&5
27701 { { echo "$as_me:27702: error: cannot run test program while cross compiling" >&5
2770527702 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
2770627703 { (exit 1); exit 1; }; }
2770727704 else
2770827705 cat >conftest.$ac_ext <<_ACEOF
27709 #line 27710 "configure"
27706 #line 27707 "configure"
2771027707 #include "confdefs.h"
2771127708 $ac_includes_default
2771227709 int
2772227719 }
2772327720 _ACEOF
2772427721 rm -f conftest$ac_exeext
27725 if { (eval echo "$as_me:27726: \"$ac_link\"") >&5
27722 if { (eval echo "$as_me:27723: \"$ac_link\"") >&5
2772627723 (eval $ac_link) 2>&5
2772727724 ac_status=$?
27728 echo "$as_me:27729: \$? = $ac_status" >&5
27725 echo "$as_me:27726: \$? = $ac_status" >&5
2772927726 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
27730 { (eval echo "$as_me:27731: \"$ac_try\"") >&5
27727 { (eval echo "$as_me:27728: \"$ac_try\"") >&5
2773127728 (eval $ac_try) 2>&5
2773227729 ac_status=$?
27733 echo "$as_me:27734: \$? = $ac_status" >&5
27730 echo "$as_me:27731: \$? = $ac_status" >&5
2773427731 (exit $ac_status); }; }; then
2773527732 ac_cv_sizeof_long=`cat conftest.val`
2773627733 else
2774627743 ac_cv_sizeof_long=0
2774727744 fi
2774827745 fi
27749 echo "$as_me:27750: result: $ac_cv_sizeof_long" >&5
27746 echo "$as_me:27747: result: $ac_cv_sizeof_long" >&5
2775027747 echo "${ECHO_T}$ac_cv_sizeof_long" >&6
2775127748 cat >>confdefs.h <<EOF
2775227749 #define SIZEOF_LONG $ac_cv_sizeof_long
2775427751
2775527752 if test "${ac_cv_type_long:+set}" = set; then
2775627753 if test "${ac_cv_sizeof_long:+set}" != set; then
27757 { echo "$as_me:27758: WARNING: using 4 for sizeof long" >&5
27754 { echo "$as_me:27755: WARNING: using 4 for sizeof long" >&5
2775827755 echo "$as_me: WARNING: using 4 for sizeof long" >&2;}
2775927756 ac_cv_sizeof_long=4
2776027757 elif test "x${ac_cv_sizeof_long}" = x0; then
27761 { echo "$as_me:27762: WARNING: sizeof long not found, using 4" >&5
27758 { echo "$as_me:27759: WARNING: sizeof long not found, using 4" >&5
2776227759 echo "$as_me: WARNING: sizeof long not found, using 4" >&2;}
2776327760 ac_cv_sizeof_long=4
2776427761 fi
2776527762 fi
2776627763
27767 echo "$as_me:27768: checking for off_t" >&5
27764 echo "$as_me:27765: checking for off_t" >&5
2776827765 echo $ECHO_N "checking for off_t... $ECHO_C" >&6
2776927766 if test "${ac_cv_type_off_t+set}" = set; then
2777027767 echo $ECHO_N "(cached) $ECHO_C" >&6
2777127768 else
2777227769 cat >conftest.$ac_ext <<_ACEOF
27773 #line 27774 "configure"
27770 #line 27771 "configure"
2777427771 #include "confdefs.h"
2777527772 $ac_includes_default
2777627773 int
2778527782 }
2778627783 _ACEOF
2778727784 rm -f conftest.$ac_objext
27788 if { (eval echo "$as_me:27789: \"$ac_compile\"") >&5
27785 if { (eval echo "$as_me:27786: \"$ac_compile\"") >&5
2778927786 (eval $ac_compile) 2>&5
2779027787 ac_status=$?
27791 echo "$as_me:27792: \$? = $ac_status" >&5
27788 echo "$as_me:27789: \$? = $ac_status" >&5
2779227789 (exit $ac_status); } &&
2779327790 { ac_try='test -s conftest.$ac_objext'
27794 { (eval echo "$as_me:27795: \"$ac_try\"") >&5
27791 { (eval echo "$as_me:27792: \"$ac_try\"") >&5
2779527792 (eval $ac_try) 2>&5
2779627793 ac_status=$?
27797 echo "$as_me:27798: \$? = $ac_status" >&5
27794 echo "$as_me:27795: \$? = $ac_status" >&5
2779827795 (exit $ac_status); }; }; then
2779927796 ac_cv_type_off_t=yes
2780027797 else
2780427801 fi
2780527802 rm -f conftest.$ac_objext conftest.$ac_ext
2780627803 fi
27807 echo "$as_me:27808: result: $ac_cv_type_off_t" >&5
27804 echo "$as_me:27805: result: $ac_cv_type_off_t" >&5
2780827805 echo "${ECHO_T}$ac_cv_type_off_t" >&6
2780927806
27810 echo "$as_me:27811: checking size of off_t" >&5
27807 echo "$as_me:27808: checking size of off_t" >&5
2781127808 echo $ECHO_N "checking size of off_t... $ECHO_C" >&6
2781227809 if test "${ac_cv_sizeof_off_t+set}" = set; then
2781327810 echo $ECHO_N "(cached) $ECHO_C" >&6
2781627813 if test "$cross_compiling" = yes; then
2781727814 # Depending upon the size, compute the lo and hi bounds.
2781827815 cat >conftest.$ac_ext <<_ACEOF
27819 #line 27820 "configure"
27816 #line 27817 "configure"
2782027817 #include "confdefs.h"
2782127818 $ac_includes_default
2782227819 int
2782827825 }
2782927826 _ACEOF
2783027827 rm -f conftest.$ac_objext
27831 if { (eval echo "$as_me:27832: \"$ac_compile\"") >&5
27828 if { (eval echo "$as_me:27829: \"$ac_compile\"") >&5
2783227829 (eval $ac_compile) 2>&5
2783327830 ac_status=$?
27834 echo "$as_me:27835: \$? = $ac_status" >&5
27831 echo "$as_me:27832: \$? = $ac_status" >&5
2783527832 (exit $ac_status); } &&
2783627833 { ac_try='test -s conftest.$ac_objext'
27837 { (eval echo "$as_me:27838: \"$ac_try\"") >&5
27834 { (eval echo "$as_me:27835: \"$ac_try\"") >&5
2783827835 (eval $ac_try) 2>&5
2783927836 ac_status=$?
27840 echo "$as_me:27841: \$? = $ac_status" >&5
27837 echo "$as_me:27838: \$? = $ac_status" >&5
2784127838 (exit $ac_status); }; }; then
2784227839 ac_lo=0 ac_mid=0
2784327840 while :; do
2784427841 cat >conftest.$ac_ext <<_ACEOF
27845 #line 27846 "configure"
27842 #line 27843 "configure"
2784627843 #include "confdefs.h"
2784727844 $ac_includes_default
2784827845 int
2785427851 }
2785527852 _ACEOF
2785627853 rm -f conftest.$ac_objext
27857 if { (eval echo "$as_me:27858: \"$ac_compile\"") >&5
27854 if { (eval echo "$as_me:27855: \"$ac_compile\"") >&5
2785827855 (eval $ac_compile) 2>&5
2785927856 ac_status=$?
27860 echo "$as_me:27861: \$? = $ac_status" >&5
27857 echo "$as_me:27858: \$? = $ac_status" >&5
2786127858 (exit $ac_status); } &&
2786227859 { ac_try='test -s conftest.$ac_objext'
27863 { (eval echo "$as_me:27864: \"$ac_try\"") >&5
27860 { (eval echo "$as_me:27861: \"$ac_try\"") >&5
2786427861 (eval $ac_try) 2>&5
2786527862 ac_status=$?
27866 echo "$as_me:27867: \$? = $ac_status" >&5
27863 echo "$as_me:27864: \$? = $ac_status" >&5
2786727864 (exit $ac_status); }; }; then
2786827865 ac_hi=$ac_mid; break
2786927866 else
2787927876 ac_hi=-1 ac_mid=-1
2788027877 while :; do
2788127878 cat >conftest.$ac_ext <<_ACEOF
27882 #line 27883 "configure"
27879 #line 27880 "configure"
2788327880 #include "confdefs.h"
2788427881 $ac_includes_default
2788527882 int
2789127888 }
2789227889 _ACEOF
2789327890 rm -f conftest.$ac_objext
27894 if { (eval echo "$as_me:27895: \"$ac_compile\"") >&5
27891 if { (eval echo "$as_me:27892: \"$ac_compile\"") >&5
2789527892 (eval $ac_compile) 2>&5
2789627893 ac_status=$?
27897 echo "$as_me:27898: \$? = $ac_status" >&5
27894 echo "$as_me:27895: \$? = $ac_status" >&5
2789827895 (exit $ac_status); } &&
2789927896 { ac_try='test -s conftest.$ac_objext'
27900 { (eval echo "$as_me:27901: \"$ac_try\"") >&5
27897 { (eval echo "$as_me:27898: \"$ac_try\"") >&5
2790127898 (eval $ac_try) 2>&5
2790227899 ac_status=$?
27903 echo "$as_me:27904: \$? = $ac_status" >&5
27900 echo "$as_me:27901: \$? = $ac_status" >&5
2790427901 (exit $ac_status); }; }; then
2790527902 ac_lo=$ac_mid; break
2790627903 else
2791627913 while test "x$ac_lo" != "x$ac_hi"; do
2791727914 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
2791827915 cat >conftest.$ac_ext <<_ACEOF
27919 #line 27920 "configure"
27916 #line 27917 "configure"
2792027917 #include "confdefs.h"
2792127918 $ac_includes_default
2792227919 int
2792827925 }
2792927926 _ACEOF
2793027927 rm -f conftest.$ac_objext
27931 if { (eval echo "$as_me:27932: \"$ac_compile\"") >&5
27928 if { (eval echo "$as_me:27929: \"$ac_compile\"") >&5
2793227929 (eval $ac_compile) 2>&5
2793327930 ac_status=$?
27934 echo "$as_me:27935: \$? = $ac_status" >&5
27931 echo "$as_me:27932: \$? = $ac_status" >&5
2793527932 (exit $ac_status); } &&
2793627933 { ac_try='test -s conftest.$ac_objext'
27937 { (eval echo "$as_me:27938: \"$ac_try\"") >&5
27934 { (eval echo "$as_me:27935: \"$ac_try\"") >&5
2793827935 (eval $ac_try) 2>&5
2793927936 ac_status=$?
27940 echo "$as_me:27941: \$? = $ac_status" >&5
27937 echo "$as_me:27938: \$? = $ac_status" >&5
2794127938 (exit $ac_status); }; }; then
2794227939 ac_hi=$ac_mid
2794327940 else
2795027947 ac_cv_sizeof_off_t=$ac_lo
2795127948 else
2795227949 if test "$cross_compiling" = yes; then
27953 { { echo "$as_me:27954: error: cannot run test program while cross compiling" >&5
27950 { { echo "$as_me:27951: error: cannot run test program while cross compiling" >&5
2795427951 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
2795527952 { (exit 1); exit 1; }; }
2795627953 else
2795727954 cat >conftest.$ac_ext <<_ACEOF
27958 #line 27959 "configure"
27955 #line 27956 "configure"
2795927956 #include "confdefs.h"
2796027957 $ac_includes_default
2796127958 int
2797127968 }
2797227969 _ACEOF
2797327970 rm -f conftest$ac_exeext
27974 if { (eval echo "$as_me:27975: \"$ac_link\"") >&5
27971 if { (eval echo "$as_me:27972: \"$ac_link\"") >&5
2797527972 (eval $ac_link) 2>&5
2797627973 ac_status=$?
27977 echo "$as_me:27978: \$? = $ac_status" >&5
27974 echo "$as_me:27975: \$? = $ac_status" >&5
2797827975 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
27979 { (eval echo "$as_me:27980: \"$ac_try\"") >&5
27976 { (eval echo "$as_me:27977: \"$ac_try\"") >&5
2798027977 (eval $ac_try) 2>&5
2798127978 ac_status=$?
27982 echo "$as_me:27983: \$? = $ac_status" >&5
27979 echo "$as_me:27980: \$? = $ac_status" >&5
2798327980 (exit $ac_status); }; }; then
2798427981 ac_cv_sizeof_off_t=`cat conftest.val`
2798527982 else
2799527992 ac_cv_sizeof_off_t=0
2799627993 fi
2799727994 fi
27998 echo "$as_me:27999: result: $ac_cv_sizeof_off_t" >&5
27995 echo "$as_me:27996: result: $ac_cv_sizeof_off_t" >&5
2799927996 echo "${ECHO_T}$ac_cv_sizeof_off_t" >&6
2800027997 cat >>confdefs.h <<EOF
2800127998 #define SIZEOF_OFF_T $ac_cv_sizeof_off_t
2800328000
2800428001 if test "${ac_cv_type_off_t:+set}" = set; then
2800528002 if test "${ac_cv_sizeof_off_t:+set}" != set; then
28006 { echo "$as_me:28007: WARNING: using 4 for sizeof off_t" >&5
28003 { echo "$as_me:28004: WARNING: using 4 for sizeof off_t" >&5
2800728004 echo "$as_me: WARNING: using 4 for sizeof off_t" >&2;}
2800828005 ac_cv_sizeof_off_t=4
2800928006 elif test "x${ac_cv_sizeof_off_t}" = x0; then
28010 { echo "$as_me:28011: WARNING: sizeof off_t not found, using 4" >&5
28007 { echo "$as_me:28008: WARNING: sizeof off_t not found, using 4" >&5
2801128008 echo "$as_me: WARNING: sizeof off_t not found, using 4" >&2;}
2801228009 ac_cv_sizeof_off_t=4
2801328010 fi
2801428011 fi
2801528012
28016 echo "$as_me:28017: checking for time_t" >&5
28013 echo "$as_me:28014: checking for time_t" >&5
2801728014 echo $ECHO_N "checking for time_t... $ECHO_C" >&6
2801828015 if test "${ac_cv_type_time_t+set}" = set; then
2801928016 echo $ECHO_N "(cached) $ECHO_C" >&6
2802028017 else
2802128018 cat >conftest.$ac_ext <<_ACEOF
28022 #line 28023 "configure"
28019 #line 28020 "configure"
2802328020 #include "confdefs.h"
2802428021 $ac_includes_default
2802528022 int
2803428031 }
2803528032 _ACEOF
2803628033 rm -f conftest.$ac_objext
28037 if { (eval echo "$as_me:28038: \"$ac_compile\"") >&5
28034 if { (eval echo "$as_me:28035: \"$ac_compile\"") >&5
2803828035 (eval $ac_compile) 2>&5
2803928036 ac_status=$?
28040 echo "$as_me:28041: \$? = $ac_status" >&5
28037 echo "$as_me:28038: \$? = $ac_status" >&5
2804128038 (exit $ac_status); } &&
2804228039 { ac_try='test -s conftest.$ac_objext'
28043 { (eval echo "$as_me:28044: \"$ac_try\"") >&5
28040 { (eval echo "$as_me:28041: \"$ac_try\"") >&5
2804428041 (eval $ac_try) 2>&5
2804528042 ac_status=$?
28046 echo "$as_me:28047: \$? = $ac_status" >&5
28043 echo "$as_me:28044: \$? = $ac_status" >&5
2804728044 (exit $ac_status); }; }; then
2804828045 ac_cv_type_time_t=yes
2804928046 else
2805328050 fi
2805428051 rm -f conftest.$ac_objext conftest.$ac_ext
2805528052 fi
28056 echo "$as_me:28057: result: $ac_cv_type_time_t" >&5
28053 echo "$as_me:28054: result: $ac_cv_type_time_t" >&5
2805728054 echo "${ECHO_T}$ac_cv_type_time_t" >&6
2805828055
28059 echo "$as_me:28060: checking size of time_t" >&5
28056 echo "$as_me:28057: checking size of time_t" >&5
2806028057 echo $ECHO_N "checking size of time_t... $ECHO_C" >&6
2806128058 if test "${ac_cv_sizeof_time_t+set}" = set; then
2806228059 echo $ECHO_N "(cached) $ECHO_C" >&6
2806528062 if test "$cross_compiling" = yes; then
2806628063 # Depending upon the size, compute the lo and hi bounds.
2806728064 cat >conftest.$ac_ext <<_ACEOF
28068 #line 28069 "configure"
28065 #line 28066 "configure"
2806928066 #include "confdefs.h"
2807028067 $ac_includes_default
2807128068 int
2807728074 }
2807828075 _ACEOF
2807928076 rm -f conftest.$ac_objext
28080 if { (eval echo "$as_me:28081: \"$ac_compile\"") >&5
28077 if { (eval echo "$as_me:28078: \"$ac_compile\"") >&5
2808128078 (eval $ac_compile) 2>&5
2808228079 ac_status=$?
28083 echo "$as_me:28084: \$? = $ac_status" >&5
28080 echo "$as_me:28081: \$? = $ac_status" >&5
2808428081 (exit $ac_status); } &&
2808528082 { ac_try='test -s conftest.$ac_objext'
28086 { (eval echo "$as_me:28087: \"$ac_try\"") >&5
28083 { (eval echo "$as_me:28084: \"$ac_try\"") >&5
2808728084 (eval $ac_try) 2>&5
2808828085 ac_status=$?
28089 echo "$as_me:28090: \$? = $ac_status" >&5
28086 echo "$as_me:28087: \$? = $ac_status" >&5
2809028087 (exit $ac_status); }; }; then
2809128088 ac_lo=0 ac_mid=0
2809228089 while :; do
2809328090 cat >conftest.$ac_ext <<_ACEOF
28094 #line 28095 "configure"
28091 #line 28092 "configure"
2809528092 #include "confdefs.h"
2809628093 $ac_includes_default
2809728094 int
2810328100 }
2810428101 _ACEOF
2810528102 rm -f conftest.$ac_objext
28106 if { (eval echo "$as_me:28107: \"$ac_compile\"") >&5
28103 if { (eval echo "$as_me:28104: \"$ac_compile\"") >&5
2810728104 (eval $ac_compile) 2>&5
2810828105 ac_status=$?
28109 echo "$as_me:28110: \$? = $ac_status" >&5
28106 echo "$as_me:28107: \$? = $ac_status" >&5
2811028107 (exit $ac_status); } &&
2811128108 { ac_try='test -s conftest.$ac_objext'
28112 { (eval echo "$as_me:28113: \"$ac_try\"") >&5
28109 { (eval echo "$as_me:28110: \"$ac_try\"") >&5
2811328110 (eval $ac_try) 2>&5
2811428111 ac_status=$?
28115 echo "$as_me:28116: \$? = $ac_status" >&5
28112 echo "$as_me:28113: \$? = $ac_status" >&5
2811628113 (exit $ac_status); }; }; then
2811728114 ac_hi=$ac_mid; break
2811828115 else
2812828125 ac_hi=-1 ac_mid=-1
2812928126 while :; do
2813028127 cat >conftest.$ac_ext <<_ACEOF
28131 #line 28132 "configure"
28128 #line 28129 "configure"
2813228129 #include "confdefs.h"
2813328130 $ac_includes_default
2813428131 int
2814028137 }
2814128138 _ACEOF
2814228139 rm -f conftest.$ac_objext
28143 if { (eval echo "$as_me:28144: \"$ac_compile\"") >&5
28140 if { (eval echo "$as_me:28141: \"$ac_compile\"") >&5
2814428141 (eval $ac_compile) 2>&5
2814528142 ac_status=$?
28146 echo "$as_me:28147: \$? = $ac_status" >&5
28143 echo "$as_me:28144: \$? = $ac_status" >&5
2814728144 (exit $ac_status); } &&
2814828145 { ac_try='test -s conftest.$ac_objext'
28149 { (eval echo "$as_me:28150: \"$ac_try\"") >&5
28146 { (eval echo "$as_me:28147: \"$ac_try\"") >&5
2815028147 (eval $ac_try) 2>&5
2815128148 ac_status=$?
28152 echo "$as_me:28153: \$? = $ac_status" >&5
28149 echo "$as_me:28150: \$? = $ac_status" >&5
2815328150 (exit $ac_status); }; }; then
2815428151 ac_lo=$ac_mid; break
2815528152 else
2816528162 while test "x$ac_lo" != "x$ac_hi"; do
2816628163 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
2816728164 cat >conftest.$ac_ext <<_ACEOF
28168 #line 28169 "configure"
28165 #line 28166 "configure"
2816928166 #include "confdefs.h"
2817028167 $ac_includes_default
2817128168 int
2817728174 }
2817828175 _ACEOF
2817928176 rm -f conftest.$ac_objext
28180 if { (eval echo "$as_me:28181: \"$ac_compile\"") >&5
28177 if { (eval echo "$as_me:28178: \"$ac_compile\"") >&5
2818128178 (eval $ac_compile) 2>&5
2818228179 ac_status=$?
28183 echo "$as_me:28184: \$? = $ac_status" >&5
28180 echo "$as_me:28181: \$? = $ac_status" >&5
2818428181 (exit $ac_status); } &&
2818528182 { ac_try='test -s conftest.$ac_objext'
28186 { (eval echo "$as_me:28187: \"$ac_try\"") >&5
28183 { (eval echo "$as_me:28184: \"$ac_try\"") >&5
2818728184 (eval $ac_try) 2>&5
2818828185 ac_status=$?
28189 echo "$as_me:28190: \$? = $ac_status" >&5
28186 echo "$as_me:28187: \$? = $ac_status" >&5
2819028187 (exit $ac_status); }; }; then
2819128188 ac_hi=$ac_mid
2819228189 else
2819928196 ac_cv_sizeof_time_t=$ac_lo
2820028197 else
2820128198 if test "$cross_compiling" = yes; then
28202 { { echo "$as_me:28203: error: cannot run test program while cross compiling" >&5
28199 { { echo "$as_me:28200: error: cannot run test program while cross compiling" >&5
2820328200 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
2820428201 { (exit 1); exit 1; }; }
2820528202 else
2820628203 cat >conftest.$ac_ext <<_ACEOF
28207 #line 28208 "configure"
28204 #line 28205 "configure"
2820828205 #include "confdefs.h"
2820928206 $ac_includes_default
2821028207 int
2822028217 }
2822128218 _ACEOF
2822228219 rm -f conftest$ac_exeext
28223 if { (eval echo "$as_me:28224: \"$ac_link\"") >&5
28220 if { (eval echo "$as_me:28221: \"$ac_link\"") >&5
2822428221 (eval $ac_link) 2>&5
2822528222 ac_status=$?
28226 echo "$as_me:28227: \$? = $ac_status" >&5
28223 echo "$as_me:28224: \$? = $ac_status" >&5
2822728224 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
28228 { (eval echo "$as_me:28229: \"$ac_try\"") >&5
28225 { (eval echo "$as_me:28226: \"$ac_try\"") >&5
2822928226 (eval $ac_try) 2>&5
2823028227 ac_status=$?
28231 echo "$as_me:28232: \$? = $ac_status" >&5
28228 echo "$as_me:28229: \$? = $ac_status" >&5
2823228229 (exit $ac_status); }; }; then
2823328230 ac_cv_sizeof_time_t=`cat conftest.val`
2823428231 else
2824428241 ac_cv_sizeof_time_t=0
2824528242 fi
2824628243 fi
28247 echo "$as_me:28248: result: $ac_cv_sizeof_time_t" >&5
28244 echo "$as_me:28245: result: $ac_cv_sizeof_time_t" >&5
2824828245 echo "${ECHO_T}$ac_cv_sizeof_time_t" >&6
2824928246 cat >>confdefs.h <<EOF
2825028247 #define SIZEOF_TIME_T $ac_cv_sizeof_time_t
2825228249
2825328250 if test "${ac_cv_type_time_t:+set}" = set; then
2825428251 if test "${ac_cv_sizeof_time_t:+set}" != set; then
28255 { echo "$as_me:28256: WARNING: using 4 for sizeof time_t" >&5
28252 { echo "$as_me:28253: WARNING: using 4 for sizeof time_t" >&5
2825628253 echo "$as_me: WARNING: using 4 for sizeof time_t" >&2;}
2825728254 ac_cv_sizeof_time_t=4
2825828255 elif test "x${ac_cv_sizeof_time_t}" = x0; then
28259 { echo "$as_me:28260: WARNING: sizeof time_t not found, using 4" >&5
28256 { echo "$as_me:28257: WARNING: sizeof time_t not found, using 4" >&5
2826028257 echo "$as_me: WARNING: sizeof time_t not found, using 4" >&2;}
2826128258 ac_cv_sizeof_time_t=4
2826228259 fi
2826328260 fi
2826428261
28265 echo "$as_me:28266: checking for intptr_t" >&5
28262 echo "$as_me:28263: checking for intptr_t" >&5
2826628263 echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6
2826728264 if test "${ac_cv_type_intptr_t+set}" = set; then
2826828265 echo $ECHO_N "(cached) $ECHO_C" >&6
2826928266 else
2827028267 cat >conftest.$ac_ext <<_ACEOF
28271 #line 28272 "configure"
28268 #line 28269 "configure"
2827228269 #include "confdefs.h"
2827328270 $ac_includes_default
2827428271 int
2828328280 }
2828428281 _ACEOF
2828528282 rm -f conftest.$ac_objext
28286 if { (eval echo "$as_me:28287: \"$ac_compile\"") >&5
28283 if { (eval echo "$as_me:28284: \"$ac_compile\"") >&5
2828728284 (eval $ac_compile) 2>&5
2828828285 ac_status=$?
28289 echo "$as_me:28290: \$? = $ac_status" >&5
28286 echo "$as_me:28287: \$? = $ac_status" >&5
2829028287 (exit $ac_status); } &&
2829128288 { ac_try='test -s conftest.$ac_objext'
28292 { (eval echo "$as_me:28293: \"$ac_try\"") >&5
28289 { (eval echo "$as_me:28290: \"$ac_try\"") >&5
2829328290 (eval $ac_try) 2>&5
2829428291 ac_status=$?
28295 echo "$as_me:28296: \$? = $ac_status" >&5
28292 echo "$as_me:28293: \$? = $ac_status" >&5
2829628293 (exit $ac_status); }; }; then
2829728294 ac_cv_type_intptr_t=yes
2829828295 else
2830228299 fi
2830328300 rm -f conftest.$ac_objext conftest.$ac_ext
2830428301 fi
28305 echo "$as_me:28306: result: $ac_cv_type_intptr_t" >&5
28302 echo "$as_me:28303: result: $ac_cv_type_intptr_t" >&5
2830628303 echo "${ECHO_T}$ac_cv_type_intptr_t" >&6
2830728304 if test $ac_cv_type_intptr_t = yes; then
2830828305 :
2831628313
2831728314 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
2831828315 # for constant arguments. Useless!
28319 echo "$as_me:28320: checking for working alloca.h" >&5
28316 echo "$as_me:28317: checking for working alloca.h" >&5
2832028317 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
2832128318 if test "${ac_cv_working_alloca_h+set}" = set; then
2832228319 echo $ECHO_N "(cached) $ECHO_C" >&6
2832328320 else
2832428321 cat >conftest.$ac_ext <<_ACEOF
28325 #line 28326 "configure"
28322 #line 28323 "configure"
2832628323 #include "confdefs.h"
2832728324 #include <alloca.h>
2832828325 int
2833428331 }
2833528332 _ACEOF
2833628333 rm -f conftest.$ac_objext conftest$ac_exeext
28337 if { (eval echo "$as_me:28338: \"$ac_link\"") >&5
28334 if { (eval echo "$as_me:28335: \"$ac_link\"") >&5
2833828335 (eval $ac_link) 2>&5
2833928336 ac_status=$?
28340 echo "$as_me:28341: \$? = $ac_status" >&5
28337 echo "$as_me:28338: \$? = $ac_status" >&5
2834128338 (exit $ac_status); } &&
2834228339 { ac_try='test -s conftest$ac_exeext'
28343 { (eval echo "$as_me:28344: \"$ac_try\"") >&5
28340 { (eval echo "$as_me:28341: \"$ac_try\"") >&5
2834428341 (eval $ac_try) 2>&5
2834528342 ac_status=$?
28346 echo "$as_me:28347: \$? = $ac_status" >&5
28343 echo "$as_me:28344: \$? = $ac_status" >&5
2834728344 (exit $ac_status); }; }; then
2834828345 ac_cv_working_alloca_h=yes
2834928346 else
2835328350 fi
2835428351 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2835528352 fi
28356 echo "$as_me:28357: result: $ac_cv_working_alloca_h" >&5
28353 echo "$as_me:28354: result: $ac_cv_working_alloca_h" >&5
2835728354 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
2835828355 if test $ac_cv_working_alloca_h = yes; then
2835928356
2836328360
2836428361 fi
2836528362
28366 echo "$as_me:28367: checking for alloca" >&5
28363 echo "$as_me:28364: checking for alloca" >&5
2836728364 echo $ECHO_N "checking for alloca... $ECHO_C" >&6
2836828365 if test "${ac_cv_func_alloca_works+set}" = set; then
2836928366 echo $ECHO_N "(cached) $ECHO_C" >&6
2837028367 else
2837128368 cat >conftest.$ac_ext <<_ACEOF
28372 #line 28373 "configure"
28369 #line 28370 "configure"
2837328370 #include "confdefs.h"
2837428371 #ifdef __GNUC__
2837528372 # define alloca __builtin_alloca
2840128398 }
2840228399 _ACEOF
2840328400 rm -f conftest.$ac_objext conftest$ac_exeext
28404 if { (eval echo "$as_me:28405: \"$ac_link\"") >&5
28401 if { (eval echo "$as_me:28402: \"$ac_link\"") >&5
2840528402 (eval $ac_link) 2>&5
2840628403 ac_status=$?
28407 echo "$as_me:28408: \$? = $ac_status" >&5
28404 echo "$as_me:28405: \$? = $ac_status" >&5
2840828405 (exit $ac_status); } &&
2840928406 { ac_try='test -s conftest$ac_exeext'
28410 { (eval echo "$as_me:28411: \"$ac_try\"") >&5
28407 { (eval echo "$as_me:28408: \"$ac_try\"") >&5
2841128408 (eval $ac_try) 2>&5
2841228409 ac_status=$?
28413 echo "$as_me:28414: \$? = $ac_status" >&5
28410 echo "$as_me:28411: \$? = $ac_status" >&5
2841428411 (exit $ac_status); }; }; then
2841528412 ac_cv_func_alloca_works=yes
2841628413 else
2842028417 fi
2842128418 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2842228419 fi
28423 echo "$as_me:28424: result: $ac_cv_func_alloca_works" >&5
28420 echo "$as_me:28421: result: $ac_cv_func_alloca_works" >&5
2842428421 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
2842528422
2842628423 if test $ac_cv_func_alloca_works = yes; then
2844128438 #define C_ALLOCA 1
2844228439 EOF
2844328440
28444 echo "$as_me:28445: checking whether \`alloca.c' needs Cray hooks" >&5
28441 echo "$as_me:28442: checking whether \`alloca.c' needs Cray hooks" >&5
2844528442 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
2844628443 if test "${ac_cv_os_cray+set}" = set; then
2844728444 echo $ECHO_N "(cached) $ECHO_C" >&6
2844828445 else
2844928446 cat >conftest.$ac_ext <<_ACEOF
28450 #line 28451 "configure"
28447 #line 28448 "configure"
2845128448 #include "confdefs.h"
2845228449 #if defined(CRAY) && ! defined(CRAY2)
2845328450 webecray
2846528462 rm -rf conftest*
2846628463
2846728464 fi
28468 echo "$as_me:28469: result: $ac_cv_os_cray" >&5
28465 echo "$as_me:28466: result: $ac_cv_os_cray" >&5
2846928466 echo "${ECHO_T}$ac_cv_os_cray" >&6
2847028467 if test $ac_cv_os_cray = yes; then
2847128468 for ac_func in _getb67 GETB67 getb67; do
2847228469 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
28473 echo "$as_me:28474: checking for $ac_func" >&5
28470 echo "$as_me:28471: checking for $ac_func" >&5
2847428471 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2847528472 if eval "test \"\${$as_ac_var+set}\" = set"; then
2847628473 echo $ECHO_N "(cached) $ECHO_C" >&6
2847728474 else
2847828475 cat >conftest.$ac_ext <<_ACEOF
28479 #line 28480 "configure"
28476 #line 28477 "configure"
2848028477 #include "confdefs.h"
2848128478 /* System header to define __stub macros and hopefully few prototypes,
2848228479 which can conflict with char $ac_func (); below. */
2850728504 }
2850828505 _ACEOF
2850928506 rm -f conftest.$ac_objext conftest$ac_exeext
28510 if { (eval echo "$as_me:28511: \"$ac_link\"") >&5
28507 if { (eval echo "$as_me:28508: \"$ac_link\"") >&5
2851128508 (eval $ac_link) 2>&5
2851228509 ac_status=$?
28513 echo "$as_me:28514: \$? = $ac_status" >&5
28510 echo "$as_me:28511: \$? = $ac_status" >&5
2851428511 (exit $ac_status); } &&
2851528512 { ac_try='test -s conftest$ac_exeext'
28516 { (eval echo "$as_me:28517: \"$ac_try\"") >&5
28513 { (eval echo "$as_me:28514: \"$ac_try\"") >&5
2851728514 (eval $ac_try) 2>&5
2851828515 ac_status=$?
28519 echo "$as_me:28520: \$? = $ac_status" >&5
28516 echo "$as_me:28517: \$? = $ac_status" >&5
2852028517 (exit $ac_status); }; }; then
2852128518 eval "$as_ac_var=yes"
2852228519 else
2852628523 fi
2852728524 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2852828525 fi
28529 echo "$as_me:28530: result: `eval echo '${'$as_ac_var'}'`" >&5
28526 echo "$as_me:28527: result: `eval echo '${'$as_ac_var'}'`" >&5
2853028527 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
2853128528 if test `eval echo '${'$as_ac_var'}'` = yes; then
2853228529
2854028537 done
2854128538 fi
2854228539
28543 echo "$as_me:28544: checking stack direction for C alloca" >&5
28540 echo "$as_me:28541: checking stack direction for C alloca" >&5
2854428541 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
2854528542 if test "${ac_cv_c_stack_direction+set}" = set; then
2854628543 echo $ECHO_N "(cached) $ECHO_C" >&6
2854928546 ac_cv_c_stack_direction=0
2855028547 else
2855128548 cat >conftest.$ac_ext <<_ACEOF
28552 #line 28553 "configure"
28549 #line 28550 "configure"
2855328550 #include "confdefs.h"
2855428551 int
2855528552 find_stack_direction ()
2857228569 }
2857328570 _ACEOF
2857428571 rm -f conftest$ac_exeext
28575 if { (eval echo "$as_me:28576: \"$ac_link\"") >&5
28572 if { (eval echo "$as_me:28573: \"$ac_link\"") >&5
2857628573 (eval $ac_link) 2>&5
2857728574 ac_status=$?
28578 echo "$as_me:28579: \$? = $ac_status" >&5
28575 echo "$as_me:28576: \$? = $ac_status" >&5
2857928576 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
28580 { (eval echo "$as_me:28581: \"$ac_try\"") >&5
28577 { (eval echo "$as_me:28578: \"$ac_try\"") >&5
2858128578 (eval $ac_try) 2>&5
2858228579 ac_status=$?
28583 echo "$as_me:28584: \$? = $ac_status" >&5
28580 echo "$as_me:28581: \$? = $ac_status" >&5
2858428581 (exit $ac_status); }; }; then
2858528582 ac_cv_c_stack_direction=1
2858628583 else
2859228589 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2859328590 fi
2859428591 fi
28595 echo "$as_me:28596: result: $ac_cv_c_stack_direction" >&5
28592 echo "$as_me:28593: result: $ac_cv_c_stack_direction" >&5
2859628593 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
2859728594
2859828595 cat >>confdefs.h <<EOF
2860428601 for ac_header in unistd.h vfork.h
2860528602 do
2860628603 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
28607 echo "$as_me:28608: checking for $ac_header" >&5
28604 echo "$as_me:28605: checking for $ac_header" >&5
2860828605 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2860928606 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2861028607 echo $ECHO_N "(cached) $ECHO_C" >&6
2861128608 else
2861228609 cat >conftest.$ac_ext <<_ACEOF
28613 #line 28614 "configure"
28610 #line 28611 "configure"
2861428611 #include "confdefs.h"
2861528612 #include <$ac_header>
2861628613 _ACEOF
28617 if { (eval echo "$as_me:28618: \"$ac_cpp conftest.$ac_ext\"") >&5
28614 if { (eval echo "$as_me:28615: \"$ac_cpp conftest.$ac_ext\"") >&5
2861828615 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2861928616 ac_status=$?
2862028617 egrep -v '^ *\+' conftest.er1 >conftest.err
2862128618 rm -f conftest.er1
2862228619 cat conftest.err >&5
28623 echo "$as_me:28624: \$? = $ac_status" >&5
28620 echo "$as_me:28621: \$? = $ac_status" >&5
2862428621 (exit $ac_status); } >/dev/null; then
2862528622 if test -s conftest.err; then
2862628623 ac_cpp_err=$ac_c_preproc_warn_flag
2863928636 fi
2864028637 rm -f conftest.err conftest.$ac_ext
2864128638 fi
28642 echo "$as_me:28643: result: `eval echo '${'$as_ac_Header'}'`" >&5
28639 echo "$as_me:28640: result: `eval echo '${'$as_ac_Header'}'`" >&5
2864328640 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2864428641 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2864528642 cat >>confdefs.h <<EOF
2865228649 for ac_func in fork vfork
2865328650 do
2865428651 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
28655 echo "$as_me:28656: checking for $ac_func" >&5
28652 echo "$as_me:28653: checking for $ac_func" >&5
2865628653 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2865728654 if eval "test \"\${$as_ac_var+set}\" = set"; then
2865828655 echo $ECHO_N "(cached) $ECHO_C" >&6
2865928656 else
2866028657 cat >conftest.$ac_ext <<_ACEOF
28661 #line 28662 "configure"
28658 #line 28659 "configure"
2866228659 #include "confdefs.h"
2866328660 /* System header to define __stub macros and hopefully few prototypes,
2866428661 which can conflict with char $ac_func (); below. */
2868928686 }
2869028687 _ACEOF
2869128688 rm -f conftest.$ac_objext conftest$ac_exeext
28692 if { (eval echo "$as_me:28693: \"$ac_link\"") >&5
28689 if { (eval echo "$as_me:28690: \"$ac_link\"") >&5
2869328690 (eval $ac_link) 2>&5
2869428691 ac_status=$?
28695 echo "$as_me:28696: \$? = $ac_status" >&5
28692 echo "$as_me:28693: \$? = $ac_status" >&5
2869628693 (exit $ac_status); } &&
2869728694 { ac_try='test -s conftest$ac_exeext'
28698 { (eval echo "$as_me:28699: \"$ac_try\"") >&5
28695 { (eval echo "$as_me:28696: \"$ac_try\"") >&5
2869928696 (eval $ac_try) 2>&5
2870028697 ac_status=$?
28701 echo "$as_me:28702: \$? = $ac_status" >&5
28698 echo "$as_me:28699: \$? = $ac_status" >&5
2870228699 (exit $ac_status); }; }; then
2870328700 eval "$as_ac_var=yes"
2870428701 else
2870828705 fi
2870928706 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2871028707 fi
28711 echo "$as_me:28712: result: `eval echo '${'$as_ac_var'}'`" >&5
28708 echo "$as_me:28709: result: `eval echo '${'$as_ac_var'}'`" >&5
2871228709 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
2871328710 if test `eval echo '${'$as_ac_var'}'` = yes; then
2871428711 cat >>confdefs.h <<EOF
2872028717
2872128718 ac_cv_func_fork_works=$ac_cv_func_fork
2872228719 if test "x$ac_cv_func_fork" = xyes; then
28723 echo "$as_me:28724: checking for working fork" >&5
28720 echo "$as_me:28721: checking for working fork" >&5
2872428721 echo $ECHO_N "checking for working fork... $ECHO_C" >&6
2872528722 if test "${ac_cv_func_fork_works+set}" = set; then
2872628723 echo $ECHO_N "(cached) $ECHO_C" >&6
2874328740 }
2874428741 _ACEOF
2874528742 rm -f conftest$ac_exeext
28746 if { (eval echo "$as_me:28747: \"$ac_link\"") >&5
28743 if { (eval echo "$as_me:28744: \"$ac_link\"") >&5
2874728744 (eval $ac_link) 2>&5
2874828745 ac_status=$?
28749 echo "$as_me:28750: \$? = $ac_status" >&5
28746 echo "$as_me:28747: \$? = $ac_status" >&5
2875028747 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
28751 { (eval echo "$as_me:28752: \"$ac_try\"") >&5
28748 { (eval echo "$as_me:28749: \"$ac_try\"") >&5
2875228749 (eval $ac_try) 2>&5
2875328750 ac_status=$?
28754 echo "$as_me:28755: \$? = $ac_status" >&5
28751 echo "$as_me:28752: \$? = $ac_status" >&5
2875528752 (exit $ac_status); }; }; then
2875628753 ac_cv_func_fork_works=yes
2875728754 else
2876328760 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2876428761 fi
2876528762 fi
28766 echo "$as_me:28767: result: $ac_cv_func_fork_works" >&5
28763 echo "$as_me:28764: result: $ac_cv_func_fork_works" >&5
2876728764 echo "${ECHO_T}$ac_cv_func_fork_works" >&6
2876828765
2876928766 fi
2877728774 ac_cv_func_fork_works=yes
2877828775 ;;
2877928776 esac
28780 { echo "$as_me:28781: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
28777 { echo "$as_me:28778: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
2878128778 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;}
2878228779 fi
2878328780 ac_cv_func_vfork_works=$ac_cv_func_vfork
2878428781 if test "x$ac_cv_func_vfork" = xyes; then
28785 echo "$as_me:28786: checking for working vfork" >&5
28782 echo "$as_me:28783: checking for working vfork" >&5
2878628783 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
2878728784 if test "${ac_cv_func_vfork_works+set}" = set; then
2878828785 echo $ECHO_N "(cached) $ECHO_C" >&6
2879128788 ac_cv_func_vfork_works=cross
2879228789 else
2879328790 cat >conftest.$ac_ext <<_ACEOF
28794 #line 28795 "configure"
28791 #line 28792 "configure"
2879528792 #include "confdefs.h"
2879628793 /* Thanks to Paul Eggert for this test. */
2879728794 #include <stdio.h>
2888828885 }
2888928886 _ACEOF
2889028887 rm -f conftest$ac_exeext
28891 if { (eval echo "$as_me:28892: \"$ac_link\"") >&5
28888 if { (eval echo "$as_me:28889: \"$ac_link\"") >&5
2889228889 (eval $ac_link) 2>&5
2889328890 ac_status=$?
28894 echo "$as_me:28895: \$? = $ac_status" >&5
28891 echo "$as_me:28892: \$? = $ac_status" >&5
2889528892 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
28896 { (eval echo "$as_me:28897: \"$ac_try\"") >&5
28893 { (eval echo "$as_me:28894: \"$ac_try\"") >&5
2889728894 (eval $ac_try) 2>&5
2889828895 ac_status=$?
28899 echo "$as_me:28900: \$? = $ac_status" >&5
28896 echo "$as_me:28897: \$? = $ac_status" >&5
2890028897 (exit $ac_status); }; }; then
2890128898 ac_cv_func_vfork_works=yes
2890228899 else
2890828905 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
2890928906 fi
2891028907 fi
28911 echo "$as_me:28912: result: $ac_cv_func_vfork_works" >&5
28908 echo "$as_me:28909: result: $ac_cv_func_vfork_works" >&5
2891228909 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
2891328910
2891428911 fi;
2891528912 if test "x$ac_cv_func_fork_works" = xcross; then
2891628913 ac_cv_func_vfork_works=ac_cv_func_vfork
28917 { echo "$as_me:28918: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
28914 { echo "$as_me:28915: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
2891828915 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;}
2891928916 fi
2892028917
2893928936
2894028937 fi
2894128938
28942 echo "$as_me:28943: checking if we should use fcntl or ioctl" >&5
28939 echo "$as_me:28940: checking if we should use fcntl or ioctl" >&5
2894328940 echo $ECHO_N "checking if we should use fcntl or ioctl... $ECHO_C" >&6
2894428941 if test "${cf_cv_fionbio+set}" = set; then
2894528942 echo $ECHO_N "(cached) $ECHO_C" >&6
2894628943 else
2894728944
2894828945 cat >conftest.$ac_ext <<_ACEOF
28949 #line 28950 "configure"
28946 #line 28947 "configure"
2895028947 #include "confdefs.h"
2895128948
2895228949 #include <sys/types.h>
2896328960 }
2896428961 _ACEOF
2896528962 rm -f conftest.$ac_objext conftest$ac_exeext
28966 if { (eval echo "$as_me:28967: \"$ac_link\"") >&5
28963 if { (eval echo "$as_me:28964: \"$ac_link\"") >&5
2896728964 (eval $ac_link) 2>&5
2896828965 ac_status=$?
28969 echo "$as_me:28970: \$? = $ac_status" >&5
28966 echo "$as_me:28967: \$? = $ac_status" >&5
2897028967 (exit $ac_status); } &&
2897128968 { ac_try='test -s conftest$ac_exeext'
28972 { (eval echo "$as_me:28973: \"$ac_try\"") >&5
28969 { (eval echo "$as_me:28970: \"$ac_try\"") >&5
2897328970 (eval $ac_try) 2>&5
2897428971 ac_status=$?
28975 echo "$as_me:28976: \$? = $ac_status" >&5
28972 echo "$as_me:28973: \$? = $ac_status" >&5
2897628973 (exit $ac_status); }; }; then
2897728974 cf_cv_fionbio=ioctl
2897828975 else
2898028977 cat conftest.$ac_ext >&5
2898128978
2898228979 cat >conftest.$ac_ext <<_ACEOF
28983 #line 28984 "configure"
28980 #line 28981 "configure"
2898428981 #include "confdefs.h"
2898528982
2898628983 #include <sys/types.h>
2900228999 }
2900329000 _ACEOF
2900429001 rm -f conftest.$ac_objext conftest$ac_exeext
29005 if { (eval echo "$as_me:29006: \"$ac_link\"") >&5
29002 if { (eval echo "$as_me:29003: \"$ac_link\"") >&5
2900629003 (eval $ac_link) 2>&5
2900729004 ac_status=$?
29008 echo "$as_me:29009: \$? = $ac_status" >&5
29005 echo "$as_me:29006: \$? = $ac_status" >&5
2900929006 (exit $ac_status); } &&
2901029007 { ac_try='test -s conftest$ac_exeext'
29011 { (eval echo "$as_me:29012: \"$ac_try\"") >&5
29008 { (eval echo "$as_me:29009: \"$ac_try\"") >&5
2901229009 (eval $ac_try) 2>&5
2901329010 ac_status=$?
29014 echo "$as_me:29015: \$? = $ac_status" >&5
29011 echo "$as_me:29012: \$? = $ac_status" >&5
2901529012 (exit $ac_status); }; }; then
2901629013 cf_cv_fionbio=fcntl
2901729014 else
2902429021 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2902529022
2902629023 fi
29027 echo "$as_me:29028: result: $cf_cv_fionbio" >&5
29024 echo "$as_me:29025: result: $cf_cv_fionbio" >&5
2902829025 echo "${ECHO_T}$cf_cv_fionbio" >&6
2902929026 test "$cf_cv_fionbio" = "fcntl" &&
2903029027 cat >>confdefs.h <<\EOF
2903129028 #define USE_FCNTL 1
2903229029 EOF
2903329030
29034 echo "$as_me:29035: checking for broken/missing definition of remove" >&5
29031 echo "$as_me:29032: checking for broken/missing definition of remove" >&5
2903529032 echo $ECHO_N "checking for broken/missing definition of remove... $ECHO_C" >&6
2903629033 if test "${cf_cv_baddef_remove+set}" = set; then
2903729034 echo $ECHO_N "(cached) $ECHO_C" >&6
2903829035 else
2903929036
2904029037 cat >conftest.$ac_ext <<_ACEOF
29041 #line 29042 "configure"
29038 #line 29039 "configure"
2904229039 #include "confdefs.h"
2904329040 #include <stdio.h>
2904429041 int
2905029047 }
2905129048 _ACEOF
2905229049 rm -f conftest.$ac_objext conftest$ac_exeext
29053 if { (eval echo "$as_me:29054: \"$ac_link\"") >&5
29050 if { (eval echo "$as_me:29051: \"$ac_link\"") >&5
2905429051 (eval $ac_link) 2>&5
2905529052 ac_status=$?
29056 echo "$as_me:29057: \$? = $ac_status" >&5
29053 echo "$as_me:29054: \$? = $ac_status" >&5
2905729054 (exit $ac_status); } &&
2905829055 { ac_try='test -s conftest$ac_exeext'
29059 { (eval echo "$as_me:29060: \"$ac_try\"") >&5
29056 { (eval echo "$as_me:29057: \"$ac_try\"") >&5
2906029057 (eval $ac_try) 2>&5
2906129058 ac_status=$?
29062 echo "$as_me:29063: \$? = $ac_status" >&5
29059 echo "$as_me:29060: \$? = $ac_status" >&5
2906329060 (exit $ac_status); }; }; then
2906429061 cf_cv_baddef_remove=no
2906529062 else
2906629063 echo "$as_me: failed program was:" >&5
2906729064 cat conftest.$ac_ext >&5
2906829065 cat >conftest.$ac_ext <<_ACEOF
29069 #line 29070 "configure"
29066 #line 29067 "configure"
2907029067 #include "confdefs.h"
2907129068 #include <stdio.h>
2907229069 int __unlink(name) { return unlink(name); }
2907929076 }
2908029077 _ACEOF
2908129078 rm -f conftest.$ac_objext conftest$ac_exeext
29082 if { (eval echo "$as_me:29083: \"$ac_link\"") >&5
29079 if { (eval echo "$as_me:29080: \"$ac_link\"") >&5
2908329080 (eval $ac_link) 2>&5
2908429081 ac_status=$?
29085 echo "$as_me:29086: \$? = $ac_status" >&5
29082 echo "$as_me:29083: \$? = $ac_status" >&5
2908629083 (exit $ac_status); } &&
2908729084 { ac_try='test -s conftest$ac_exeext'
29088 { (eval echo "$as_me:29089: \"$ac_try\"") >&5
29085 { (eval echo "$as_me:29086: \"$ac_try\"") >&5
2908929086 (eval $ac_try) 2>&5
2909029087 ac_status=$?
29091 echo "$as_me:29092: \$? = $ac_status" >&5
29088 echo "$as_me:29089: \$? = $ac_status" >&5
2909229089 (exit $ac_status); }; }; then
2909329090 cf_cv_baddef_remove=yes
2909429091 else
2910329100
2910429101 fi
2910529102
29106 echo "$as_me:29107: result: $cf_cv_baddef_remove" >&5
29103 echo "$as_me:29104: result: $cf_cv_baddef_remove" >&5
2910729104 echo "${ECHO_T}$cf_cv_baddef_remove" >&6
2910829105 test "$cf_cv_baddef_remove" != no &&
2910929106 cat >>confdefs.h <<\EOF
2911029107 #define NEED_REMOVE 1
2911129108 EOF
2911229109
29113 echo "$as_me:29114: checking for lstat" >&5
29110 echo "$as_me:29111: checking for lstat" >&5
2911429111 echo $ECHO_N "checking for lstat... $ECHO_C" >&6
2911529112 if test "${ac_cv_func_lstat+set}" = set; then
2911629113 echo $ECHO_N "(cached) $ECHO_C" >&6
2911729114 else
2911829115
2911929116 cat >conftest.$ac_ext <<_ACEOF
29120 #line 29121 "configure"
29117 #line 29118 "configure"
2912129118 #include "confdefs.h"
2912229119
2912329120 #include <sys/types.h>
2913129128 }
2913229129 _ACEOF
2913329130 rm -f conftest.$ac_objext conftest$ac_exeext
29134 if { (eval echo "$as_me:29135: \"$ac_link\"") >&5
29131 if { (eval echo "$as_me:29132: \"$ac_link\"") >&5
2913529132 (eval $ac_link) 2>&5
2913629133 ac_status=$?
29137 echo "$as_me:29138: \$? = $ac_status" >&5
29134 echo "$as_me:29135: \$? = $ac_status" >&5
2913829135 (exit $ac_status); } &&
2913929136 { ac_try='test -s conftest$ac_exeext'
29140 { (eval echo "$as_me:29141: \"$ac_try\"") >&5
29137 { (eval echo "$as_me:29138: \"$ac_try\"") >&5
2914129138 (eval $ac_try) 2>&5
2914229139 ac_status=$?
29143 echo "$as_me:29144: \$? = $ac_status" >&5
29140 echo "$as_me:29141: \$? = $ac_status" >&5
2914429141 (exit $ac_status); }; }; then
2914529142 ac_cv_func_lstat=yes
2914629143 else
2915229149
2915329150 fi
2915429151
29155 echo "$as_me:29156: result: $ac_cv_func_lstat " >&5
29152 echo "$as_me:29153: result: $ac_cv_func_lstat " >&5
2915629153 echo "${ECHO_T}$ac_cv_func_lstat " >&6
2915729154 if test $ac_cv_func_lstat = yes; then
2915829155
2918729184
2918829185 do
2918929186 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
29190 echo "$as_me:29191: checking for $ac_func" >&5
29187 echo "$as_me:29188: checking for $ac_func" >&5
2919129188 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2919229189 if eval "test \"\${$as_ac_var+set}\" = set"; then
2919329190 echo $ECHO_N "(cached) $ECHO_C" >&6
2919429191 else
2919529192 cat >conftest.$ac_ext <<_ACEOF
29196 #line 29197 "configure"
29193 #line 29194 "configure"
2919729194 #include "confdefs.h"
2919829195 /* System header to define __stub macros and hopefully few prototypes,
2919929196 which can conflict with char $ac_func (); below. */
2922429221 }
2922529222 _ACEOF
2922629223 rm -f conftest.$ac_objext conftest$ac_exeext
29227 if { (eval echo "$as_me:29228: \"$ac_link\"") >&5
29224 if { (eval echo "$as_me:29225: \"$ac_link\"") >&5
2922829225 (eval $ac_link) 2>&5
2922929226 ac_status=$?
29230 echo "$as_me:29231: \$? = $ac_status" >&5
29227 echo "$as_me:29228: \$? = $ac_status" >&5
2923129228 (exit $ac_status); } &&
2923229229 { ac_try='test -s conftest$ac_exeext'
29233 { (eval echo "$as_me:29234: \"$ac_try\"") >&5
29230 { (eval echo "$as_me:29231: \"$ac_try\"") >&5
2923429231 (eval $ac_try) 2>&5
2923529232 ac_status=$?
29236 echo "$as_me:29237: \$? = $ac_status" >&5
29233 echo "$as_me:29234: \$? = $ac_status" >&5
2923729234 (exit $ac_status); }; }; then
2923829235 eval "$as_ac_var=yes"
2923929236 else
2924329240 fi
2924429241 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2924529242 fi
29246 echo "$as_me:29247: result: `eval echo '${'$as_ac_var'}'`" >&5
29243 echo "$as_me:29244: result: `eval echo '${'$as_ac_var'}'`" >&5
2924729244 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
2924829245 if test `eval echo '${'$as_ac_var'}'` = yes; then
2924929246 cat >>confdefs.h <<EOF
2925929256
2926029257 do
2926129258 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
29262 echo "$as_me:29263: checking for $ac_func" >&5
29259 echo "$as_me:29260: checking for $ac_func" >&5
2926329260 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
2926429261 if eval "test \"\${$as_ac_var+set}\" = set"; then
2926529262 echo $ECHO_N "(cached) $ECHO_C" >&6
2926629263 else
2926729264 cat >conftest.$ac_ext <<_ACEOF
29268 #line 29269 "configure"
29265 #line 29266 "configure"
2926929266 #include "confdefs.h"
2927029267 /* System header to define __stub macros and hopefully few prototypes,
2927129268 which can conflict with char $ac_func (); below. */
2929629293 }
2929729294 _ACEOF
2929829295 rm -f conftest.$ac_objext conftest$ac_exeext
29299 if { (eval echo "$as_me:29300: \"$ac_link\"") >&5
29296 if { (eval echo "$as_me:29297: \"$ac_link\"") >&5
2930029297 (eval $ac_link) 2>&5
2930129298 ac_status=$?
29302 echo "$as_me:29303: \$? = $ac_status" >&5
29299 echo "$as_me:29300: \$? = $ac_status" >&5
2930329300 (exit $ac_status); } &&
2930429301 { ac_try='test -s conftest$ac_exeext'
29305 { (eval echo "$as_me:29306: \"$ac_try\"") >&5
29302 { (eval echo "$as_me:29303: \"$ac_try\"") >&5
2930629303 (eval $ac_try) 2>&5
2930729304 ac_status=$?
29308 echo "$as_me:29309: \$? = $ac_status" >&5
29305 echo "$as_me:29306: \$? = $ac_status" >&5
2930929306 (exit $ac_status); }; }; then
2931029307 eval "$as_ac_var=yes"
2931129308 else
2931529312 fi
2931629313 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2931729314 fi
29318 echo "$as_me:29319: result: `eval echo '${'$as_ac_var'}'`" >&5
29315 echo "$as_me:29316: result: `eval echo '${'$as_ac_var'}'`" >&5
2931929316 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
2932029317 if test `eval echo '${'$as_ac_var'}'` = yes; then
2932129318 cat >>confdefs.h <<EOF
2932729324 fi
2932829325 done
2932929326
29330 echo "$as_me:29331: checking for random-integer functions" >&5
29327 echo "$as_me:29328: checking for random-integer functions" >&5
2933129328 echo $ECHO_N "checking for random-integer functions... $ECHO_C" >&6
2933229329 if test "${cf_cv_srand_func+set}" = set; then
2933329330 echo $ECHO_N "(cached) $ECHO_C" >&6
2934729344 esac
2934829345
2934929346 cat >conftest.$ac_ext <<_ACEOF
29350 #line 29351 "configure"
29347 #line 29348 "configure"
2935129348 #include "confdefs.h"
2935229349
2935329350 #ifdef HAVE_STDLIB_H
2936629363 }
2936729364 _ACEOF
2936829365 rm -f conftest.$ac_objext conftest$ac_exeext
29369 if { (eval echo "$as_me:29370: \"$ac_link\"") >&5
29366 if { (eval echo "$as_me:29367: \"$ac_link\"") >&5
2937029367 (eval $ac_link) 2>&5
2937129368 ac_status=$?
29372 echo "$as_me:29373: \$? = $ac_status" >&5
29369 echo "$as_me:29370: \$? = $ac_status" >&5
2937329370 (exit $ac_status); } &&
2937429371 { ac_try='test -s conftest$ac_exeext'
29375 { (eval echo "$as_me:29376: \"$ac_try\"") >&5
29372 { (eval echo "$as_me:29373: \"$ac_try\"") >&5
2937629373 (eval $ac_try) 2>&5
2937729374 ac_status=$?
29378 echo "$as_me:29379: \$? = $ac_status" >&5
29375 echo "$as_me:29376: \$? = $ac_status" >&5
2937929376 (exit $ac_status); }; }; then
2938029377 cf_cv_srand_func=$cf_func
2938129378 break
2938729384 done
2938829385
2938929386 fi
29390 echo "$as_me:29391: result: $cf_cv_srand_func" >&5
29387 echo "$as_me:29388: result: $cf_cv_srand_func" >&5
2939129388 echo "${ECHO_T}$cf_cv_srand_func" >&6
2939229389 if test "$cf_cv_srand_func" != unknown ; then
29393 echo "$as_me:29394: checking for range of random-integers" >&5
29390 echo "$as_me:29391: checking for range of random-integers" >&5
2939429391 echo $ECHO_N "checking for range of random-integers... $ECHO_C" >&6
2939529392 if test "${cf_cv_rand_max+set}" = set; then
2939629393 echo $ECHO_N "(cached) $ECHO_C" >&6
2941129408 ;;
2941229409 esac
2941329410 cat >conftest.$ac_ext <<_ACEOF
29414 #line 29415 "configure"
29411 #line 29412 "configure"
2941529412 #include "confdefs.h"
2941629413
2941729414 #ifdef HAVE_STDLIB_H
2943029427 }
2943129428 _ACEOF
2943229429 rm -f conftest.$ac_objext
29433 if { (eval echo "$as_me:29434: \"$ac_compile\"") >&5
29430 if { (eval echo "$as_me:29431: \"$ac_compile\"") >&5
2943429431 (eval $ac_compile) 2>&5
2943529432 ac_status=$?
29436 echo "$as_me:29437: \$? = $ac_status" >&5
29433 echo "$as_me:29434: \$? = $ac_status" >&5
2943729434 (exit $ac_status); } &&
2943829435 { ac_try='test -s conftest.$ac_objext'
29439 { (eval echo "$as_me:29440: \"$ac_try\"") >&5
29436 { (eval echo "$as_me:29437: \"$ac_try\"") >&5
2944029437 (eval $ac_try) 2>&5
2944129438 ac_status=$?
29442 echo "$as_me:29443: \$? = $ac_status" >&5
29439 echo "$as_me:29440: \$? = $ac_status" >&5
2944329440 (exit $ac_status); }; }; then
2944429441 :
2944529442 else
2945029447 rm -f conftest.$ac_objext conftest.$ac_ext
2945129448
2945229449 fi
29453 echo "$as_me:29454: result: $cf_cv_rand_max" >&5
29450 echo "$as_me:29451: result: $cf_cv_rand_max" >&5
2945429451 echo "${ECHO_T}$cf_cv_rand_max" >&6
2945529452
2945629453 case $cf_cv_srand_func in
2945729454 */arc4random)
29458 echo "$as_me:29459: checking if <bsd/stdlib.h> should be included" >&5
29455 echo "$as_me:29456: checking if <bsd/stdlib.h> should be included" >&5
2945929456 echo $ECHO_N "checking if <bsd/stdlib.h> should be included... $ECHO_C" >&6
2946029457 cat >conftest.$ac_ext <<_ACEOF
29461 #line 29462 "configure"
29458 #line 29459 "configure"
2946229459 #include "confdefs.h"
2946329460 #include <bsd/stdlib.h>
2946429461 int
2947129468 }
2947229469 _ACEOF
2947329470 rm -f conftest.$ac_objext
29474 if { (eval echo "$as_me:29475: \"$ac_compile\"") >&5
29471 if { (eval echo "$as_me:29472: \"$ac_compile\"") >&5
2947529472 (eval $ac_compile) 2>&5
2947629473 ac_status=$?
29477 echo "$as_me:29478: \$? = $ac_status" >&5
29474 echo "$as_me:29475: \$? = $ac_status" >&5
2947829475 (exit $ac_status); } &&
2947929476 { ac_try='test -s conftest.$ac_objext'
29480 { (eval echo "$as_me:29481: \"$ac_try\"") >&5
29477 { (eval echo "$as_me:29478: \"$ac_try\"") >&5
2948129478 (eval $ac_try) 2>&5
2948229479 ac_status=$?
29483 echo "$as_me:29484: \$? = $ac_status" >&5
29480 echo "$as_me:29481: \$? = $ac_status" >&5
2948429481 (exit $ac_status); }; }; then
2948529482 cf_bsd_stdlib_h=no
2948629483 else
2948729484 echo "$as_me: failed program was:" >&5
2948829485 cat conftest.$ac_ext >&5
2948929486 cat >conftest.$ac_ext <<_ACEOF
29490 #line 29491 "configure"
29487 #line 29488 "configure"
2949129488 #include "confdefs.h"
2949229489 #include <bsd/stdlib.h>
2949329490 int
2949929496 }
2950029497 _ACEOF
2950129498 rm -f conftest.$ac_objext
29502 if { (eval echo "$as_me:29503: \"$ac_compile\"") >&5
29499 if { (eval echo "$as_me:29500: \"$ac_compile\"") >&5
2950329500 (eval $ac_compile) 2>&5
2950429501 ac_status=$?
29505 echo "$as_me:29506: \$? = $ac_status" >&5
29502 echo "$as_me:29503: \$? = $ac_status" >&5
2950629503 (exit $ac_status); } &&
2950729504 { ac_try='test -s conftest.$ac_objext'
29508 { (eval echo "$as_me:29509: \"$ac_try\"") >&5
29505 { (eval echo "$as_me:29506: \"$ac_try\"") >&5
2950929506 (eval $ac_try) 2>&5
2951029507 ac_status=$?
29511 echo "$as_me:29512: \$? = $ac_status" >&5
29508 echo "$as_me:29509: \$? = $ac_status" >&5
2951229509 (exit $ac_status); }; }; then
2951329510 cf_bsd_stdlib_h=yes
2951429511 else
2951929516 rm -f conftest.$ac_objext conftest.$ac_ext
2952029517 fi
2952129518 rm -f conftest.$ac_objext conftest.$ac_ext
29522 echo "$as_me:29523: result: $cf_bsd_stdlib_h" >&5
29519 echo "$as_me:29520: result: $cf_bsd_stdlib_h" >&5
2952329520 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6
2952429521 if test "$cf_bsd_stdlib_h" = yes
2952529522 then
2952929526 EOF
2953029527
2953129528 else
29532 echo "$as_me:29533: checking if <bsd/random.h> should be included" >&5
29529 echo "$as_me:29530: checking if <bsd/random.h> should be included" >&5
2953329530 echo $ECHO_N "checking if <bsd/random.h> should be included... $ECHO_C" >&6
2953429531 cat >conftest.$ac_ext <<_ACEOF
29535 #line 29536 "configure"
29532 #line 29533 "configure"
2953629533 #include "confdefs.h"
2953729534 #include <bsd/random.h>
2953829535 int
2954529542 }
2954629543 _ACEOF
2954729544 rm -f conftest.$ac_objext
29548 if { (eval echo "$as_me:29549: \"$ac_compile\"") >&5
29545 if { (eval echo "$as_me:29546: \"$ac_compile\"") >&5
2954929546 (eval $ac_compile) 2>&5
2955029547 ac_status=$?
29551 echo "$as_me:29552: \$? = $ac_status" >&5
29548 echo "$as_me:29549: \$? = $ac_status" >&5
2955229549 (exit $ac_status); } &&
2955329550 { ac_try='test -s conftest.$ac_objext'
29554 { (eval echo "$as_me:29555: \"$ac_try\"") >&5
29551 { (eval echo "$as_me:29552: \"$ac_try\"") >&5
2955529552 (eval $ac_try) 2>&5
2955629553 ac_status=$?
29557 echo "$as_me:29558: \$? = $ac_status" >&5
29554 echo "$as_me:29555: \$? = $ac_status" >&5
2955829555 (exit $ac_status); }; }; then
2955929556 cf_bsd_random_h=no
2956029557 else
2956129558 echo "$as_me: failed program was:" >&5
2956229559 cat conftest.$ac_ext >&5
2956329560 cat >conftest.$ac_ext <<_ACEOF
29564 #line 29565 "configure"
29561 #line 29562 "configure"
2956529562 #include "confdefs.h"
2956629563 #include <bsd/random.h>
2956729564 int
2957329570 }
2957429571 _ACEOF
2957529572 rm -f conftest.$ac_objext
29576 if { (eval echo "$as_me:29577: \"$ac_compile\"") >&5
29573 if { (eval echo "$as_me:29574: \"$ac_compile\"") >&5
2957729574 (eval $ac_compile) 2>&5
2957829575 ac_status=$?
29579 echo "$as_me:29580: \$? = $ac_status" >&5
29576 echo "$as_me:29577: \$? = $ac_status" >&5
2958029577 (exit $ac_status); } &&
2958129578 { ac_try='test -s conftest.$ac_objext'
29582 { (eval echo "$as_me:29583: \"$ac_try\"") >&5
29579 { (eval echo "$as_me:29580: \"$ac_try\"") >&5
2958329580 (eval $ac_try) 2>&5
2958429581 ac_status=$?
29585 echo "$as_me:29586: \$? = $ac_status" >&5
29582 echo "$as_me:29583: \$? = $ac_status" >&5
2958629583 (exit $ac_status); }; }; then
2958729584 cf_bsd_random_h=yes
2958829585 else
2959329590 rm -f conftest.$ac_objext conftest.$ac_ext
2959429591 fi
2959529592 rm -f conftest.$ac_objext conftest.$ac_ext
29596 echo "$as_me:29597: result: $cf_bsd_random_h" >&5
29593 echo "$as_me:29594: result: $cf_bsd_random_h" >&5
2959729594 echo "${ECHO_T}$cf_bsd_random_h" >&6
2959829595 if test "$cf_bsd_random_h" = yes
2959929596 then
2960329600 EOF
2960429601
2960529602 else
29606 { echo "$as_me:29607: WARNING: no header file found for arc4random" >&5
29603 { echo "$as_me:29604: WARNING: no header file found for arc4random" >&5
2960729604 echo "$as_me: WARNING: no header file found for arc4random" >&2;}
2960829605 fi
2960929606 fi
2963829635 for ac_func in sleep
2963929636 do
2964029637
29641 echo "$as_me:29642: checking for $ac_func declaration" >&5
29638 echo "$as_me:29639: checking for $ac_func declaration" >&5
2964229639 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
2964329640 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
2964429641 echo $ECHO_N "(cached) $ECHO_C" >&6
2964529642 else
2964629643 cat >conftest.$ac_ext <<_ACEOF
29647 #line 29648 "configure"
29644 #line 29645 "configure"
2964829645 #include "confdefs.h"
2964929646
2965029647 #ifdef HAVE_STDLIB_H
2966529662 }
2966629663 _ACEOF
2966729664 rm -f conftest.$ac_objext
29668 if { (eval echo "$as_me:29669: \"$ac_compile\"") >&5
29665 if { (eval echo "$as_me:29666: \"$ac_compile\"") >&5
2966929666 (eval $ac_compile) 2>&5
2967029667 ac_status=$?
29671 echo "$as_me:29672: \$? = $ac_status" >&5
29668 echo "$as_me:29669: \$? = $ac_status" >&5
2967229669 (exit $ac_status); } &&
2967329670 { ac_try='test -s conftest.$ac_objext'
29674 { (eval echo "$as_me:29675: \"$ac_try\"") >&5
29671 { (eval echo "$as_me:29672: \"$ac_try\"") >&5
2967529672 (eval $ac_try) 2>&5
2967629673 ac_status=$?
29677 echo "$as_me:29678: \$? = $ac_status" >&5
29674 echo "$as_me:29675: \$? = $ac_status" >&5
2967829675 (exit $ac_status); }; }; then
2967929676
2968029677 cat >conftest.$ac_ext <<_ACEOF
29681 #line 29682 "configure"
29678 #line 29679 "configure"
2968229679 #include "confdefs.h"
2968329680
2968429681 #ifdef HAVE_STDLIB_H
2969929696 }
2970029697 _ACEOF
2970129698 rm -f conftest.$ac_objext
29702 if { (eval echo "$as_me:29703: \"$ac_compile\"") >&5
29699 if { (eval echo "$as_me:29700: \"$ac_compile\"") >&5
2970329700 (eval $ac_compile) 2>&5
2970429701 ac_status=$?
29705 echo "$as_me:29706: \$? = $ac_status" >&5
29702 echo "$as_me:29703: \$? = $ac_status" >&5
2970629703 (exit $ac_status); } &&
2970729704 { ac_try='test -s conftest.$ac_objext'
29708 { (eval echo "$as_me:29709: \"$ac_try\"") >&5
29705 { (eval echo "$as_me:29706: \"$ac_try\"") >&5
2970929706 (eval $ac_try) 2>&5
2971029707 ac_status=$?
29711 echo "$as_me:29712: \$? = $ac_status" >&5
29708 echo "$as_me:29709: \$? = $ac_status" >&5
2971229709 (exit $ac_status); }; }; then
2971329710
2971429711 eval "ac_cv_func_decl_$ac_func=yes"
2972929726 fi
2973029727
2973129728 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
29732 echo "$as_me:29733: result: yes" >&5
29729 echo "$as_me:29730: result: yes" >&5
2973329730 echo "${ECHO_T}yes" >&6
2973429731 :
2973529732 else
29736 echo "$as_me:29737: result: no" >&5
29733 echo "$as_me:29734: result: no" >&5
2973729734 echo "${ECHO_T}no" >&6
2973829735
2973929736 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
2974829745 for ac_func in strstr
2974929746 do
2975029747
29751 echo "$as_me:29752: checking for $ac_func declaration" >&5
29748 echo "$as_me:29749: checking for $ac_func declaration" >&5
2975229749 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
2975329750 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
2975429751 echo $ECHO_N "(cached) $ECHO_C" >&6
2975529752 else
2975629753 cat >conftest.$ac_ext <<_ACEOF
29757 #line 29758 "configure"
29754 #line 29755 "configure"
2975829755 #include "confdefs.h"
2975929756 #include <string.h>
2976029757 int
2976829765 }
2976929766 _ACEOF
2977029767 rm -f conftest.$ac_objext
29771 if { (eval echo "$as_me:29772: \"$ac_compile\"") >&5
29768 if { (eval echo "$as_me:29769: \"$ac_compile\"") >&5
2977229769 (eval $ac_compile) 2>&5
2977329770 ac_status=$?
29774 echo "$as_me:29775: \$? = $ac_status" >&5
29771 echo "$as_me:29772: \$? = $ac_status" >&5
2977529772 (exit $ac_status); } &&
2977629773 { ac_try='test -s conftest.$ac_objext'
29777 { (eval echo "$as_me:29778: \"$ac_try\"") >&5
29774 { (eval echo "$as_me:29775: \"$ac_try\"") >&5
2977829775 (eval $ac_try) 2>&5
2977929776 ac_status=$?
29780 echo "$as_me:29781: \$? = $ac_status" >&5
29777 echo "$as_me:29778: \$? = $ac_status" >&5
2978129778 (exit $ac_status); }; }; then
2978229779
2978329780 cat >conftest.$ac_ext <<_ACEOF
29784 #line 29785 "configure"
29781 #line 29782 "configure"
2978529782 #include "confdefs.h"
2978629783 #include <string.h>
2978729784 int
2979529792 }
2979629793 _ACEOF
2979729794 rm -f conftest.$ac_objext
29798 if { (eval echo "$as_me:29799: \"$ac_compile\"") >&5
29795 if { (eval echo "$as_me:29796: \"$ac_compile\"") >&5
2979929796 (eval $ac_compile) 2>&5
2980029797 ac_status=$?
29801 echo "$as_me:29802: \$? = $ac_status" >&5
29798 echo "$as_me:29799: \$? = $ac_status" >&5
2980229799 (exit $ac_status); } &&
2980329800 { ac_try='test -s conftest.$ac_objext'
29804 { (eval echo "$as_me:29805: \"$ac_try\"") >&5
29801 { (eval echo "$as_me:29802: \"$ac_try\"") >&5
2980529802 (eval $ac_try) 2>&5
2980629803 ac_status=$?
29807 echo "$as_me:29808: \$? = $ac_status" >&5
29804 echo "$as_me:29805: \$? = $ac_status" >&5
2980829805 (exit $ac_status); }; }; then
2980929806
2981029807 eval "ac_cv_func_decl_$ac_func=yes"
2982529822 fi
2982629823
2982729824 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
29828 echo "$as_me:29829: result: yes" >&5
29825 echo "$as_me:29826: result: yes" >&5
2982929826 echo "${ECHO_T}yes" >&6
2983029827 :
2983129828 else
29832 echo "$as_me:29833: result: no" >&5
29829 echo "$as_me:29830: result: no" >&5
2983329830 echo "${ECHO_T}no" >&6
2983429831
2983529832 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
2984429841 for ac_func in getgrgid getgrnam
2984529842 do
2984629843
29847 echo "$as_me:29848: checking for $ac_func declaration" >&5
29844 echo "$as_me:29845: checking for $ac_func declaration" >&5
2984829845 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
2984929846 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
2985029847 echo $ECHO_N "(cached) $ECHO_C" >&6
2985129848 else
2985229849 cat >conftest.$ac_ext <<_ACEOF
29853 #line 29854 "configure"
29850 #line 29851 "configure"
2985429851 #include "confdefs.h"
2985529852
2985629853 #include <stdio.h>
2986629863 }
2986729864 _ACEOF
2986829865 rm -f conftest.$ac_objext
29869 if { (eval echo "$as_me:29870: \"$ac_compile\"") >&5
29866 if { (eval echo "$as_me:29867: \"$ac_compile\"") >&5
2987029867 (eval $ac_compile) 2>&5
2987129868 ac_status=$?
29872 echo "$as_me:29873: \$? = $ac_status" >&5
29869 echo "$as_me:29870: \$? = $ac_status" >&5
2987329870 (exit $ac_status); } &&
2987429871 { ac_try='test -s conftest.$ac_objext'
29875 { (eval echo "$as_me:29876: \"$ac_try\"") >&5
29872 { (eval echo "$as_me:29873: \"$ac_try\"") >&5
2987629873 (eval $ac_try) 2>&5
2987729874 ac_status=$?
29878 echo "$as_me:29879: \$? = $ac_status" >&5
29875 echo "$as_me:29876: \$? = $ac_status" >&5
2987929876 (exit $ac_status); }; }; then
2988029877
2988129878 cat >conftest.$ac_ext <<_ACEOF
29882 #line 29883 "configure"
29879 #line 29880 "configure"
2988329880 #include "confdefs.h"
2988429881
2988529882 #include <stdio.h>
2989529892 }
2989629893 _ACEOF
2989729894 rm -f conftest.$ac_objext
29898 if { (eval echo "$as_me:29899: \"$ac_compile\"") >&5
29895 if { (eval echo "$as_me:29896: \"$ac_compile\"") >&5
2989929896 (eval $ac_compile) 2>&5
2990029897 ac_status=$?
29901 echo "$as_me:29902: \$? = $ac_status" >&5
29898 echo "$as_me:29899: \$? = $ac_status" >&5
2990229899 (exit $ac_status); } &&
2990329900 { ac_try='test -s conftest.$ac_objext'
29904 { (eval echo "$as_me:29905: \"$ac_try\"") >&5
29901 { (eval echo "$as_me:29902: \"$ac_try\"") >&5
2990529902 (eval $ac_try) 2>&5
2990629903 ac_status=$?
29907 echo "$as_me:29908: \$? = $ac_status" >&5
29904 echo "$as_me:29905: \$? = $ac_status" >&5
2990829905 (exit $ac_status); }; }; then
2990929906
2991029907 eval "ac_cv_func_decl_$ac_func=yes"
2992529922 fi
2992629923
2992729924 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
29928 echo "$as_me:29929: result: yes" >&5
29925 echo "$as_me:29926: result: yes" >&5
2992929926 echo "${ECHO_T}yes" >&6
2993029927 :
2993129928 else
29932 echo "$as_me:29933: result: no" >&5
29929 echo "$as_me:29930: result: no" >&5
2993329930 echo "${ECHO_T}no" >&6
2993429931
2993529932 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
2994129938 fi
2994229939 done
2994329940
29944 echo "$as_me:29945: checking if TRUE/FALSE are defined" >&5
29941 echo "$as_me:29942: checking if TRUE/FALSE are defined" >&5
2994529942 echo $ECHO_N "checking if TRUE/FALSE are defined... $ECHO_C" >&6
2994629943 if test "${cf_cv_bool_defs+set}" = set; then
2994729944 echo $ECHO_N "(cached) $ECHO_C" >&6
2994829945 else
2994929946
2995029947 cat >conftest.$ac_ext <<_ACEOF
29951 #line 29952 "configure"
29948 #line 29949 "configure"
2995229949 #include "confdefs.h"
2995329950
2995429951 #include <${cf_cv_ncurses_header:-curses.h}>
2996229959 }
2996329960 _ACEOF
2996429961 rm -f conftest.$ac_objext
29965 if { (eval echo "$as_me:29966: \"$ac_compile\"") >&5
29962 if { (eval echo "$as_me:29963: \"$ac_compile\"") >&5
2996629963 (eval $ac_compile) 2>&5
2996729964 ac_status=$?
29968 echo "$as_me:29969: \$? = $ac_status" >&5
29965 echo "$as_me:29966: \$? = $ac_status" >&5
2996929966 (exit $ac_status); } &&
2997029967 { ac_try='test -s conftest.$ac_objext'
29971 { (eval echo "$as_me:29972: \"$ac_try\"") >&5
29968 { (eval echo "$as_me:29969: \"$ac_try\"") >&5
2997229969 (eval $ac_try) 2>&5
2997329970 ac_status=$?
29974 echo "$as_me:29975: \$? = $ac_status" >&5
29971 echo "$as_me:29972: \$? = $ac_status" >&5
2997529972 (exit $ac_status); }; }; then
2997629973 cf_cv_bool_defs=yes
2997729974 else
2998229979 rm -f conftest.$ac_objext conftest.$ac_ext
2998329980 fi
2998429981
29985 echo "$as_me:29986: result: $cf_cv_bool_defs" >&5
29982 echo "$as_me:29983: result: $cf_cv_bool_defs" >&5
2998629983 echo "${ECHO_T}$cf_cv_bool_defs" >&6
2998729984 if test "$cf_cv_bool_defs" = no ; then
2998829985
2999629993
2999729994 fi
2999829995
29999 echo "$as_me:30000: checking if external errno is declared" >&5
29996 echo "$as_me:29997: checking if external errno is declared" >&5
3000029997 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6
3000129998 if test "${cf_cv_dcl_errno+set}" = set; then
3000229999 echo $ECHO_N "(cached) $ECHO_C" >&6
3000330000 else
3000430001
3000530002 cat >conftest.$ac_ext <<_ACEOF
30006 #line 30007 "configure"
30003 #line 30004 "configure"
3000730004 #include "confdefs.h"
3000830005
3000930006 #ifdef HAVE_STDLIB_H
3002130018 }
3002230019 _ACEOF
3002330020 rm -f conftest.$ac_objext
30024 if { (eval echo "$as_me:30025: \"$ac_compile\"") >&5
30021 if { (eval echo "$as_me:30022: \"$ac_compile\"") >&5
3002530022 (eval $ac_compile) 2>&5
3002630023 ac_status=$?
30027 echo "$as_me:30028: \$? = $ac_status" >&5
30024 echo "$as_me:30025: \$? = $ac_status" >&5
3002830025 (exit $ac_status); } &&
3002930026 { ac_try='test -s conftest.$ac_objext'
30030 { (eval echo "$as_me:30031: \"$ac_try\"") >&5
30027 { (eval echo "$as_me:30028: \"$ac_try\"") >&5
3003130028 (eval $ac_try) 2>&5
3003230029 ac_status=$?
30033 echo "$as_me:30034: \$? = $ac_status" >&5
30030 echo "$as_me:30031: \$? = $ac_status" >&5
3003430031 (exit $ac_status); }; }; then
3003530032 cf_cv_dcl_errno=yes
3003630033 else
3004130038 rm -f conftest.$ac_objext conftest.$ac_ext
3004230039
3004330040 fi
30044 echo "$as_me:30045: result: $cf_cv_dcl_errno" >&5
30041 echo "$as_me:30042: result: $cf_cv_dcl_errno" >&5
3004530042 echo "${ECHO_T}$cf_cv_dcl_errno" >&6
3004630043
3004730044 if test "$cf_cv_dcl_errno" = no ; then
3005630053
3005730054 # It's possible (for near-UNIX clones) that the data doesn't exist
3005830055
30059 echo "$as_me:30060: checking if external errno exists" >&5
30056 echo "$as_me:30057: checking if external errno exists" >&5
3006030057 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6
3006130058 if test "${cf_cv_have_errno+set}" = set; then
3006230059 echo $ECHO_N "(cached) $ECHO_C" >&6
3006330060 else
3006430061
3006530062 cat >conftest.$ac_ext <<_ACEOF
30066 #line 30067 "configure"
30063 #line 30064 "configure"
3006730064 #include "confdefs.h"
3006830065
3006930066 #undef errno
3007830075 }
3007930076 _ACEOF
3008030077 rm -f conftest.$ac_objext conftest$ac_exeext
30081 if { (eval echo "$as_me:30082: \"$ac_link\"") >&5
30078 if { (eval echo "$as_me:30079: \"$ac_link\"") >&5
3008230079 (eval $ac_link) 2>&5
3008330080 ac_status=$?
30084 echo "$as_me:30085: \$? = $ac_status" >&5
30081 echo "$as_me:30082: \$? = $ac_status" >&5
3008530082 (exit $ac_status); } &&
3008630083 { ac_try='test -s conftest$ac_exeext'
30087 { (eval echo "$as_me:30088: \"$ac_try\"") >&5
30084 { (eval echo "$as_me:30085: \"$ac_try\"") >&5
3008830085 (eval $ac_try) 2>&5
3008930086 ac_status=$?
30090 echo "$as_me:30091: \$? = $ac_status" >&5
30087 echo "$as_me:30088: \$? = $ac_status" >&5
3009130088 (exit $ac_status); }; }; then
3009230089 cf_cv_have_errno=yes
3009330090 else
3009830095 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3009930096
3010030097 fi
30101 echo "$as_me:30102: result: $cf_cv_have_errno" >&5
30098 echo "$as_me:30099: result: $cf_cv_have_errno" >&5
3010230099 echo "${ECHO_T}$cf_cv_have_errno" >&6
3010330100
3010430101 if test "$cf_cv_have_errno" = yes ; then
3011130108
3011230109 fi
3011330110
30114 echo "$as_me:30115: checking if we can set errno" >&5
30111 echo "$as_me:30112: checking if we can set errno" >&5
3011530112 echo $ECHO_N "checking if we can set errno... $ECHO_C" >&6
3011630113 if test "${cf_cv_set_errno+set}" = set; then
3011730114 echo $ECHO_N "(cached) $ECHO_C" >&6
3011930116
3012030117 if test "$cross_compiling" = yes; then
3012130118 cat >conftest.$ac_ext <<_ACEOF
30122 #line 30123 "configure"
30119 #line 30120 "configure"
3012330120 #include "confdefs.h"
3012430121 #include <errno.h>
3012530122 int
3013130128 }
3013230129 _ACEOF
3013330130 rm -f conftest.$ac_objext conftest$ac_exeext
30134 if { (eval echo "$as_me:30135: \"$ac_link\"") >&5
30131 if { (eval echo "$as_me:30132: \"$ac_link\"") >&5
3013530132 (eval $ac_link) 2>&5
3013630133 ac_status=$?
30137 echo "$as_me:30138: \$? = $ac_status" >&5
30134 echo "$as_me:30135: \$? = $ac_status" >&5
3013830135 (exit $ac_status); } &&
3013930136 { ac_try='test -s conftest$ac_exeext'
30140 { (eval echo "$as_me:30141: \"$ac_try\"") >&5
30137 { (eval echo "$as_me:30138: \"$ac_try\"") >&5
3014130138 (eval $ac_try) 2>&5
3014230139 ac_status=$?
30143 echo "$as_me:30144: \$? = $ac_status" >&5
30140 echo "$as_me:30141: \$? = $ac_status" >&5
3014430141 (exit $ac_status); }; }; then
3014530142 cf_cv_set_errno=maybe
3014630143 else
3015130148 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3015230149 else
3015330150 cat >conftest.$ac_ext <<_ACEOF
30154 #line 30155 "configure"
30151 #line 30152 "configure"
3015530152 #include "confdefs.h"
3015630153
3015730154 #include <errno.h>
3016230159 }
3016330160 _ACEOF
3016430161 rm -f conftest$ac_exeext
30165 if { (eval echo "$as_me:30166: \"$ac_link\"") >&5
30162 if { (eval echo "$as_me:30163: \"$ac_link\"") >&5
3016630163 (eval $ac_link) 2>&5
3016730164 ac_status=$?
30168 echo "$as_me:30169: \$? = $ac_status" >&5
30165 echo "$as_me:30166: \$? = $ac_status" >&5
3016930166 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
30170 { (eval echo "$as_me:30171: \"$ac_try\"") >&5
30167 { (eval echo "$as_me:30168: \"$ac_try\"") >&5
3017130168 (eval $ac_try) 2>&5
3017230169 ac_status=$?
30173 echo "$as_me:30174: \$? = $ac_status" >&5
30170 echo "$as_me:30171: \$? = $ac_status" >&5
3017430171 (exit $ac_status); }; }; then
3017530172 cf_cv_set_errno=yes
3017630173 else
3018330180 fi
3018430181
3018530182 fi
30186 echo "$as_me:30187: result: $cf_cv_set_errno" >&5
30183 echo "$as_me:30184: result: $cf_cv_set_errno" >&5
3018730184 echo "${ECHO_T}$cf_cv_set_errno" >&6
3018830185 test "$cf_cv_set_errno" != no &&
3018930186 cat >>confdefs.h <<\EOF
3019030187 #define CAN_SET_ERRNO 1
3019130188 EOF
3019230189
30193 echo "$as_me:30194: checking for setlocale()" >&5
30190 echo "$as_me:30191: checking for setlocale()" >&5
3019430191 echo $ECHO_N "checking for setlocale()... $ECHO_C" >&6
3019530192 if test "${cf_cv_locale+set}" = set; then
3019630193 echo $ECHO_N "(cached) $ECHO_C" >&6
3019730194 else
3019830195
3019930196 cat >conftest.$ac_ext <<_ACEOF
30200 #line 30201 "configure"
30197 #line 30198 "configure"
3020130198 #include "confdefs.h"
3020230199 #include <locale.h>
3020330200 int
3020930206 }
3021030207 _ACEOF
3021130208 rm -f conftest.$ac_objext conftest$ac_exeext
30212 if { (eval echo "$as_me:30213: \"$ac_link\"") >&5
30209 if { (eval echo "$as_me:30210: \"$ac_link\"") >&5
3021330210 (eval $ac_link) 2>&5
3021430211 ac_status=$?
30215 echo "$as_me:30216: \$? = $ac_status" >&5
30212 echo "$as_me:30213: \$? = $ac_status" >&5
3021630213 (exit $ac_status); } &&
3021730214 { ac_try='test -s conftest$ac_exeext'
30218 { (eval echo "$as_me:30219: \"$ac_try\"") >&5
30215 { (eval echo "$as_me:30216: \"$ac_try\"") >&5
3021930216 (eval $ac_try) 2>&5
3022030217 ac_status=$?
30221 echo "$as_me:30222: \$? = $ac_status" >&5
30218 echo "$as_me:30219: \$? = $ac_status" >&5
3022230219 (exit $ac_status); }; }; then
3022330220 cf_cv_locale=yes
3022430221 else
3023030227
3023130228 fi
3023230229
30233 echo "$as_me:30234: result: $cf_cv_locale" >&5
30230 echo "$as_me:30231: result: $cf_cv_locale" >&5
3023430231 echo "${ECHO_T}$cf_cv_locale" >&6
3023530232 test $cf_cv_locale = yes && {
3023630233 cat >>confdefs.h <<\EOF
3023830235 EOF
3023930236 }
3024030237
30241 echo "$as_me:30242: checking if NGROUPS is defined" >&5
30238 echo "$as_me:30239: checking if NGROUPS is defined" >&5
3024230239 echo $ECHO_N "checking if NGROUPS is defined... $ECHO_C" >&6
3024330240 if test "${cf_cv_ngroups+set}" = set; then
3024430241 echo $ECHO_N "(cached) $ECHO_C" >&6
3024530242 else
3024630243
3024730244 cat >conftest.$ac_ext <<_ACEOF
30248 #line 30249 "configure"
30245 #line 30246 "configure"
3024930246 #include "confdefs.h"
3025030247
3025130248 #if HAVE_SYS_PARAM_H
3026430261 }
3026530262 _ACEOF
3026630263 rm -f conftest.$ac_objext
30267 if { (eval echo "$as_me:30268: \"$ac_compile\"") >&5
30264 if { (eval echo "$as_me:30265: \"$ac_compile\"") >&5
3026830265 (eval $ac_compile) 2>&5
3026930266 ac_status=$?
30270 echo "$as_me:30271: \$? = $ac_status" >&5
30267 echo "$as_me:30268: \$? = $ac_status" >&5
3027130268 (exit $ac_status); } &&
3027230269 { ac_try='test -s conftest.$ac_objext'
30273 { (eval echo "$as_me:30274: \"$ac_try\"") >&5
30270 { (eval echo "$as_me:30271: \"$ac_try\"") >&5
3027430271 (eval $ac_try) 2>&5
3027530272 ac_status=$?
30276 echo "$as_me:30277: \$? = $ac_status" >&5
30273 echo "$as_me:30274: \$? = $ac_status" >&5
3027730274 (exit $ac_status); }; }; then
3027830275 cf_cv_ngroups=yes
3027930276 else
3028030277 echo "$as_me: failed program was:" >&5
3028130278 cat conftest.$ac_ext >&5
3028230279 cat >conftest.$ac_ext <<_ACEOF
30283 #line 30284 "configure"
30280 #line 30281 "configure"
3028430281 #include "confdefs.h"
3028530282
3028630283 #if HAVE_SYS_PARAM_H
3029930296 }
3030030297 _ACEOF
3030130298 rm -f conftest.$ac_objext
30302 if { (eval echo "$as_me:30303: \"$ac_compile\"") >&5
30299 if { (eval echo "$as_me:30300: \"$ac_compile\"") >&5
3030330300 (eval $ac_compile) 2>&5
3030430301 ac_status=$?
30305 echo "$as_me:30306: \$? = $ac_status" >&5
30302 echo "$as_me:30303: \$? = $ac_status" >&5
3030630303 (exit $ac_status); } &&
3030730304 { ac_try='test -s conftest.$ac_objext'
30308 { (eval echo "$as_me:30309: \"$ac_try\"") >&5
30305 { (eval echo "$as_me:30306: \"$ac_try\"") >&5
3030930306 (eval $ac_try) 2>&5
3031030307 ac_status=$?
30311 echo "$as_me:30312: \$? = $ac_status" >&5
30308 echo "$as_me:30309: \$? = $ac_status" >&5
3031230309 (exit $ac_status); }; }; then
3031330310 cf_cv_ngroups=NGROUPS_MAX
3031430311 else
3032030317
3032130318 fi
3032230319 rm -f conftest.$ac_objext conftest.$ac_ext
30323 echo "$as_me:30324: result: $cf_cv_ngroups" >&5
30320 echo "$as_me:30321: result: $cf_cv_ngroups" >&5
3032430321 echo "${ECHO_T}$cf_cv_ngroups" >&6
3032530322
3032630323 fi
3033830335
3033930336 fi
3034030337
30341 echo "$as_me:30342: checking if external sys_nerr is declared" >&5
30338 echo "$as_me:30339: checking if external sys_nerr is declared" >&5
3034230339 echo $ECHO_N "checking if external sys_nerr is declared... $ECHO_C" >&6
3034330340 if test "${cf_cv_dcl_sys_nerr+set}" = set; then
3034430341 echo $ECHO_N "(cached) $ECHO_C" >&6
3034530342 else
3034630343
3034730344 cat >conftest.$ac_ext <<_ACEOF
30348 #line 30349 "configure"
30345 #line 30346 "configure"
3034930346 #include "confdefs.h"
3035030347
3035130348 #ifdef HAVE_STDLIB_H
3036330360 }
3036430361 _ACEOF
3036530362 rm -f conftest.$ac_objext
30366 if { (eval echo "$as_me:30367: \"$ac_compile\"") >&5
30363 if { (eval echo "$as_me:30364: \"$ac_compile\"") >&5
3036730364 (eval $ac_compile) 2>&5
3036830365 ac_status=$?
30369 echo "$as_me:30370: \$? = $ac_status" >&5
30366 echo "$as_me:30367: \$? = $ac_status" >&5
3037030367 (exit $ac_status); } &&
3037130368 { ac_try='test -s conftest.$ac_objext'
30372 { (eval echo "$as_me:30373: \"$ac_try\"") >&5
30369 { (eval echo "$as_me:30370: \"$ac_try\"") >&5
3037330370 (eval $ac_try) 2>&5
3037430371 ac_status=$?
30375 echo "$as_me:30376: \$? = $ac_status" >&5
30372 echo "$as_me:30373: \$? = $ac_status" >&5
3037630373 (exit $ac_status); }; }; then
3037730374 cf_cv_dcl_sys_nerr=yes
3037830375 else
3038330380 rm -f conftest.$ac_objext conftest.$ac_ext
3038430381
3038530382 fi
30386 echo "$as_me:30387: result: $cf_cv_dcl_sys_nerr" >&5
30383 echo "$as_me:30384: result: $cf_cv_dcl_sys_nerr" >&5
3038730384 echo "${ECHO_T}$cf_cv_dcl_sys_nerr" >&6
3038830385
3038930386 if test "$cf_cv_dcl_sys_nerr" = no ; then
3039830395
3039930396 # It's possible (for near-UNIX clones) that the data doesn't exist
3040030397
30401 echo "$as_me:30402: checking if external sys_nerr exists" >&5
30398 echo "$as_me:30399: checking if external sys_nerr exists" >&5
3040230399 echo $ECHO_N "checking if external sys_nerr exists... $ECHO_C" >&6
3040330400 if test "${cf_cv_have_sys_nerr+set}" = set; then
3040430401 echo $ECHO_N "(cached) $ECHO_C" >&6
3040530402 else
3040630403
3040730404 cat >conftest.$ac_ext <<_ACEOF
30408 #line 30409 "configure"
30405 #line 30406 "configure"
3040930406 #include "confdefs.h"
3041030407
3041130408 #undef sys_nerr
3042030417 }
3042130418 _ACEOF
3042230419 rm -f conftest.$ac_objext conftest$ac_exeext
30423 if { (eval echo "$as_me:30424: \"$ac_link\"") >&5
30420 if { (eval echo "$as_me:30421: \"$ac_link\"") >&5
3042430421 (eval $ac_link) 2>&5
3042530422 ac_status=$?
30426 echo "$as_me:30427: \$? = $ac_status" >&5
30423 echo "$as_me:30424: \$? = $ac_status" >&5
3042730424 (exit $ac_status); } &&
3042830425 { ac_try='test -s conftest$ac_exeext'
30429 { (eval echo "$as_me:30430: \"$ac_try\"") >&5
30426 { (eval echo "$as_me:30427: \"$ac_try\"") >&5
3043030427 (eval $ac_try) 2>&5
3043130428 ac_status=$?
30432 echo "$as_me:30433: \$? = $ac_status" >&5
30429 echo "$as_me:30430: \$? = $ac_status" >&5
3043330430 (exit $ac_status); }; }; then
3043430431 cf_cv_have_sys_nerr=yes
3043530432 else
3044030437 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3044130438
3044230439 fi
30443 echo "$as_me:30444: result: $cf_cv_have_sys_nerr" >&5
30440 echo "$as_me:30441: result: $cf_cv_have_sys_nerr" >&5
3044430441 echo "${ECHO_T}$cf_cv_have_sys_nerr" >&6
3044530442
3044630443 if test "$cf_cv_have_sys_nerr" = yes ; then
3045330450
3045430451 fi
3045530452
30456 echo "$as_me:30457: checking if external sys_errlist is declared" >&5
30453 echo "$as_me:30454: checking if external sys_errlist is declared" >&5
3045730454 echo $ECHO_N "checking if external sys_errlist is declared... $ECHO_C" >&6
3045830455 if test "${cf_cv_dcl_sys_errlist+set}" = set; then
3045930456 echo $ECHO_N "(cached) $ECHO_C" >&6
3046030457 else
3046130458
3046230459 cat >conftest.$ac_ext <<_ACEOF
30463 #line 30464 "configure"
30460 #line 30461 "configure"
3046430461 #include "confdefs.h"
3046530462
3046630463 #ifdef HAVE_STDLIB_H
3047830475 }
3047930476 _ACEOF
3048030477 rm -f conftest.$ac_objext
30481 if { (eval echo "$as_me:30482: \"$ac_compile\"") >&5
30478 if { (eval echo "$as_me:30479: \"$ac_compile\"") >&5
3048230479 (eval $ac_compile) 2>&5
3048330480 ac_status=$?
30484 echo "$as_me:30485: \$? = $ac_status" >&5
30481 echo "$as_me:30482: \$? = $ac_status" >&5
3048530482 (exit $ac_status); } &&
3048630483 { ac_try='test -s conftest.$ac_objext'
30487 { (eval echo "$as_me:30488: \"$ac_try\"") >&5
30484 { (eval echo "$as_me:30485: \"$ac_try\"") >&5
3048830485 (eval $ac_try) 2>&5
3048930486 ac_status=$?
30490 echo "$as_me:30491: \$? = $ac_status" >&5
30487 echo "$as_me:30488: \$? = $ac_status" >&5
3049130488 (exit $ac_status); }; }; then
3049230489 cf_cv_dcl_sys_errlist=yes
3049330490 else
3049830495 rm -f conftest.$ac_objext conftest.$ac_ext
3049930496
3050030497 fi
30501 echo "$as_me:30502: result: $cf_cv_dcl_sys_errlist" >&5
30498 echo "$as_me:30499: result: $cf_cv_dcl_sys_errlist" >&5
3050230499 echo "${ECHO_T}$cf_cv_dcl_sys_errlist" >&6
3050330500
3050430501 if test "$cf_cv_dcl_sys_errlist" = no ; then
3051330510
3051430511 # It's possible (for near-UNIX clones) that the data doesn't exist
3051530512
30516 echo "$as_me:30517: checking if external sys_errlist exists" >&5
30513 echo "$as_me:30514: checking if external sys_errlist exists" >&5
3051730514 echo $ECHO_N "checking if external sys_errlist exists... $ECHO_C" >&6
3051830515 if test "${cf_cv_have_sys_errlist+set}" = set; then
3051930516 echo $ECHO_N "(cached) $ECHO_C" >&6
3052030517 else
3052130518
3052230519 cat >conftest.$ac_ext <<_ACEOF
30523 #line 30524 "configure"
30520 #line 30521 "configure"
3052430521 #include "confdefs.h"
3052530522
3052630523 #undef sys_errlist
3053530532 }
3053630533 _ACEOF
3053730534 rm -f conftest.$ac_objext conftest$ac_exeext
30538 if { (eval echo "$as_me:30539: \"$ac_link\"") >&5
30535 if { (eval echo "$as_me:30536: \"$ac_link\"") >&5
3053930536 (eval $ac_link) 2>&5
3054030537 ac_status=$?
30541 echo "$as_me:30542: \$? = $ac_status" >&5
30538 echo "$as_me:30539: \$? = $ac_status" >&5
3054230539 (exit $ac_status); } &&
3054330540 { ac_try='test -s conftest$ac_exeext'
30544 { (eval echo "$as_me:30545: \"$ac_try\"") >&5
30541 { (eval echo "$as_me:30542: \"$ac_try\"") >&5
3054530542 (eval $ac_try) 2>&5
3054630543 ac_status=$?
30547 echo "$as_me:30548: \$? = $ac_status" >&5
30544 echo "$as_me:30545: \$? = $ac_status" >&5
3054830545 (exit $ac_status); }; }; then
3054930546 cf_cv_have_sys_errlist=yes
3055030547 else
3055530552 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3055630553
3055730554 fi
30558 echo "$as_me:30559: result: $cf_cv_have_sys_errlist" >&5
30555 echo "$as_me:30556: result: $cf_cv_have_sys_errlist" >&5
3055930556 echo "${ECHO_T}$cf_cv_have_sys_errlist" >&6
3056030557
3056130558 if test "$cf_cv_have_sys_errlist" = yes ; then
3057130568 for ac_header in lastlog.h paths.h
3057230569 do
3057330570 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
30574 echo "$as_me:30575: checking for $ac_header" >&5
30571 echo "$as_me:30572: checking for $ac_header" >&5
3057530572 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
3057630573 if eval "test \"\${$as_ac_Header+set}\" = set"; then
3057730574 echo $ECHO_N "(cached) $ECHO_C" >&6
3057830575 else
3057930576 cat >conftest.$ac_ext <<_ACEOF
30580 #line 30581 "configure"
30577 #line 30578 "configure"
3058130578 #include "confdefs.h"
3058230579 #include <$ac_header>
3058330580 _ACEOF
30584 if { (eval echo "$as_me:30585: \"$ac_cpp conftest.$ac_ext\"") >&5
30581 if { (eval echo "$as_me:30582: \"$ac_cpp conftest.$ac_ext\"") >&5
3058530582 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
3058630583 ac_status=$?
3058730584 egrep -v '^ *\+' conftest.er1 >conftest.err
3058830585 rm -f conftest.er1
3058930586 cat conftest.err >&5
30590 echo "$as_me:30591: \$? = $ac_status" >&5
30587 echo "$as_me:30588: \$? = $ac_status" >&5
3059130588 (exit $ac_status); } >/dev/null; then
3059230589 if test -s conftest.err; then
3059330590 ac_cpp_err=$ac_c_preproc_warn_flag
3060630603 fi
3060730604 rm -f conftest.err conftest.$ac_ext
3060830605 fi
30609 echo "$as_me:30610: result: `eval echo '${'$as_ac_Header'}'`" >&5
30606 echo "$as_me:30607: result: `eval echo '${'$as_ac_Header'}'`" >&5
3061030607 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
3061130608 if test `eval echo '${'$as_ac_Header'}'` = yes; then
3061230609 cat >>confdefs.h <<EOF
3061630613 fi
3061730614 done
3061830615
30619 echo "$as_me:30620: checking for lastlog path" >&5
30616 echo "$as_me:30617: checking for lastlog path" >&5
3062030617 echo $ECHO_N "checking for lastlog path... $ECHO_C" >&6
3062130618 if test "${cf_cv_path_lastlog+set}" = set; then
3062230619 echo $ECHO_N "(cached) $ECHO_C" >&6
3062330620 else
3062430621
3062530622 cat >conftest.$ac_ext <<_ACEOF
30626 #line 30627 "configure"
30623 #line 30624 "configure"
3062730624 #include "confdefs.h"
3062830625
3062930626 #include <sys/types.h>
3064330640 }
3064430641 _ACEOF
3064530642 rm -f conftest.$ac_objext
30646 if { (eval echo "$as_me:30647: \"$ac_compile\"") >&5
30643 if { (eval echo "$as_me:30644: \"$ac_compile\"") >&5
3064730644 (eval $ac_compile) 2>&5
3064830645 ac_status=$?
30649 echo "$as_me:30650: \$? = $ac_status" >&5
30646 echo "$as_me:30647: \$? = $ac_status" >&5
3065030647 (exit $ac_status); } &&
3065130648 { ac_try='test -s conftest.$ac_objext'
30652 { (eval echo "$as_me:30653: \"$ac_try\"") >&5
30649 { (eval echo "$as_me:30650: \"$ac_try\"") >&5
3065330650 (eval $ac_try) 2>&5
3065430651 ac_status=$?
30655 echo "$as_me:30656: \$? = $ac_status" >&5
30652 echo "$as_me:30653: \$? = $ac_status" >&5
3065630653 (exit $ac_status); }; }; then
3065730654 cf_cv_path_lastlog="_PATH_LASTLOG"
3065830655 else
3066730664 rm -f conftest.$ac_objext conftest.$ac_ext
3066830665
3066930666 fi
30670 echo "$as_me:30671: result: $cf_cv_path_lastlog" >&5
30667 echo "$as_me:30668: result: $cf_cv_path_lastlog" >&5
3067130668 echo "${ECHO_T}$cf_cv_path_lastlog" >&6
3067230669 test $cf_cv_path_lastlog != no &&
3067330670 cat >>confdefs.h <<\EOF
3067430671 #define USE_LASTLOG 1
3067530672 EOF
3067630673
30677 echo "$as_me:30678: checking for utmp implementation" >&5
30674 echo "$as_me:30675: checking for utmp implementation" >&5
3067830675 echo $ECHO_N "checking for utmp implementation... $ECHO_C" >&6
3067930676 if test "${cf_cv_have_utmp+set}" = set; then
3068030677 echo $ECHO_N "(cached) $ECHO_C" >&6
3069130688 #endif
3069230689 "
3069330690 cat >conftest.$ac_ext <<_ACEOF
30694 #line 30695 "configure"
30691 #line 30692 "configure"
3069530692 #include "confdefs.h"
3069630693 $cf_utmp_includes
3069730694 int
3070530702 }
3070630703 _ACEOF
3070730704 rm -f conftest.$ac_objext
30708 if { (eval echo "$as_me:30709: \"$ac_compile\"") >&5
30705 if { (eval echo "$as_me:30706: \"$ac_compile\"") >&5
3070930706 (eval $ac_compile) 2>&5
3071030707 ac_status=$?
30711 echo "$as_me:30712: \$? = $ac_status" >&5
30708 echo "$as_me:30709: \$? = $ac_status" >&5
3071230709 (exit $ac_status); } &&
3071330710 { ac_try='test -s conftest.$ac_objext'
30714 { (eval echo "$as_me:30715: \"$ac_try\"") >&5
30711 { (eval echo "$as_me:30712: \"$ac_try\"") >&5
3071530712 (eval $ac_try) 2>&5
3071630713 ac_status=$?
30717 echo "$as_me:30718: \$? = $ac_status" >&5
30714 echo "$as_me:30715: \$? = $ac_status" >&5
3071830715 (exit $ac_status); }; }; then
3071930716 cf_cv_have_utmp=$cf_header
3072030717 break
3072330720 cat conftest.$ac_ext >&5
3072430721
3072530722 cat >conftest.$ac_ext <<_ACEOF
30726 #line 30727 "configure"
30723 #line 30724 "configure"
3072730724 #include "confdefs.h"
3072830725 $cf_utmp_includes
3072930726 int
3073730734 }
3073830735 _ACEOF
3073930736 rm -f conftest.$ac_objext
30740 if { (eval echo "$as_me:30741: \"$ac_compile\"") >&5
30737 if { (eval echo "$as_me:30738: \"$ac_compile\"") >&5
3074130738 (eval $ac_compile) 2>&5
3074230739 ac_status=$?
30743 echo "$as_me:30744: \$? = $ac_status" >&5
30740 echo "$as_me:30741: \$? = $ac_status" >&5
3074430741 (exit $ac_status); } &&
3074530742 { ac_try='test -s conftest.$ac_objext'
30746 { (eval echo "$as_me:30747: \"$ac_try\"") >&5
30743 { (eval echo "$as_me:30744: \"$ac_try\"") >&5
3074730744 (eval $ac_try) 2>&5
3074830745 ac_status=$?
30749 echo "$as_me:30750: \$? = $ac_status" >&5
30746 echo "$as_me:30747: \$? = $ac_status" >&5
3075030747 (exit $ac_status); }; }; then
3075130748 cf_cv_have_utmp=$cf_header
3075230749 break
3076130758 done
3076230759
3076330760 fi
30764 echo "$as_me:30765: result: $cf_cv_have_utmp" >&5
30761 echo "$as_me:30762: result: $cf_cv_have_utmp" >&5
3076530762 echo "${ECHO_T}$cf_cv_have_utmp" >&6
3076630763
3076730764 if test $cf_cv_have_utmp != no ; then
3077630773 EOF
3077730774
3077830775 if test $cf_cv_have_utmp != no ; then
30779 echo "$as_me:30780: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5
30776 echo "$as_me:30777: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5
3078030777 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_host is declared... $ECHO_C" >&6
3078130778 if test "${cf_cv_have_utmp_ut_host+set}" = set; then
3078230779 echo $ECHO_N "(cached) $ECHO_C" >&6
3078330780 else
3078430781
3078530782 cat >conftest.$ac_ext <<_ACEOF
30786 #line 30787 "configure"
30783 #line 30784 "configure"
3078730784 #include "confdefs.h"
3078830785
3078930786 #include <sys/types.h>
3079730794 }
3079830795 _ACEOF
3079930796 rm -f conftest.$ac_objext
30800 if { (eval echo "$as_me:30801: \"$ac_compile\"") >&5
30797 if { (eval echo "$as_me:30798: \"$ac_compile\"") >&5
3080130798 (eval $ac_compile) 2>&5
3080230799 ac_status=$?
30803 echo "$as_me:30804: \$? = $ac_status" >&5
30800 echo "$as_me:30801: \$? = $ac_status" >&5
3080430801 (exit $ac_status); } &&
3080530802 { ac_try='test -s conftest.$ac_objext'
30806 { (eval echo "$as_me:30807: \"$ac_try\"") >&5
30803 { (eval echo "$as_me:30804: \"$ac_try\"") >&5
3080730804 (eval $ac_try) 2>&5
3080830805 ac_status=$?
30809 echo "$as_me:30810: \$? = $ac_status" >&5
30806 echo "$as_me:30807: \$? = $ac_status" >&5
3081030807 (exit $ac_status); }; }; then
3081130808 cf_cv_have_utmp_ut_host=yes
3081230809 else
3081830815
3081930816 fi
3082030817
30821 echo "$as_me:30822: result: $cf_cv_have_utmp_ut_host" >&5
30818 echo "$as_me:30819: result: $cf_cv_have_utmp_ut_host" >&5
3082230819 echo "${ECHO_T}$cf_cv_have_utmp_ut_host" >&6
3082330820 test $cf_cv_have_utmp_ut_host != no &&
3082430821 cat >>confdefs.h <<\EOF
3082830825 fi
3082930826
3083030827 if test $cf_cv_have_utmp != no ; then
30831 echo "$as_me:30832: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5
30828 echo "$as_me:30829: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5
3083230829 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_syslen is declared... $ECHO_C" >&6
3083330830 if test "${cf_cv_have_utmp_ut_syslen+set}" = set; then
3083430831 echo $ECHO_N "(cached) $ECHO_C" >&6
3083530832 else
3083630833
3083730834 cat >conftest.$ac_ext <<_ACEOF
30838 #line 30839 "configure"
30835 #line 30836 "configure"
3083930836 #include "confdefs.h"
3084030837
3084130838 #include <sys/types.h>
3084930846 }
3085030847 _ACEOF
3085130848 rm -f conftest.$ac_objext
30852 if { (eval echo "$as_me:30853: \"$ac_compile\"") >&5
30849 if { (eval echo "$as_me:30850: \"$ac_compile\"") >&5
3085330850 (eval $ac_compile) 2>&5
3085430851 ac_status=$?
30855 echo "$as_me:30856: \$? = $ac_status" >&5
30852 echo "$as_me:30853: \$? = $ac_status" >&5
3085630853 (exit $ac_status); } &&
3085730854 { ac_try='test -s conftest.$ac_objext'
30858 { (eval echo "$as_me:30859: \"$ac_try\"") >&5
30855 { (eval echo "$as_me:30856: \"$ac_try\"") >&5
3085930856 (eval $ac_try) 2>&5
3086030857 ac_status=$?
30861 echo "$as_me:30862: \$? = $ac_status" >&5
30858 echo "$as_me:30859: \$? = $ac_status" >&5
3086230859 (exit $ac_status); }; }; then
3086330860 cf_cv_have_utmp_ut_syslen=yes
3086430861 else
3087030867
3087130868 fi
3087230869
30873 echo "$as_me:30874: result: $cf_cv_have_utmp_ut_syslen" >&5
30870 echo "$as_me:30871: result: $cf_cv_have_utmp_ut_syslen" >&5
3087430871 echo "${ECHO_T}$cf_cv_have_utmp_ut_syslen" >&6
3087530872 test $cf_cv_have_utmp_ut_syslen != no &&
3087630873 cat >>confdefs.h <<\EOF
3088030877 fi
3088130878
3088230879 if test $cf_cv_have_utmp != no ; then
30883 echo "$as_me:30884: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5
30880 echo "$as_me:30881: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5
3088430881 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_name is declared... $ECHO_C" >&6
3088530882 if test "${cf_cv_have_utmp_ut_name+set}" = set; then
3088630883 echo $ECHO_N "(cached) $ECHO_C" >&6
3089730894 "
3089830895 for cf_header in ut_name ut_user ; do
3089930896 cat >conftest.$ac_ext <<_ACEOF
30900 #line 30901 "configure"
30897 #line 30898 "configure"
3090130898 #include "confdefs.h"
3090230899 $cf_utmp_includes
3090330900 int
3091130908 }
3091230909 _ACEOF
3091330910 rm -f conftest.$ac_objext
30914 if { (eval echo "$as_me:30915: \"$ac_compile\"") >&5
30911 if { (eval echo "$as_me:30912: \"$ac_compile\"") >&5
3091530912 (eval $ac_compile) 2>&5
3091630913 ac_status=$?
30917 echo "$as_me:30918: \$? = $ac_status" >&5
30914 echo "$as_me:30915: \$? = $ac_status" >&5
3091830915 (exit $ac_status); } &&
3091930916 { ac_try='test -s conftest.$ac_objext'
30920 { (eval echo "$as_me:30921: \"$ac_try\"") >&5
30917 { (eval echo "$as_me:30918: \"$ac_try\"") >&5
3092130918 (eval $ac_try) 2>&5
3092230919 ac_status=$?
30923 echo "$as_me:30924: \$? = $ac_status" >&5
30920 echo "$as_me:30921: \$? = $ac_status" >&5
3092430921 (exit $ac_status); }; }; then
3092530922 cf_cv_have_utmp_ut_name=$cf_header
3092630923 break
3093230929 done
3093330930
3093430931 fi
30935 echo "$as_me:30936: result: $cf_cv_have_utmp_ut_name" >&5
30932 echo "$as_me:30933: result: $cf_cv_have_utmp_ut_name" >&5
3093630933 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6
3093730934
3093830935 case $cf_cv_have_utmp_ut_name in #(vi
3093930936 no) #(vi
30940 { { echo "$as_me:30941: error: Cannot find declaration for ut.ut_name" >&5
30937 { { echo "$as_me:30938: error: Cannot find declaration for ut.ut_name" >&5
3094130938 echo "$as_me: error: Cannot find declaration for ut.ut_name" >&2;}
3094230939 { (exit 1); exit 1; }; }
3094330940 ;;
3095230949 fi
3095330950
3095430951 if test $cf_cv_have_utmp != no ; then
30955 echo "$as_me:30956: checking for exit-status in $cf_cv_have_utmp" >&5
30952 echo "$as_me:30953: checking for exit-status in $cf_cv_have_utmp" >&5
3095630953 echo $ECHO_N "checking for exit-status in $cf_cv_have_utmp... $ECHO_C" >&6
3095730954 if test "${cf_cv_have_utmp_ut_xstatus+set}" = set; then
3095830955 echo $ECHO_N "(cached) $ECHO_C" >&6
3096530962 ut_exit.ut_exit
3096630963 do
3096730964 cat >conftest.$ac_ext <<_ACEOF
30968 #line 30969 "configure"
30965 #line 30966 "configure"
3096930966 #include "confdefs.h"
3097030967
3097130968 #include <sys/types.h>
3097930976 }
3098030977 _ACEOF
3098130978 rm -f conftest.$ac_objext
30982 if { (eval echo "$as_me:30983: \"$ac_compile\"") >&5
30979 if { (eval echo "$as_me:30980: \"$ac_compile\"") >&5
3098330980 (eval $ac_compile) 2>&5
3098430981 ac_status=$?
30985 echo "$as_me:30986: \$? = $ac_status" >&5
30982 echo "$as_me:30983: \$? = $ac_status" >&5
3098630983 (exit $ac_status); } &&
3098730984 { ac_try='test -s conftest.$ac_objext'
30988 { (eval echo "$as_me:30989: \"$ac_try\"") >&5
30985 { (eval echo "$as_me:30986: \"$ac_try\"") >&5
3098930986 (eval $ac_try) 2>&5
3099030987 ac_status=$?
30991 echo "$as_me:30992: \$? = $ac_status" >&5
30988 echo "$as_me:30989: \$? = $ac_status" >&5
3099230989 (exit $ac_status); }; }; then
3099330990 cf_cv_have_utmp_ut_xstatus=$cf_result
3099430991 break
3100130998 done
3100230999
3100331000 fi
31004 echo "$as_me:31005: result: $cf_cv_have_utmp_ut_xstatus" >&5
31001 echo "$as_me:31002: result: $cf_cv_have_utmp_ut_xstatus" >&5
3100531002 echo "${ECHO_T}$cf_cv_have_utmp_ut_xstatus" >&6
3100631003 if test $cf_cv_have_utmp_ut_xstatus != no ; then
3100731004
3101731014 fi
3101831015
3101931016 if test $cf_cv_have_utmp != no ; then
31020 echo "$as_me:31021: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5
31017 echo "$as_me:31018: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5
3102131018 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_xtime is declared... $ECHO_C" >&6
3102231019 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then
3102331020 echo $ECHO_N "(cached) $ECHO_C" >&6
3102431021 else
3102531022
3102631023 cat >conftest.$ac_ext <<_ACEOF
31027 #line 31028 "configure"
31024 #line 31025 "configure"
3102831025 #include "confdefs.h"
3102931026
3103031027 #include <sys/types.h>
3103831035 }
3103931036 _ACEOF
3104031037 rm -f conftest.$ac_objext
31041 if { (eval echo "$as_me:31042: \"$ac_compile\"") >&5
31038 if { (eval echo "$as_me:31039: \"$ac_compile\"") >&5
3104231039 (eval $ac_compile) 2>&5
3104331040 ac_status=$?
31044 echo "$as_me:31045: \$? = $ac_status" >&5
31041 echo "$as_me:31042: \$? = $ac_status" >&5
3104531042 (exit $ac_status); } &&
3104631043 { ac_try='test -s conftest.$ac_objext'
31047 { (eval echo "$as_me:31048: \"$ac_try\"") >&5
31044 { (eval echo "$as_me:31045: \"$ac_try\"") >&5
3104831045 (eval $ac_try) 2>&5
3104931046 ac_status=$?
31050 echo "$as_me:31051: \$? = $ac_status" >&5
31047 echo "$as_me:31048: \$? = $ac_status" >&5
3105131048 (exit $ac_status); }; }; then
3105231049 cf_cv_have_utmp_ut_xtime=yes
3105331050 else
3105431051 echo "$as_me: failed program was:" >&5
3105531052 cat conftest.$ac_ext >&5
3105631053 cat >conftest.$ac_ext <<_ACEOF
31057 #line 31058 "configure"
31054 #line 31055 "configure"
3105831055 #include "confdefs.h"
3105931056
3106031057 #include <sys/types.h>
3106831065 }
3106931066 _ACEOF
3107031067 rm -f conftest.$ac_objext
31071 if { (eval echo "$as_me:31072: \"$ac_compile\"") >&5
31068 if { (eval echo "$as_me:31069: \"$ac_compile\"") >&5
3107231069 (eval $ac_compile) 2>&5
3107331070 ac_status=$?
31074 echo "$as_me:31075: \$? = $ac_status" >&5
31071 echo "$as_me:31072: \$? = $ac_status" >&5
3107531072 (exit $ac_status); } &&
3107631073 { ac_try='test -s conftest.$ac_objext'
31077 { (eval echo "$as_me:31078: \"$ac_try\"") >&5
31074 { (eval echo "$as_me:31075: \"$ac_try\"") >&5
3107831075 (eval $ac_try) 2>&5
3107931076 ac_status=$?
31080 echo "$as_me:31081: \$? = $ac_status" >&5
31077 echo "$as_me:31078: \$? = $ac_status" >&5
3108131078 (exit $ac_status); }; }; then
3108231079 cf_cv_have_utmp_ut_xtime=define
3108331080 else
3109131088 rm -f conftest.$ac_objext conftest.$ac_ext
3109231089
3109331090 fi
31094 echo "$as_me:31095: result: $cf_cv_have_utmp_ut_xtime" >&5
31091 echo "$as_me:31092: result: $cf_cv_have_utmp_ut_xtime" >&5
3109531092 echo "${ECHO_T}$cf_cv_have_utmp_ut_xtime" >&6
3109631093 if test $cf_cv_have_utmp_ut_xtime != no ; then
3109731094
3111031107 fi
3111131108
3111231109 if test $cf_cv_have_utmp != no ; then
31113 echo "$as_me:31114: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5
31110 echo "$as_me:31111: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5
3111431111 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_session is declared... $ECHO_C" >&6
3111531112 if test "${cf_cv_have_utmp_ut_session+set}" = set; then
3111631113 echo $ECHO_N "(cached) $ECHO_C" >&6
3111731114 else
3111831115
3111931116 cat >conftest.$ac_ext <<_ACEOF
31120 #line 31121 "configure"
31117 #line 31118 "configure"
3112131118 #include "confdefs.h"
3112231119
3112331120 #include <sys/types.h>
3113131128 }
3113231129 _ACEOF
3113331130 rm -f conftest.$ac_objext
31134 if { (eval echo "$as_me:31135: \"$ac_compile\"") >&5
31131 if { (eval echo "$as_me:31132: \"$ac_compile\"") >&5
3113531132 (eval $ac_compile) 2>&5
3113631133 ac_status=$?
31137 echo "$as_me:31138: \$? = $ac_status" >&5
31134 echo "$as_me:31135: \$? = $ac_status" >&5
3113831135 (exit $ac_status); } &&
3113931136 { ac_try='test -s conftest.$ac_objext'
31140 { (eval echo "$as_me:31141: \"$ac_try\"") >&5
31137 { (eval echo "$as_me:31138: \"$ac_try\"") >&5
3114131138 (eval $ac_try) 2>&5
3114231139 ac_status=$?
31143 echo "$as_me:31144: \$? = $ac_status" >&5
31140 echo "$as_me:31141: \$? = $ac_status" >&5
3114431141 (exit $ac_status); }; }; then
3114531142 cf_cv_have_utmp_ut_session=yes
3114631143 else
3115131148 rm -f conftest.$ac_objext conftest.$ac_ext
3115231149
3115331150 fi
31154 echo "$as_me:31155: result: $cf_cv_have_utmp_ut_session" >&5
31151 echo "$as_me:31152: result: $cf_cv_have_utmp_ut_session" >&5
3115531152 echo "${ECHO_T}$cf_cv_have_utmp_ut_session" >&6
3115631153 if test $cf_cv_have_utmp_ut_session != no ; then
3115731154
3116231159 fi
3116331160 fi
3116431161
31165 echo "$as_me:31166: checking if $cf_cv_have_utmp is SYSV flavor" >&5
31162 echo "$as_me:31163: checking if $cf_cv_have_utmp is SYSV flavor" >&5
3116631163 echo $ECHO_N "checking if $cf_cv_have_utmp is SYSV flavor... $ECHO_C" >&6
3116731164 if test "${cf_cv_sysv_utmp+set}" = set; then
3116831165 echo $ECHO_N "(cached) $ECHO_C" >&6
3117031167
3117131168 test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx"
3117231169 cat >conftest.$ac_ext <<_ACEOF
31173 #line 31174 "configure"
31170 #line 31171 "configure"
3117431171 #include "confdefs.h"
3117531172
3117631173 #include <sys/types.h>
3118931186 }
3119031187 _ACEOF
3119131188 rm -f conftest.$ac_objext conftest$ac_exeext
31192 if { (eval echo "$as_me:31193: \"$ac_link\"") >&5
31189 if { (eval echo "$as_me:31190: \"$ac_link\"") >&5
3119331190 (eval $ac_link) 2>&5
3119431191 ac_status=$?
31195 echo "$as_me:31196: \$? = $ac_status" >&5
31192 echo "$as_me:31193: \$? = $ac_status" >&5
3119631193 (exit $ac_status); } &&
3119731194 { ac_try='test -s conftest$ac_exeext'
31198 { (eval echo "$as_me:31199: \"$ac_try\"") >&5
31195 { (eval echo "$as_me:31196: \"$ac_try\"") >&5
3119931196 (eval $ac_try) 2>&5
3120031197 ac_status=$?
31201 echo "$as_me:31202: \$? = $ac_status" >&5
31198 echo "$as_me:31199: \$? = $ac_status" >&5
3120231199 (exit $ac_status); }; }; then
3120331200 cf_cv_sysv_utmp=yes
3120431201 else
3120931206 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3121031207
3121131208 fi
31212 echo "$as_me:31213: result: $cf_cv_sysv_utmp" >&5
31209 echo "$as_me:31210: result: $cf_cv_sysv_utmp" >&5
3121331210 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6
3121431211 test $cf_cv_sysv_utmp = yes &&
3121531212 cat >>confdefs.h <<\EOF
3121831215
3121931216 fi
3122031217
31221 echo "$as_me:31222: checking if external h_errno exists" >&5
31218 echo "$as_me:31219: checking if external h_errno exists" >&5
3122231219 echo $ECHO_N "checking if external h_errno exists... $ECHO_C" >&6
3122331220 if test "${cf_cv_have_h_errno+set}" = set; then
3122431221 echo $ECHO_N "(cached) $ECHO_C" >&6
3122531222 else
3122631223
3122731224 cat >conftest.$ac_ext <<_ACEOF
31228 #line 31229 "configure"
31225 #line 31226 "configure"
3122931226 #include "confdefs.h"
3123031227
3123131228 #undef h_errno
3124031237 }
3124131238 _ACEOF
3124231239 rm -f conftest.$ac_objext conftest$ac_exeext
31243 if { (eval echo "$as_me:31244: \"$ac_link\"") >&5
31240 if { (eval echo "$as_me:31241: \"$ac_link\"") >&5
3124431241 (eval $ac_link) 2>&5
3124531242 ac_status=$?
31246 echo "$as_me:31247: \$? = $ac_status" >&5
31243 echo "$as_me:31244: \$? = $ac_status" >&5
3124731244 (exit $ac_status); } &&
3124831245 { ac_try='test -s conftest$ac_exeext'
31249 { (eval echo "$as_me:31250: \"$ac_try\"") >&5
31246 { (eval echo "$as_me:31247: \"$ac_try\"") >&5
3125031247 (eval $ac_try) 2>&5
3125131248 ac_status=$?
31252 echo "$as_me:31253: \$? = $ac_status" >&5
31249 echo "$as_me:31250: \$? = $ac_status" >&5
3125331250 (exit $ac_status); }; }; then
3125431251 cf_cv_have_h_errno=yes
3125531252 else
3126031257 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3126131258
3126231259 fi
31263 echo "$as_me:31264: result: $cf_cv_have_h_errno" >&5
31260 echo "$as_me:31261: result: $cf_cv_have_h_errno" >&5
3126431261 echo "${ECHO_T}$cf_cv_have_h_errno" >&6
3126531262
3126631263 if test "$cf_cv_have_h_errno" = yes ; then
3127331270
3127431271 fi
3127531272
31276 echo "$as_me:31277: checking if bibp: URLs should be supported" >&5
31273 echo "$as_me:31274: checking if bibp: URLs should be supported" >&5
3127731274 echo $ECHO_N "checking if bibp: URLs should be supported... $ECHO_C" >&6
3127831275
3127931276 # Check whether --enable-bibp-urls or --disable-bibp-urls was given.
3129031287 use_bibp_urls=yes
3129131288
3129231289 fi;
31293 echo "$as_me:31294: result: $use_bibp_urls" >&5
31290 echo "$as_me:31291: result: $use_bibp_urls" >&5
3129431291 echo "${ECHO_T}$use_bibp_urls" >&6
3129531292 test $use_bibp_urls = no &&
3129631293 cat >>confdefs.h <<\EOF
3129731294 #define DISABLE_BIBP 1
3129831295 EOF
3129931296
31300 echo "$as_me:31301: checking if configuration info should be browsable" >&5
31297 echo "$as_me:31298: checking if configuration info should be browsable" >&5
3130131298 echo $ECHO_N "checking if configuration info should be browsable... $ECHO_C" >&6
3130231299
3130331300 # Check whether --enable-config-info or --disable-config-info was given.
3131431311 use_config_info=yes
3131531312
3131631313 fi;
31317 echo "$as_me:31318: result: $use_config_info" >&5
31314 echo "$as_me:31315: result: $use_config_info" >&5
3131831315 echo "${ECHO_T}$use_config_info" >&6
3131931316 test $use_config_info = no &&
3132031317 cat >>confdefs.h <<\EOF
3132131318 #define NO_CONFIG_INFO 1
3132231319 EOF
3132331320
31324 echo "$as_me:31325: checking if new-style forms-based options screen should be used" >&5
31321 echo "$as_me:31322: checking if new-style forms-based options screen should be used" >&5
3132531322 echo $ECHO_N "checking if new-style forms-based options screen should be used... $ECHO_C" >&6
3132631323
3132731324 # Check whether --enable-forms-options or --disable-forms-options was given.
3133831335 use_forms_options=yes
3133931336
3134031337 fi;
31341 echo "$as_me:31342: result: $use_forms_options" >&5
31338 echo "$as_me:31339: result: $use_forms_options" >&5
3134231339 echo "${ECHO_T}$use_forms_options" >&6
3134331340 test $use_forms_options = no &&
3134431341 cat >>confdefs.h <<\EOF
3134531342 #define NO_OPTION_FORMS 1
3134631343 EOF
3134731344
31348 echo "$as_me:31349: checking if old-style options menu should be used" >&5
31345 echo "$as_me:31346: checking if old-style options menu should be used" >&5
3134931346 echo $ECHO_N "checking if old-style options menu should be used... $ECHO_C" >&6
3135031347
3135131348 # Check whether --enable-menu-options or --disable-menu-options was given.
3136231359 use_menu_options=yes
3136331360
3136431361 fi;
31365 echo "$as_me:31366: result: $use_menu_options" >&5
31362 echo "$as_me:31363: result: $use_menu_options" >&5
3136631363 echo "${ECHO_T}$use_menu_options" >&6
3136731364 test $use_menu_options = no &&
3136831365 cat >>confdefs.h <<\EOF
3136931366 #define NO_OPTION_MENU 1
3137031367 EOF
3137131368
31372 echo "$as_me:31373: checking if sessions code should be used" >&5
31369 echo "$as_me:31370: checking if sessions code should be used" >&5
3137331370 echo $ECHO_N "checking if sessions code should be used... $ECHO_C" >&6
3137431371
3137531372 # Check whether --enable-sessions or --disable-sessions was given.
3138631383 use_sessions=yes
3138731384
3138831385 fi;
31389 echo "$as_me:31390: result: $use_sessions" >&5
31386 echo "$as_me:31387: result: $use_sessions" >&5
3139031387 echo "${ECHO_T}$use_sessions" >&6
3139131388 if test $use_sessions != no ; then
3139231389
3139731394 EXTRA_OBJS="$EXTRA_OBJS LYSession\$o"
3139831395 fi
3139931396
31400 echo "$as_me:31401: checking if session-caching code should be used" >&5
31397 echo "$as_me:31398: checking if session-caching code should be used" >&5
3140131398 echo $ECHO_N "checking if session-caching code should be used... $ECHO_C" >&6
3140231399
3140331400 # Check whether --enable-session-cache or --disable-session-cache was given.
3141431411 use_session_cache=yes
3141531412
3141631413 fi;
31417 echo "$as_me:31418: result: $use_session_cache" >&5
31414 echo "$as_me:31415: result: $use_session_cache" >&5
3141831415 echo "${ECHO_T}$use_session_cache" >&6
3141931416 if test $use_session_cache != no ; then
3142031417
3142431421
3142531422 fi
3142631423
31427 echo "$as_me:31428: checking if address-list page should be used" >&5
31424 echo "$as_me:31425: checking if address-list page should be used" >&5
3142831425 echo $ECHO_N "checking if address-list page should be used... $ECHO_C" >&6
3142931426
3143031427 # Check whether --enable-addrlist-page or --disable-addrlist-page was given.
3144131438 use_addrlist_page=yes
3144231439
3144331440 fi;
31444 echo "$as_me:31445: result: $use_addrlist_page" >&5
31441 echo "$as_me:31442: result: $use_addrlist_page" >&5
3144531442 echo "${ECHO_T}$use_addrlist_page" >&6
3144631443 test $use_addrlist_page != no &&
3144731444 cat >>confdefs.h <<\EOF
3144831445 #define USE_ADDRLIST_PAGE 1
3144931446 EOF
3145031447
31451 echo "$as_me:31452: checking if experimental CJK logic should be used" >&5
31448 echo "$as_me:31449: checking if experimental CJK logic should be used" >&5
3145231449 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6
3145331450
3145431451 # Check whether --enable-cjk or --disable-cjk was given.
3146531462 use_cjk=no
3146631463
3146731464 fi;
31468 echo "$as_me:31469: result: $use_cjk" >&5
31465 echo "$as_me:31466: result: $use_cjk" >&5
3146931466 echo "${ECHO_T}$use_cjk" >&6
3147031467 test $use_cjk != no &&
3147131468 cat >>confdefs.h <<\EOF
3147231469 #define CJK_EX 1
3147331470 EOF
3147431471
31475 echo "$as_me:31476: checking if experimental Japanese UTF-8 logic should be used" >&5
31472 echo "$as_me:31473: checking if experimental Japanese UTF-8 logic should be used" >&5
3147631473 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6
3147731474
3147831475 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given.
3148931486 use_ja_utf8=no
3149031487
3149131488 fi;
31492 echo "$as_me:31493: result: $use_ja_utf8" >&5
31489 echo "$as_me:31490: result: $use_ja_utf8" >&5
3149331490 echo "${ECHO_T}$use_ja_utf8" >&6
3149431491 if test $use_ja_utf8 != no ; then
3149531492
3153531532 cf_save_CPPFLAGS=$CPPFLAGS
3153631533 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3153731534 cat >conftest.$ac_ext <<_ACEOF
31538 #line 31539 "configure"
31535 #line 31536 "configure"
3153931536 #include "confdefs.h"
3154031537 #include <stdio.h>
3154131538 int
3154731544 }
3154831545 _ACEOF
3154931546 rm -f conftest.$ac_objext
31550 if { (eval echo "$as_me:31551: \"$ac_compile\"") >&5
31547 if { (eval echo "$as_me:31548: \"$ac_compile\"") >&5
3155131548 (eval $ac_compile) 2>&5
3155231549 ac_status=$?
31553 echo "$as_me:31554: \$? = $ac_status" >&5
31550 echo "$as_me:31551: \$? = $ac_status" >&5
3155431551 (exit $ac_status); } &&
3155531552 { ac_try='test -s conftest.$ac_objext'
31556 { (eval echo "$as_me:31557: \"$ac_try\"") >&5
31553 { (eval echo "$as_me:31554: \"$ac_try\"") >&5
3155731554 (eval $ac_try) 2>&5
3155831555 ac_status=$?
31559 echo "$as_me:31560: \$? = $ac_status" >&5
31556 echo "$as_me:31557: \$? = $ac_status" >&5
3156031557 (exit $ac_status); }; }; then
3156131558 :
3156231559 else
3157331570 if test "$cf_have_incdir" = no ; then
3157431571 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3157531572
31576 echo "${as_me:-configure}:31577: testing adding $cf_add_incdir to include-path ..." 1>&5
31573 echo "${as_me:-configure}:31574: testing adding $cf_add_incdir to include-path ..." 1>&5
3157731574
3157831575 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3157931576
3161431611 cf_save_CPPFLAGS=$CPPFLAGS
3161531612 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3161631613 cat >conftest.$ac_ext <<_ACEOF
31617 #line 31618 "configure"
31614 #line 31615 "configure"
3161831615 #include "confdefs.h"
3161931616 #include <stdio.h>
3162031617 int
3162631623 }
3162731624 _ACEOF
3162831625 rm -f conftest.$ac_objext
31629 if { (eval echo "$as_me:31630: \"$ac_compile\"") >&5
31626 if { (eval echo "$as_me:31627: \"$ac_compile\"") >&5
3163031627 (eval $ac_compile) 2>&5
3163131628 ac_status=$?
31632 echo "$as_me:31633: \$? = $ac_status" >&5
31629 echo "$as_me:31630: \$? = $ac_status" >&5
3163331630 (exit $ac_status); } &&
3163431631 { ac_try='test -s conftest.$ac_objext'
31635 { (eval echo "$as_me:31636: \"$ac_try\"") >&5
31632 { (eval echo "$as_me:31633: \"$ac_try\"") >&5
3163631633 (eval $ac_try) 2>&5
3163731634 ac_status=$?
31638 echo "$as_me:31639: \$? = $ac_status" >&5
31635 echo "$as_me:31636: \$? = $ac_status" >&5
3163931636 (exit $ac_status); }; }; then
3164031637 :
3164131638 else
3165231649 if test "$cf_have_incdir" = no ; then
3165331650 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3165431651
31655 echo "${as_me:-configure}:31656: testing adding $cf_add_incdir to include-path ..." 1>&5
31652 echo "${as_me:-configure}:31653: testing adding $cf_add_incdir to include-path ..." 1>&5
3165631653
3165731654 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3165831655
3166831665 fi
3166931666
3167031667 else
31671 { { echo "$as_me:31672: error: cannot find libiconv under $withval" >&5
31668 { { echo "$as_me:31669: error: cannot find libiconv under $withval" >&5
3167231669 echo "$as_me: error: cannot find libiconv under $withval" >&2;}
3167331670 { (exit 1); exit 1; }; }
3167431671 fi
3169331690 if test "$cf_have_libdir" = no ; then
3169431691 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3169531692
31696 echo "${as_me:-configure}:31697: testing adding $cf_add_libdir to library-path ..." 1>&5
31693 echo "${as_me:-configure}:31694: testing adding $cf_add_libdir to library-path ..." 1>&5
3169731694
3169831695 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3169931696 fi
3172231719 if test "$cf_have_libdir" = no ; then
3172331720 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3172431721
31725 echo "${as_me:-configure}:31726: testing adding $cf_add_libdir to library-path ..." 1>&5
31722 echo "${as_me:-configure}:31723: testing adding $cf_add_libdir to library-path ..." 1>&5
3172631723
3172731724 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3172831725 fi
3173131728 fi
3173231729
3173331730 else
31734 { { echo "$as_me:31735: error: cannot find libiconv under $withval" >&5
31731 { { echo "$as_me:31732: error: cannot find libiconv under $withval" >&5
3173531732 echo "$as_me: error: cannot find libiconv under $withval" >&2;}
3173631733 { (exit 1); exit 1; }; }
3173731734 fi
3174231739
3174331740 fi;
3174431741
31745 echo "$as_me:31746: checking for iconv" >&5
31742 echo "$as_me:31743: checking for iconv" >&5
3174631743 echo $ECHO_N "checking for iconv... $ECHO_C" >&6
3174731744 if test "${am_cv_func_iconv+set}" = set; then
3174831745 echo $ECHO_N "(cached) $ECHO_C" >&6
3175331750 cf_cv_header_path_iconv=
3175431751 cf_cv_library_path_iconv=
3175531752
31756 echo "${as_me:-configure}:31757: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5
31753 echo "${as_me:-configure}:31754: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5
3175731754
3175831755 cf_save_LIBS="$LIBS"
3175931756
3176031757 cat >conftest.$ac_ext <<_ACEOF
31761 #line 31762 "configure"
31758 #line 31759 "configure"
3176231759 #include "confdefs.h"
3176331760
3176431761 #include <stdlib.h>
3177731774 }
3177831775 _ACEOF
3177931776 rm -f conftest.$ac_objext conftest$ac_exeext
31780 if { (eval echo "$as_me:31781: \"$ac_link\"") >&5
31777 if { (eval echo "$as_me:31778: \"$ac_link\"") >&5
3178131778 (eval $ac_link) 2>&5
3178231779 ac_status=$?
31783 echo "$as_me:31784: \$? = $ac_status" >&5
31780 echo "$as_me:31781: \$? = $ac_status" >&5
3178431781 (exit $ac_status); } &&
3178531782 { ac_try='test -s conftest$ac_exeext'
31786 { (eval echo "$as_me:31787: \"$ac_try\"") >&5
31783 { (eval echo "$as_me:31784: \"$ac_try\"") >&5
3178731784 (eval $ac_try) 2>&5
3178831785 ac_status=$?
31789 echo "$as_me:31790: \$? = $ac_status" >&5
31786 echo "$as_me:31787: \$? = $ac_status" >&5
3179031787 (exit $ac_status); }; }; then
3179131788
3179231789 cf_cv_find_linkage_iconv=yes
3180031797 LIBS="-liconv $cf_save_LIBS"
3180131798
3180231799 cat >conftest.$ac_ext <<_ACEOF
31803 #line 31804 "configure"
31800 #line 31801 "configure"
3180431801 #include "confdefs.h"
3180531802
3180631803 #include <stdlib.h>
3181931816 }
3182031817 _ACEOF
3182131818 rm -f conftest.$ac_objext conftest$ac_exeext
31822 if { (eval echo "$as_me:31823: \"$ac_link\"") >&5
31819 if { (eval echo "$as_me:31820: \"$ac_link\"") >&5
3182331820 (eval $ac_link) 2>&5
3182431821 ac_status=$?
31825 echo "$as_me:31826: \$? = $ac_status" >&5
31822 echo "$as_me:31823: \$? = $ac_status" >&5
3182631823 (exit $ac_status); } &&
3182731824 { ac_try='test -s conftest$ac_exeext'
31828 { (eval echo "$as_me:31829: \"$ac_try\"") >&5
31825 { (eval echo "$as_me:31826: \"$ac_try\"") >&5
3182931826 (eval $ac_try) 2>&5
3183031827 ac_status=$?
31831 echo "$as_me:31832: \$? = $ac_status" >&5
31828 echo "$as_me:31829: \$? = $ac_status" >&5
3183231829 (exit $ac_status); }; }; then
3183331830
3183431831 cf_cv_find_linkage_iconv=yes
3184531842
3184631843 test -n "$verbose" && echo " find linkage for iconv library" 1>&6
3184731844
31848 echo "${as_me:-configure}:31849: testing find linkage for iconv library ..." 1>&5
31849
31850 echo "${as_me:-configure}:31851: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5
31845 echo "${as_me:-configure}:31846: testing find linkage for iconv library ..." 1>&5
31846
31847 echo "${as_me:-configure}:31848: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5
3185131848
3185231849 cf_save_CPPFLAGS="$CPPFLAGS"
3185331850 cf_test_CPPFLAGS="$CPPFLAGS"
3196031957 if test -d $cf_cv_header_path_iconv ; then
3196131958 test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6
3196231959
31963 echo "${as_me:-configure}:31964: testing ... testing $cf_cv_header_path_iconv ..." 1>&5
31960 echo "${as_me:-configure}:31961: testing ... testing $cf_cv_header_path_iconv ..." 1>&5
3196431961
3196531962 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv"
3196631963 cat >conftest.$ac_ext <<_ACEOF
31967 #line 31968 "configure"
31964 #line 31965 "configure"
3196831965 #include "confdefs.h"
3196931966
3197031967 #include <stdlib.h>
3198331980 }
3198431981 _ACEOF
3198531982 rm -f conftest.$ac_objext
31986 if { (eval echo "$as_me:31987: \"$ac_compile\"") >&5
31983 if { (eval echo "$as_me:31984: \"$ac_compile\"") >&5
3198731984 (eval $ac_compile) 2>&5
3198831985 ac_status=$?
31989 echo "$as_me:31990: \$? = $ac_status" >&5
31986 echo "$as_me:31987: \$? = $ac_status" >&5
3199031987 (exit $ac_status); } &&
3199131988 { ac_try='test -s conftest.$ac_objext'
31992 { (eval echo "$as_me:31993: \"$ac_try\"") >&5
31989 { (eval echo "$as_me:31990: \"$ac_try\"") >&5
3199331990 (eval $ac_try) 2>&5
3199431991 ac_status=$?
31995 echo "$as_me:31996: \$? = $ac_status" >&5
31992 echo "$as_me:31993: \$? = $ac_status" >&5
3199631993 (exit $ac_status); }; }; then
3199731994
3199831995 test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6
3199931996
32000 echo "${as_me:-configure}:32001: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5
31997 echo "${as_me:-configure}:31998: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5
3200131998
3200231999 cf_cv_find_linkage_iconv=maybe
3200332000 cf_test_CPPFLAGS="$CPPFLAGS"
3201532012
3201632013 if test "$cf_cv_find_linkage_iconv" = maybe ; then
3201732014
32018 echo "${as_me:-configure}:32019: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5
32015 echo "${as_me:-configure}:32016: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5
3201932016
3202032017 cf_save_LIBS="$LIBS"
3202132018 cf_save_LDFLAGS="$LDFLAGS"
3211232109 if test -d $cf_cv_library_path_iconv ; then
3211332110 test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6
3211432111
32115 echo "${as_me:-configure}:32116: testing ... testing $cf_cv_library_path_iconv ..." 1>&5
32112 echo "${as_me:-configure}:32113: testing ... testing $cf_cv_library_path_iconv ..." 1>&5
3211632113
3211732114 CPPFLAGS="$cf_test_CPPFLAGS"
3211832115 LIBS="-liconv $cf_save_LIBS"
3211932116 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv"
3212032117 cat >conftest.$ac_ext <<_ACEOF
32121 #line 32122 "configure"
32118 #line 32119 "configure"
3212232119 #include "confdefs.h"
3212332120
3212432121 #include <stdlib.h>
3213732134 }
3213832135 _ACEOF
3213932136 rm -f conftest.$ac_objext conftest$ac_exeext
32140 if { (eval echo "$as_me:32141: \"$ac_link\"") >&5
32137 if { (eval echo "$as_me:32138: \"$ac_link\"") >&5
3214132138 (eval $ac_link) 2>&5
3214232139 ac_status=$?
32143 echo "$as_me:32144: \$? = $ac_status" >&5
32140 echo "$as_me:32141: \$? = $ac_status" >&5
3214432141 (exit $ac_status); } &&
3214532142 { ac_try='test -s conftest$ac_exeext'
32146 { (eval echo "$as_me:32147: \"$ac_try\"") >&5
32143 { (eval echo "$as_me:32144: \"$ac_try\"") >&5
3214732144 (eval $ac_try) 2>&5
3214832145 ac_status=$?
32149 echo "$as_me:32150: \$? = $ac_status" >&5
32146 echo "$as_me:32147: \$? = $ac_status" >&5
3215032147 (exit $ac_status); }; }; then
3215132148
3215232149 test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6
3215332150
32154 echo "${as_me:-configure}:32155: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5
32151 echo "${as_me:-configure}:32152: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5
3215532152
3215632153 cf_cv_find_linkage_iconv=yes
3215732154 cf_cv_library_file_iconv="-liconv"
3219132188 fi
3219232189
3219332190 fi
32194 echo "$as_me:32195: result: $am_cv_func_iconv" >&5
32191 echo "$as_me:32192: result: $am_cv_func_iconv" >&5
3219532192 echo "${ECHO_T}$am_cv_func_iconv" >&6
3219632193
3219732194 if test "$am_cv_func_iconv" = yes; then
3220032197 #define HAVE_ICONV 1
3220132198 EOF
3220232199
32203 echo "$as_me:32204: checking if the declaration of iconv() needs const." >&5
32200 echo "$as_me:32201: checking if the declaration of iconv() needs const." >&5
3220432201 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6
3220532202 if test "${am_cv_proto_iconv_const+set}" = set; then
3220632203 echo $ECHO_N "(cached) $ECHO_C" >&6
3220732204 else
3220832205
3220932206 cat >conftest.$ac_ext <<_ACEOF
32210 #line 32211 "configure"
32207 #line 32208 "configure"
3221132208 #include "confdefs.h"
3221232209
3221332210 #include <stdlib.h>
3223232229 }
3223332230 _ACEOF
3223432231 rm -f conftest.$ac_objext
32235 if { (eval echo "$as_me:32236: \"$ac_compile\"") >&5
32232 if { (eval echo "$as_me:32233: \"$ac_compile\"") >&5
3223632233 (eval $ac_compile) 2>&5
3223732234 ac_status=$?
32238 echo "$as_me:32239: \$? = $ac_status" >&5
32235 echo "$as_me:32236: \$? = $ac_status" >&5
3223932236 (exit $ac_status); } &&
3224032237 { ac_try='test -s conftest.$ac_objext'
32241 { (eval echo "$as_me:32242: \"$ac_try\"") >&5
32238 { (eval echo "$as_me:32239: \"$ac_try\"") >&5
3224232239 (eval $ac_try) 2>&5
3224332240 ac_status=$?
32244 echo "$as_me:32245: \$? = $ac_status" >&5
32241 echo "$as_me:32242: \$? = $ac_status" >&5
3224532242 (exit $ac_status); }; }; then
3224632243 am_cv_proto_iconv_const=no
3224732244 else
3225132248 fi
3225232249 rm -f conftest.$ac_objext conftest.$ac_ext
3225332250 fi
32254 echo "$as_me:32255: result: $am_cv_proto_iconv_const" >&5
32251 echo "$as_me:32252: result: $am_cv_proto_iconv_const" >&5
3225532252 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6
3225632253
3225732254 if test "$am_cv_proto_iconv_const" = yes ; then
3229332290 cf_save_CPPFLAGS=$CPPFLAGS
3229432291 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3229532292 cat >conftest.$ac_ext <<_ACEOF
32296 #line 32297 "configure"
32293 #line 32294 "configure"
3229732294 #include "confdefs.h"
3229832295 #include <stdio.h>
3229932296 int
3230532302 }
3230632303 _ACEOF
3230732304 rm -f conftest.$ac_objext
32308 if { (eval echo "$as_me:32309: \"$ac_compile\"") >&5
32305 if { (eval echo "$as_me:32306: \"$ac_compile\"") >&5
3230932306 (eval $ac_compile) 2>&5
3231032307 ac_status=$?
32311 echo "$as_me:32312: \$? = $ac_status" >&5
32308 echo "$as_me:32309: \$? = $ac_status" >&5
3231232309 (exit $ac_status); } &&
3231332310 { ac_try='test -s conftest.$ac_objext'
32314 { (eval echo "$as_me:32315: \"$ac_try\"") >&5
32311 { (eval echo "$as_me:32312: \"$ac_try\"") >&5
3231532312 (eval $ac_try) 2>&5
3231632313 ac_status=$?
32317 echo "$as_me:32318: \$? = $ac_status" >&5
32314 echo "$as_me:32315: \$? = $ac_status" >&5
3231832315 (exit $ac_status); }; }; then
3231932316 :
3232032317 else
3233132328 if test "$cf_have_incdir" = no ; then
3233232329 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3233332330
32334 echo "${as_me:-configure}:32335: testing adding $cf_add_incdir to include-path ..." 1>&5
32331 echo "${as_me:-configure}:32332: testing adding $cf_add_incdir to include-path ..." 1>&5
3233532332
3233632333 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3233732334
3236832365 if test "$cf_have_libdir" = no ; then
3236932366 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3237032367
32371 echo "${as_me:-configure}:32372: testing adding $cf_add_libdir to library-path ..." 1>&5
32368 echo "${as_me:-configure}:32369: testing adding $cf_add_libdir to library-path ..." 1>&5
3237232369
3237332370 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3237432371 fi
3239232389 esac
3239332390
3239432391 if test "$use_dft_colors" != no ; then
32395 echo "$as_me:32396: checking if you want to use default-colors" >&5
32392 echo "$as_me:32393: checking if you want to use default-colors" >&5
3239632393 echo $ECHO_N "checking if you want to use default-colors... $ECHO_C" >&6
3239732394
3239832395 # Check whether --enable-default-colors or --disable-default-colors was given.
3240932406 use_dft_colors=no
3241032407
3241132408 fi;
32412 echo "$as_me:32413: result: $use_dft_colors" >&5
32409 echo "$as_me:32410: result: $use_dft_colors" >&5
3241332410 echo "${ECHO_T}$use_dft_colors" >&6
3241432411 test $use_dft_colors = "yes" &&
3241532412 cat >>confdefs.h <<\EOF
3241832415
3241932416 fi
3242032417
32421 echo "$as_me:32422: checking if experimental keyboard-layout logic should be used" >&5
32418 echo "$as_me:32419: checking if experimental keyboard-layout logic should be used" >&5
3242232419 echo $ECHO_N "checking if experimental keyboard-layout logic should be used... $ECHO_C" >&6
3242332420
3242432421 # Check whether --enable-kbd-layout or --disable-kbd-layout was given.
3243532432 use_kbd_layout=no
3243632433
3243732434 fi;
32438 echo "$as_me:32439: result: $use_kbd_layout" >&5
32435 echo "$as_me:32436: result: $use_kbd_layout" >&5
3243932436 echo "${ECHO_T}$use_kbd_layout" >&6
3244032437 test $use_kbd_layout != no &&
3244132438 cat >>confdefs.h <<\EOF
3244232439 #define EXP_KEYBOARD_LAYOUT 1
3244332440 EOF
3244432441
32445 echo "$as_me:32446: checking if experimental nested-table logic should be used" >&5
32442 echo "$as_me:32443: checking if experimental nested-table logic should be used" >&5
3244632443 echo $ECHO_N "checking if experimental nested-table logic should be used... $ECHO_C" >&6
3244732444
3244832445 # Check whether --enable-nested-tables or --disable-nested-tables was given.
3245932456 use_nested_tables=no
3246032457
3246132458 fi;
32462 echo "$as_me:32463: result: $use_nested_tables" >&5
32459 echo "$as_me:32460: result: $use_nested_tables" >&5
3246332460 echo "${ECHO_T}$use_nested_tables" >&6
3246432461 test $use_nested_tables != no &&
3246532462 cat >>confdefs.h <<\EOF
3246632463 #define EXP_NESTED_TABLES 1
3246732464 EOF
3246832465
32469 echo "$as_me:32470: checking if alternative line-edit bindings should be used" >&5
32466 echo "$as_me:32467: checking if alternative line-edit bindings should be used" >&5
3247032467 echo $ECHO_N "checking if alternative line-edit bindings should be used... $ECHO_C" >&6
3247132468
3247232469 # Check whether --enable-alt-bindings or --disable-alt-bindings was given.
3248332480 use_alt_bindings=yes
3248432481
3248532482 fi;
32486 echo "$as_me:32487: result: $use_alt_bindings" >&5
32483 echo "$as_me:32484: result: $use_alt_bindings" >&5
3248732484 echo "${ECHO_T}$use_alt_bindings" >&6
3248832485 test $use_alt_bindings != no &&
3248932486 cat >>confdefs.h <<\EOF
3249032487 #define USE_ALT_BINDINGS 1
3249132488 EOF
3249232489
32493 echo "$as_me:32494: checking if ascii case-conversion should be used" >&5
32490 echo "$as_me:32491: checking if ascii case-conversion should be used" >&5
3249432491 echo $ECHO_N "checking if ascii case-conversion should be used... $ECHO_C" >&6
3249532492
3249632493 # Check whether --enable-ascii-ctypes or --disable-ascii-ctypes was given.
3250732504 use_ascii_ctypes=yes
3250832505
3250932506 fi;
32510 echo "$as_me:32511: result: $use_ascii_ctypes" >&5
32507 echo "$as_me:32508: result: $use_ascii_ctypes" >&5
3251132508 echo "${ECHO_T}$use_ascii_ctypes" >&6
3251232509 test $use_ascii_ctypes != no &&
3251332510 cat >>confdefs.h <<\EOF
3251432511 #define USE_ASCII_CTYPES 1
3251532512 EOF
3251632513
32517 echo "$as_me:32518: checking if you want to use extended HTML DTD logic" >&5
32514 echo "$as_me:32515: checking if you want to use extended HTML DTD logic" >&5
3251832515 echo $ECHO_N "checking if you want to use extended HTML DTD logic... $ECHO_C" >&6
3251932516
3252032517 # Check whether --enable-extended-dtd or --disable-extended-dtd was given.
3253132528 use_ext_htmldtd=yes
3253232529
3253332530 fi;
32534 echo "$as_me:32535: result: $use_ext_htmldtd" >&5
32531 echo "$as_me:32532: result: $use_ext_htmldtd" >&5
3253532532 echo "${ECHO_T}$use_ext_htmldtd" >&6
3253632533 test $use_ext_htmldtd = "no" &&
3253732534 cat >>confdefs.h <<\EOF
3253832535 #define NO_EXTENDED_HTMLDTD 1
3253932536 EOF
3254032537
32541 echo "$as_me:32542: checking if file-upload logic should be used" >&5
32538 echo "$as_me:32539: checking if file-upload logic should be used" >&5
3254232539 echo $ECHO_N "checking if file-upload logic should be used... $ECHO_C" >&6
3254332540
3254432541 # Check whether --enable-file-upload or --disable-file-upload was given.
3255532552 use_file_upload=yes
3255632553
3255732554 fi;
32558 echo "$as_me:32559: result: $use_file_upload" >&5
32555 echo "$as_me:32556: result: $use_file_upload" >&5
3255932556 echo "${ECHO_T}$use_file_upload" >&6
3256032557 test $use_file_upload != no &&
3256132558 cat >>confdefs.h <<\EOF
3256232559 #define USE_FILE_UPLOAD 1
3256332560 EOF
3256432561
32565 echo "$as_me:32566: checking if IDNA support should be used" >&5
32562 echo "$as_me:32563: checking if IDNA support should be used" >&5
3256632563 echo $ECHO_N "checking if IDNA support should be used... $ECHO_C" >&6
3256732564
3256832565 # Check whether --enable-idna or --disable-idna was given.
3257932576 use_idna=yes
3258032577
3258132578 fi;
32582 echo "$as_me:32583: result: $use_idna" >&5
32579 echo "$as_me:32580: result: $use_idna" >&5
3258332580 echo "${ECHO_T}$use_idna" >&6
3258432581
3258532582 if test "$use_idna" = yes ; then
3261832615 cf_save_CPPFLAGS=$CPPFLAGS
3261932616 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3262032617 cat >conftest.$ac_ext <<_ACEOF
32621 #line 32622 "configure"
32618 #line 32619 "configure"
3262232619 #include "confdefs.h"
3262332620 #include <stdio.h>
3262432621 int
3263032627 }
3263132628 _ACEOF
3263232629 rm -f conftest.$ac_objext
32633 if { (eval echo "$as_me:32634: \"$ac_compile\"") >&5
32630 if { (eval echo "$as_me:32631: \"$ac_compile\"") >&5
3263432631 (eval $ac_compile) 2>&5
3263532632 ac_status=$?
32636 echo "$as_me:32637: \$? = $ac_status" >&5
32633 echo "$as_me:32634: \$? = $ac_status" >&5
3263732634 (exit $ac_status); } &&
3263832635 { ac_try='test -s conftest.$ac_objext'
32639 { (eval echo "$as_me:32640: \"$ac_try\"") >&5
32636 { (eval echo "$as_me:32637: \"$ac_try\"") >&5
3264032637 (eval $ac_try) 2>&5
3264132638 ac_status=$?
32642 echo "$as_me:32643: \$? = $ac_status" >&5
32639 echo "$as_me:32640: \$? = $ac_status" >&5
3264332640 (exit $ac_status); }; }; then
3264432641 :
3264532642 else
3265632653 if test "$cf_have_incdir" = no ; then
3265732654 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3265832655
32659 echo "${as_me:-configure}:32660: testing adding $cf_add_incdir to include-path ..." 1>&5
32656 echo "${as_me:-configure}:32657: testing adding $cf_add_incdir to include-path ..." 1>&5
3266032657
3266132658 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3266232659
3269732694 cf_save_CPPFLAGS=$CPPFLAGS
3269832695 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3269932696 cat >conftest.$ac_ext <<_ACEOF
32700 #line 32701 "configure"
32697 #line 32698 "configure"
3270132698 #include "confdefs.h"
3270232699 #include <stdio.h>
3270332700 int
3270932706 }
3271032707 _ACEOF
3271132708 rm -f conftest.$ac_objext
32712 if { (eval echo "$as_me:32713: \"$ac_compile\"") >&5
32709 if { (eval echo "$as_me:32710: \"$ac_compile\"") >&5
3271332710 (eval $ac_compile) 2>&5
3271432711 ac_status=$?
32715 echo "$as_me:32716: \$? = $ac_status" >&5
32712 echo "$as_me:32713: \$? = $ac_status" >&5
3271632713 (exit $ac_status); } &&
3271732714 { ac_try='test -s conftest.$ac_objext'
32718 { (eval echo "$as_me:32719: \"$ac_try\"") >&5
32715 { (eval echo "$as_me:32716: \"$ac_try\"") >&5
3271932716 (eval $ac_try) 2>&5
3272032717 ac_status=$?
32721 echo "$as_me:32722: \$? = $ac_status" >&5
32718 echo "$as_me:32719: \$? = $ac_status" >&5
3272232719 (exit $ac_status); }; }; then
3272332720 :
3272432721 else
3273532732 if test "$cf_have_incdir" = no ; then
3273632733 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3273732734
32738 echo "${as_me:-configure}:32739: testing adding $cf_add_incdir to include-path ..." 1>&5
32735 echo "${as_me:-configure}:32736: testing adding $cf_add_incdir to include-path ..." 1>&5
3273932736
3274032737 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3274132738
3275132748 fi
3275232749
3275332750 else
32754 { { echo "$as_me:32755: error: cannot find under $use_idna" >&5
32751 { { echo "$as_me:32752: error: cannot find under $use_idna" >&5
3275532752 echo "$as_me: error: cannot find under $use_idna" >&2;}
3275632753 { (exit 1); exit 1; }; }
3275732754 fi
3277632773 if test "$cf_have_libdir" = no ; then
3277732774 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3277832775
32779 echo "${as_me:-configure}:32780: testing adding $cf_add_libdir to library-path ..." 1>&5
32776 echo "${as_me:-configure}:32777: testing adding $cf_add_libdir to library-path ..." 1>&5
3278032777
3278132778 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3278232779 fi
3280532802 if test "$cf_have_libdir" = no ; then
3280632803 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3280732804
32808 echo "${as_me:-configure}:32809: testing adding $cf_add_libdir to library-path ..." 1>&5
32805 echo "${as_me:-configure}:32806: testing adding $cf_add_libdir to library-path ..." 1>&5
3280932806
3281032807 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3281132808 fi
3281432811 fi
3281532812
3281632813 else
32817 { { echo "$as_me:32818: error: cannot find under $use_idna" >&5
32814 { { echo "$as_me:32815: error: cannot find under $use_idna" >&5
3281832815 echo "$as_me: error: cannot find under $use_idna" >&2;}
3281932816 { (exit 1); exit 1; }; }
3282032817 fi
3282832825 cf_cv_header_path_idn=
3282932826 cf_cv_library_path_idn=
3283032827
32831 echo "${as_me:-configure}:32832: testing Starting FIND_LINKAGE(idn,) ..." 1>&5
32828 echo "${as_me:-configure}:32829: testing Starting FIND_LINKAGE(idn,) ..." 1>&5
3283232829
3283332830 cf_save_LIBS="$LIBS"
3283432831
3283532832 cat >conftest.$ac_ext <<_ACEOF
32836 #line 32837 "configure"
32833 #line 32834 "configure"
3283732834 #include "confdefs.h"
3283832835
3283932836 #include <stdio.h>
3285132848 }
3285232849 _ACEOF
3285332850 rm -f conftest.$ac_objext conftest$ac_exeext
32854 if { (eval echo "$as_me:32855: \"$ac_link\"") >&5
32851 if { (eval echo "$as_me:32852: \"$ac_link\"") >&5
3285532852 (eval $ac_link) 2>&5
3285632853 ac_status=$?
32857 echo "$as_me:32858: \$? = $ac_status" >&5
32854 echo "$as_me:32855: \$? = $ac_status" >&5
3285832855 (exit $ac_status); } &&
3285932856 { ac_try='test -s conftest$ac_exeext'
32860 { (eval echo "$as_me:32861: \"$ac_try\"") >&5
32857 { (eval echo "$as_me:32858: \"$ac_try\"") >&5
3286132858 (eval $ac_try) 2>&5
3286232859 ac_status=$?
32863 echo "$as_me:32864: \$? = $ac_status" >&5
32860 echo "$as_me:32861: \$? = $ac_status" >&5
3286432861 (exit $ac_status); }; }; then
3286532862
3286632863 cf_cv_find_linkage_idn=yes
3287432871 LIBS="-lidn $LIBICONV $cf_save_LIBS"
3287532872
3287632873 cat >conftest.$ac_ext <<_ACEOF
32877 #line 32878 "configure"
32874 #line 32875 "configure"
3287832875 #include "confdefs.h"
3287932876
3288032877 #include <stdio.h>
3289232889 }
3289332890 _ACEOF
3289432891 rm -f conftest.$ac_objext conftest$ac_exeext
32895 if { (eval echo "$as_me:32896: \"$ac_link\"") >&5
32892 if { (eval echo "$as_me:32893: \"$ac_link\"") >&5
3289632893 (eval $ac_link) 2>&5
3289732894 ac_status=$?
32898 echo "$as_me:32899: \$? = $ac_status" >&5
32895 echo "$as_me:32896: \$? = $ac_status" >&5
3289932896 (exit $ac_status); } &&
3290032897 { ac_try='test -s conftest$ac_exeext'
32901 { (eval echo "$as_me:32902: \"$ac_try\"") >&5
32898 { (eval echo "$as_me:32899: \"$ac_try\"") >&5
3290232899 (eval $ac_try) 2>&5
3290332900 ac_status=$?
32904 echo "$as_me:32905: \$? = $ac_status" >&5
32901 echo "$as_me:32902: \$? = $ac_status" >&5
3290532902 (exit $ac_status); }; }; then
3290632903
3290732904 cf_cv_find_linkage_idn=yes
3291832915
3291932916 test -n "$verbose" && echo " find linkage for idn library" 1>&6
3292032917
32921 echo "${as_me:-configure}:32922: testing find linkage for idn library ..." 1>&5
32922
32923 echo "${as_me:-configure}:32924: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5
32918 echo "${as_me:-configure}:32919: testing find linkage for idn library ..." 1>&5
32919
32920 echo "${as_me:-configure}:32921: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5
3292432921
3292532922 cf_save_CPPFLAGS="$CPPFLAGS"
3292632923 cf_test_CPPFLAGS="$CPPFLAGS"
3303333030 if test -d $cf_cv_header_path_idn ; then
3303433031 test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn" 1>&6
3303533032
33036 echo "${as_me:-configure}:33037: testing ... testing $cf_cv_header_path_idn ..." 1>&5
33033 echo "${as_me:-configure}:33034: testing ... testing $cf_cv_header_path_idn ..." 1>&5
3303733034
3303833035 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_idn"
3303933036 cat >conftest.$ac_ext <<_ACEOF
33040 #line 33041 "configure"
33037 #line 33038 "configure"
3304133038 #include "confdefs.h"
3304233039
3304333040 #include <stdio.h>
3305533052 }
3305633053 _ACEOF
3305733054 rm -f conftest.$ac_objext
33058 if { (eval echo "$as_me:33059: \"$ac_compile\"") >&5
33055 if { (eval echo "$as_me:33056: \"$ac_compile\"") >&5
3305933056 (eval $ac_compile) 2>&5
3306033057 ac_status=$?
33061 echo "$as_me:33062: \$? = $ac_status" >&5
33058 echo "$as_me:33059: \$? = $ac_status" >&5
3306233059 (exit $ac_status); } &&
3306333060 { ac_try='test -s conftest.$ac_objext'
33064 { (eval echo "$as_me:33065: \"$ac_try\"") >&5
33061 { (eval echo "$as_me:33062: \"$ac_try\"") >&5
3306533062 (eval $ac_try) 2>&5
3306633063 ac_status=$?
33067 echo "$as_me:33068: \$? = $ac_status" >&5
33064 echo "$as_me:33065: \$? = $ac_status" >&5
3306833065 (exit $ac_status); }; }; then
3306933066
3307033067 test -n "$verbose" && echo " ... found idn headers in $cf_cv_header_path_idn" 1>&6
3307133068
33072 echo "${as_me:-configure}:33073: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5
33069 echo "${as_me:-configure}:33070: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5
3307333070
3307433071 cf_cv_find_linkage_idn=maybe
3307533072 cf_test_CPPFLAGS="$CPPFLAGS"
3308733084
3308833085 if test "$cf_cv_find_linkage_idn" = maybe ; then
3308933086
33090 echo "${as_me:-configure}:33091: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5
33087 echo "${as_me:-configure}:33088: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5
3309133088
3309233089 cf_save_LIBS="$LIBS"
3309333090 cf_save_LDFLAGS="$LDFLAGS"
3318433181 if test -d $cf_cv_library_path_idn ; then
3318533182 test -n "$verbose" && echo " ... testing $cf_cv_library_path_idn" 1>&6
3318633183
33187 echo "${as_me:-configure}:33188: testing ... testing $cf_cv_library_path_idn ..." 1>&5
33184 echo "${as_me:-configure}:33185: testing ... testing $cf_cv_library_path_idn ..." 1>&5
3318833185
3318933186 CPPFLAGS="$cf_test_CPPFLAGS"
3319033187 LIBS="-lidn $LIBICONV $cf_save_LIBS"
3319133188 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn"
3319233189 cat >conftest.$ac_ext <<_ACEOF
33193 #line 33194 "configure"
33190 #line 33191 "configure"
3319433191 #include "confdefs.h"
3319533192
3319633193 #include <stdio.h>
3320833205 }
3320933206 _ACEOF
3321033207 rm -f conftest.$ac_objext conftest$ac_exeext
33211 if { (eval echo "$as_me:33212: \"$ac_link\"") >&5
33208 if { (eval echo "$as_me:33209: \"$ac_link\"") >&5
3321233209 (eval $ac_link) 2>&5
3321333210 ac_status=$?
33214 echo "$as_me:33215: \$? = $ac_status" >&5
33211 echo "$as_me:33212: \$? = $ac_status" >&5
3321533212 (exit $ac_status); } &&
3321633213 { ac_try='test -s conftest$ac_exeext'
33217 { (eval echo "$as_me:33218: \"$ac_try\"") >&5
33214 { (eval echo "$as_me:33215: \"$ac_try\"") >&5
3321833215 (eval $ac_try) 2>&5
3321933216 ac_status=$?
33220 echo "$as_me:33221: \$? = $ac_status" >&5
33217 echo "$as_me:33218: \$? = $ac_status" >&5
3322133218 (exit $ac_status); }; }; then
3322233219
3322333220 test -n "$verbose" && echo " ... found idn library in $cf_cv_library_path_idn" 1>&6
3322433221
33225 echo "${as_me:-configure}:33226: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5
33222 echo "${as_me:-configure}:33223: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5
3322633223
3322733224 cf_cv_find_linkage_idn=yes
3322833225 cf_cv_library_file_idn="-lidn"
3328133278 cf_save_CPPFLAGS=$CPPFLAGS
3328233279 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3328333280 cat >conftest.$ac_ext <<_ACEOF
33284 #line 33285 "configure"
33281 #line 33282 "configure"
3328533282 #include "confdefs.h"
3328633283 #include <stdio.h>
3328733284 int
3329333290 }
3329433291 _ACEOF
3329533292 rm -f conftest.$ac_objext
33296 if { (eval echo "$as_me:33297: \"$ac_compile\"") >&5
33293 if { (eval echo "$as_me:33294: \"$ac_compile\"") >&5
3329733294 (eval $ac_compile) 2>&5
3329833295 ac_status=$?
33299 echo "$as_me:33300: \$? = $ac_status" >&5
33296 echo "$as_me:33297: \$? = $ac_status" >&5
3330033297 (exit $ac_status); } &&
3330133298 { ac_try='test -s conftest.$ac_objext'
33302 { (eval echo "$as_me:33303: \"$ac_try\"") >&5
33299 { (eval echo "$as_me:33300: \"$ac_try\"") >&5
3330333300 (eval $ac_try) 2>&5
3330433301 ac_status=$?
33305 echo "$as_me:33306: \$? = $ac_status" >&5
33302 echo "$as_me:33303: \$? = $ac_status" >&5
3330633303 (exit $ac_status); }; }; then
3330733304 :
3330833305 else
3331933316 if test "$cf_have_incdir" = no ; then
3332033317 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3332133318
33322 echo "${as_me:-configure}:33323: testing adding $cf_add_incdir to include-path ..." 1>&5
33319 echo "${as_me:-configure}:33320: testing adding $cf_add_incdir to include-path ..." 1>&5
3332333320
3332433321 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3332533322
3335333350 if test "$cf_have_libdir" = no ; then
3335433351 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3335533352
33356 echo "${as_me:-configure}:33357: testing adding $cf_add_libdir to library-path ..." 1>&5
33353 echo "${as_me:-configure}:33354: testing adding $cf_add_libdir to library-path ..." 1>&5
3335733354
3335833355 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3335933356 fi
3336433361 LIBS="-lidn $LIBS"
3336533362
3336633363 else
33367 { echo "$as_me:33368: WARNING: Cannot find idn library" >&5
33364 { echo "$as_me:33365: WARNING: Cannot find idn library" >&5
3336833365 echo "$as_me: WARNING: Cannot find idn library" >&2;}
3336933366 fi
3337033367
3337833375
3337933376 fi
3338033377
33381 echo "$as_me:33382: checking if element-justification logic should be used" >&5
33378 echo "$as_me:33379: checking if element-justification logic should be used" >&5
3338233379 echo $ECHO_N "checking if element-justification logic should be used... $ECHO_C" >&6
3338333380
3338433381 # Check whether --enable-justify-elts or --disable-justify-elts was given.
3339533392 use_justify_elts=yes
3339633393
3339733394 fi;
33398 echo "$as_me:33399: result: $use_justify_elts" >&5
33395 echo "$as_me:33396: result: $use_justify_elts" >&5
3339933396 echo "${ECHO_T}$use_justify_elts" >&6
3340033397 test $use_justify_elts != no &&
3340133398 cat >>confdefs.h <<\EOF
3340233399 #define USE_JUSTIFY_ELTS 1
3340333400 EOF
3340433401
33405 echo "$as_me:33406: checking if partial-display should be used" >&5
33402 echo "$as_me:33403: checking if partial-display should be used" >&5
3340633403 echo $ECHO_N "checking if partial-display should be used... $ECHO_C" >&6
3340733404
3340833405 # Check whether --enable-partial or --disable-partial was given.
3341933416 use_partial_display=yes
3342033417
3342133418 fi;
33422 echo "$as_me:33423: result: $use_partial_display" >&5
33419 echo "$as_me:33420: result: $use_partial_display" >&5
3342333420 echo "${ECHO_T}$use_partial_display" >&6
3342433421 test $use_partial_display != no &&
3342533422 cat >>confdefs.h <<\EOF
3342633423 #define DISP_PARTIAL 1
3342733424 EOF
3342833425
33429 echo "$as_me:33430: checking if persistent-cookie logic should be used" >&5
33426 echo "$as_me:33427: checking if persistent-cookie logic should be used" >&5
3343033427 echo $ECHO_N "checking if persistent-cookie logic should be used... $ECHO_C" >&6
3343133428
3343233429 # Check whether --enable-persistent-cookies or --disable-persistent-cookies was given.
3344333440 use_filed_cookies=yes
3344433441
3344533442 fi;
33446 echo "$as_me:33447: result: $use_filed_cookies" >&5
33443 echo "$as_me:33444: result: $use_filed_cookies" >&5
3344733444 echo "${ECHO_T}$use_filed_cookies" >&6
3344833445 test $use_filed_cookies != no &&
3344933446 cat >>confdefs.h <<\EOF
3345033447 #define USE_PERSISTENT_COOKIES 1
3345133448 EOF
3345233449
33453 echo "$as_me:33454: checking if html source should be colorized" >&5
33450 echo "$as_me:33451: checking if html source should be colorized" >&5
3345433451 echo $ECHO_N "checking if html source should be colorized... $ECHO_C" >&6
3345533452
3345633453 # Check whether --enable-prettysrc or --disable-prettysrc was given.
3346733464 use_prettysrc=yes
3346833465
3346933466 fi;
33470 echo "$as_me:33471: result: $use_prettysrc" >&5
33467 echo "$as_me:33468: result: $use_prettysrc" >&5
3347133468 echo "${ECHO_T}$use_prettysrc" >&6
3347233469 test $use_prettysrc != no &&
3347333470 cat >>confdefs.h <<\EOF
3347433471 #define USE_PRETTYSRC 1
3347533472 EOF
3347633473
33477 echo "$as_me:33478: checking if progress-bar code should be used" >&5
33474 echo "$as_me:33475: checking if progress-bar code should be used" >&5
3347833475 echo $ECHO_N "checking if progress-bar code should be used... $ECHO_C" >&6
3347933476
3348033477 # Check whether --enable-progressbar or --disable-progressbar was given.
3349133488 use_progressbar=yes
3349233489
3349333490 fi;
33494 echo "$as_me:33495: result: $use_progressbar" >&5
33491 echo "$as_me:33492: result: $use_progressbar" >&5
3349533492 echo "${ECHO_T}$use_progressbar" >&6
3349633493 test $use_progressbar != no &&
3349733494 cat >>confdefs.h <<\EOF
3349833495 #define USE_PROGRESSBAR 1
3349933496 EOF
3350033497
33501 echo "$as_me:33502: checking if read-progress message should show ETA" >&5
33498 echo "$as_me:33499: checking if read-progress message should show ETA" >&5
3350233499 echo $ECHO_N "checking if read-progress message should show ETA... $ECHO_C" >&6
3350333500
3350433501 # Check whether --enable-read-eta or --disable-read-eta was given.
3351533512 use_read_eta=yes
3351633513
3351733514 fi;
33518 echo "$as_me:33519: result: $use_read_eta" >&5
33515 echo "$as_me:33516: result: $use_read_eta" >&5
3351933516 echo "${ECHO_T}$use_read_eta" >&6
3352033517 test $use_read_eta != no &&
3352133518 cat >>confdefs.h <<\EOF
3352233519 #define USE_READPROGRESS 1
3352333520 EOF
3352433521
33525 echo "$as_me:33526: checking if source caching should be used" >&5
33522 echo "$as_me:33523: checking if source caching should be used" >&5
3352633523 echo $ECHO_N "checking if source caching should be used... $ECHO_C" >&6
3352733524
3352833525 # Check whether --enable-source-cache or --disable-source-cache was given.
3353933536 use_source_cache=yes
3354033537
3354133538 fi;
33542 echo "$as_me:33543: result: $use_source_cache" >&5
33539 echo "$as_me:33540: result: $use_source_cache" >&5
3354333540 echo "${ECHO_T}$use_source_cache" >&6
3354433541 test $use_source_cache != no &&
3354533542 cat >>confdefs.h <<\EOF
3354633543 #define USE_SOURCE_CACHE 1
3354733544 EOF
3354833545
33549 echo "$as_me:33550: checking if scrollbar code should be used" >&5
33546 echo "$as_me:33547: checking if scrollbar code should be used" >&5
3355033547 echo $ECHO_N "checking if scrollbar code should be used... $ECHO_C" >&6
3355133548
3355233549 # Check whether --enable-scrollbar or --disable-scrollbar was given.
3356333560 use_scrollbar=yes
3356433561
3356533562 fi;
33566 echo "$as_me:33567: result: $use_scrollbar" >&5
33563 echo "$as_me:33564: result: $use_scrollbar" >&5
3356733564 echo "${ECHO_T}$use_scrollbar" >&6
3356833565
33569 echo "$as_me:33570: checking if charset-selection logic should be used" >&5
33566 echo "$as_me:33567: checking if charset-selection logic should be used" >&5
3357033567 echo $ECHO_N "checking if charset-selection logic should be used... $ECHO_C" >&6
3357133568
3357233569 # Check whether --enable-charset-choice or --disable-charset-choice was given.
3358333580 use_charset_choice=no
3358433581
3358533582 fi;
33586 echo "$as_me:33587: result: $use_charset_choice" >&5
33583 echo "$as_me:33584: result: $use_charset_choice" >&5
3358733584 echo "${ECHO_T}$use_charset_choice" >&6
3358833585 test $use_charset_choice != no &&
3358933586 cat >>confdefs.h <<\EOF
3359033587 #define USE_CHARSET_CHOICE 1
3359133588 EOF
3359233589
33593 echo "$as_me:33594: checking if you want to use external commands" >&5
33590 echo "$as_me:33591: checking if you want to use external commands" >&5
3359433591 echo $ECHO_N "checking if you want to use external commands... $ECHO_C" >&6
3359533592
3359633593 # Check whether --enable-externs or --disable-externs was given.
3360733604 use_externs=no
3360833605
3360933606 fi;
33610 echo "$as_me:33611: result: $use_externs" >&5
33607 echo "$as_me:33608: result: $use_externs" >&5
3361133608 echo "${ECHO_T}$use_externs" >&6
3361233609 if test $use_externs != "no" ; then
3361333610
3361833615 EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o"
3361933616 fi
3362033617
33621 echo "$as_me:33622: checking if you want to use setfont support" >&5
33618 echo "$as_me:33619: checking if you want to use setfont support" >&5
3362233619 echo $ECHO_N "checking if you want to use setfont support... $ECHO_C" >&6
3362333620
3362433621 # Check whether --enable-font-switch or --disable-font-switch was given.
3363533632 use_setfont=no
3363633633
3363733634 fi;
33638 echo "$as_me:33639: result: $use_setfont" >&5
33635 echo "$as_me:33636: result: $use_setfont" >&5
3363933636 echo "${ECHO_T}$use_setfont" >&6
3364033637 if test $use_setfont = yes ; then
3364133638 case $host_os in
3364633643 do
3364733644 # Extract the first word of "$ac_prog", so it can be a program name with args.
3364833645 set dummy $ac_prog; ac_word=$2
33649 echo "$as_me:33650: checking for $ac_word" >&5
33646 echo "$as_me:33647: checking for $ac_word" >&5
3365033647 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3365133648 if test "${ac_cv_path_SETFONT+set}" = set; then
3365233649 echo $ECHO_N "(cached) $ECHO_C" >&6
3366333660 test -z "$ac_dir" && ac_dir=.
3366433661 if $as_executable_p "$ac_dir/$ac_word"; then
3366533662 ac_cv_path_SETFONT="$ac_dir/$ac_word"
33666 echo "$as_me:33667: found $ac_dir/$ac_word" >&5
33663 echo "$as_me:33664: found $ac_dir/$ac_word" >&5
3366733664 break
3366833665 fi
3366933666 done
3367433671 SETFONT=$ac_cv_path_SETFONT
3367533672
3367633673 if test -n "$SETFONT"; then
33677 echo "$as_me:33678: result: $SETFONT" >&5
33674 echo "$as_me:33675: result: $SETFONT" >&5
3367833675 echo "${ECHO_T}$SETFONT" >&6
3367933676 else
33680 echo "$as_me:33681: result: no" >&5
33677 echo "$as_me:33678: result: no" >&5
3368133678 echo "${ECHO_T}no" >&6
3368233679 fi
3368333680
3373633733
3373733734 if test -n "$cf_path_prog" ; then
3373833735
33739 echo "${as_me:-configure}:33740: testing defining path for ${cf_path_prog} ..." 1>&5
33736 echo "${as_me:-configure}:33737: testing defining path for ${cf_path_prog} ..." 1>&5
3374033737
3374133738 cat >>confdefs.h <<EOF
3374233739 #define SETFONT_PATH "$cf_path_prog"
3375433751 SETFONT=built-in
3375533752 test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6
3375633753
33757 echo "${as_me:-configure}:33758: testing Assume $host_os has font-switching ..." 1>&5
33754 echo "${as_me:-configure}:33755: testing Assume $host_os has font-switching ..." 1>&5
3375833755
3375933756 ;;
3376033757 *)
3376133758 SETFONT=unknown
3376233759 test -n "$verbose" && echo " Assume $host_os has no font-switching" 1>&6
3376333760
33764 echo "${as_me:-configure}:33765: testing Assume $host_os has no font-switching ..." 1>&5
33761 echo "${as_me:-configure}:33762: testing Assume $host_os has no font-switching ..." 1>&5
3376533762
3376633763 ;;
3376733764 esac
3376833765 if test -z "$SETFONT" ; then
33769 { echo "$as_me:33770: WARNING: Cannot find a font-setting program" >&5
33766 { echo "$as_me:33767: WARNING: Cannot find a font-setting program" >&5
3377033767 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;}
3377133768 elif test "$SETFONT" != unknown ; then
3377233769
3377733774 fi
3377833775 fi
3377933776
33780 echo "$as_me:33781: checking if you want cgi-link support" >&5
33777 echo "$as_me:33778: checking if you want cgi-link support" >&5
3378133778 echo $ECHO_N "checking if you want cgi-link support... $ECHO_C" >&6
3378233779
3378333780 # Check whether --enable-cgi-links or --disable-cgi-links was given.
3379433791 else
3379533792 enableval=no
3379633793 fi;
33797 echo "$as_me:33798: result: $enableval" >&5
33794 echo "$as_me:33795: result: $enableval" >&5
3379833795 echo "${ECHO_T}$enableval" >&6
3379933796
33800 echo "$as_me:33801: checking if you want change-exec support" >&5
33797 echo "$as_me:33798: checking if you want change-exec support" >&5
3380133798 echo $ECHO_N "checking if you want change-exec support... $ECHO_C" >&6
3380233799
3380333800 # Check whether --enable-change-exec or --disable-change-exec was given.
3381433811 use_change_exec=no
3381533812
3381633813 fi;
33817 echo "$as_me:33818: result: $use_change_exec" >&5
33814 echo "$as_me:33815: result: $use_change_exec" >&5
3381833815 echo "${ECHO_T}$use_change_exec" >&6
3381933816 test $use_change_exec = yes &&
3382033817 cat >>confdefs.h <<\EOF
3382133818 #define ENABLE_OPTS_CHANGE_EXEC 1
3382233819 EOF
3382333820
33824 echo "$as_me:33825: checking if you want exec-links support" >&5
33821 echo "$as_me:33822: checking if you want exec-links support" >&5
3382533822 echo $ECHO_N "checking if you want exec-links support... $ECHO_C" >&6
3382633823
3382733824 # Check whether --enable-exec-links or --disable-exec-links was given.
3383833835 use_exec_links=$enableval
3383933836
3384033837 fi;
33841 echo "$as_me:33842: result: $use_exec_links" >&5
33838 echo "$as_me:33839: result: $use_exec_links" >&5
3384233839 echo "${ECHO_T}$use_exec_links" >&6
3384333840 test $use_exec_links = yes &&
3384433841 cat >>confdefs.h <<\EOF
3384533842 #define EXEC_LINKS 1
3384633843 EOF
3384733844
33848 echo "$as_me:33849: checking if you want exec-scripts support" >&5
33845 echo "$as_me:33846: checking if you want exec-scripts support" >&5
3384933846 echo $ECHO_N "checking if you want exec-scripts support... $ECHO_C" >&6
3385033847
3385133848 # Check whether --enable-exec-scripts or --disable-exec-scripts was given.
3386233859 use_exec_scripts=$enableval
3386333860
3386433861 fi;
33865 echo "$as_me:33866: result: $use_exec_scripts" >&5
33862 echo "$as_me:33863: result: $use_exec_scripts" >&5
3386633863 echo "${ECHO_T}$use_exec_scripts" >&6
3386733864 test $use_exec_scripts = yes &&
3386833865 cat >>confdefs.h <<\EOF
3386933866 #define EXEC_SCRIPTS 1
3387033867 EOF
3387133868
33872 echo "$as_me:33873: checking if you want internal-links feature" >&5
33869 echo "$as_me:33870: checking if you want internal-links feature" >&5
3387333870 echo $ECHO_N "checking if you want internal-links feature... $ECHO_C" >&6
3387433871
3387533872 # Check whether --enable-internal-links or --disable-internal-links was given.
3388633883 use_internal_links=no
3388733884
3388833885 fi;
33889 echo "$as_me:33890: result: $use_internal_links" >&5
33886 echo "$as_me:33887: result: $use_internal_links" >&5
3389033887 echo "${ECHO_T}$use_internal_links" >&6
3389133888 test $use_internal_links = yes &&
3389233889 cat >>confdefs.h <<\EOF
3389333890 #define TRACK_INTERNAL_LINKS 1
3389433891 EOF
3389533892
33896 echo "$as_me:33897: checking if you want to fork NSL requests" >&5
33893 echo "$as_me:33894: checking if you want to fork NSL requests" >&5
3389733894 echo $ECHO_N "checking if you want to fork NSL requests... $ECHO_C" >&6
3389833895
3389933896 # Check whether --enable-nsl-fork or --disable-nsl-fork was given.
3391033907 use_nsl_fork=no
3391133908
3391233909 fi;
33913 echo "$as_me:33914: result: $use_nsl_fork" >&5
33910 echo "$as_me:33911: result: $use_nsl_fork" >&5
3391433911 echo "${ECHO_T}$use_nsl_fork" >&6
3391533912 if test $use_nsl_fork = yes ; then
3391633913 case $host_os in
3393133928 esac
3393233929 fi
3393333930
33934 echo "$as_me:33935: checking if you want to log URL requests via syslog" >&5
33931 echo "$as_me:33932: checking if you want to log URL requests via syslog" >&5
3393533932 echo $ECHO_N "checking if you want to log URL requests via syslog... $ECHO_C" >&6
3393633933
3393733934 # Check whether --enable-syslog or --disable-syslog was given.
3394833945 use_syslog=no
3394933946
3395033947 fi;
33951 echo "$as_me:33952: result: $use_syslog" >&5
33948 echo "$as_me:33949: result: $use_syslog" >&5
3395233949 echo "${ECHO_T}$use_syslog" >&6
3395333950 test $use_syslog = yes &&
3395433951 cat >>confdefs.h <<\EOF
3395533952 #define SYSLOG_REQUESTED_URLS 1
3395633953 EOF
3395733954
33958 echo "$as_me:33959: checking if you want to underline links" >&5
33955 echo "$as_me:33956: checking if you want to underline links" >&5
3395933956 echo $ECHO_N "checking if you want to underline links... $ECHO_C" >&6
3396033957
3396133958 # Check whether --enable-underlines or --disable-underlines was given.
3397233969 use_underline=no
3397333970
3397433971 fi;
33975 echo "$as_me:33976: result: $use_underline" >&5
33972 echo "$as_me:33973: result: $use_underline" >&5
3397633973 echo "${ECHO_T}$use_underline" >&6
3397733974 test $use_underline = yes &&
3397833975 cat >>confdefs.h <<\EOF
3398433981 #define UNDERLINE_LINKS 0
3398533982 EOF
3398633983
33987 echo "$as_me:33988: checking if help files should be gzip'ed" >&5
33984 echo "$as_me:33985: checking if help files should be gzip'ed" >&5
3398833985 echo $ECHO_N "checking if help files should be gzip'ed... $ECHO_C" >&6
3398933986
3399033987 # Check whether --enable-gzip-help or --disable-gzip-help was given.
3400133998 use_gzip_help=no
3400233999
3400334000 fi;
34004 echo "$as_me:34005: result: $use_gzip_help" >&5
34001 echo "$as_me:34002: result: $use_gzip_help" >&5
3400534002 echo "${ECHO_T}$use_gzip_help" >&6
3400634003
34007 echo "$as_me:34008: checking if you want to use libbz2 for decompression of some bzip2 files" >&5
34004 echo "$as_me:34005: checking if you want to use libbz2 for decompression of some bzip2 files" >&5
3400834005 echo $ECHO_N "checking if you want to use libbz2 for decompression of some bzip2 files... $ECHO_C" >&6
3400934006
3401034007 # Check whether --with-bzlib or --without-bzlib was given.
3401434011 else
3401534012 use_bzlib=no
3401634013 fi;
34017 echo "$as_me:34018: result: $use_bzlib" >&5
34014 echo "$as_me:34015: result: $use_bzlib" >&5
3401834015 echo "${ECHO_T}$use_bzlib" >&6
3401934016
3402034017 if test ".$use_bzlib" != ".no" ; then
3405334050 cf_save_CPPFLAGS=$CPPFLAGS
3405434051 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3405534052 cat >conftest.$ac_ext <<_ACEOF
34056 #line 34057 "configure"
34053 #line 34054 "configure"
3405734054 #include "confdefs.h"
3405834055 #include <stdio.h>
3405934056 int
3406534062 }
3406634063 _ACEOF
3406734064 rm -f conftest.$ac_objext
34068 if { (eval echo "$as_me:34069: \"$ac_compile\"") >&5
34065 if { (eval echo "$as_me:34066: \"$ac_compile\"") >&5
3406934066 (eval $ac_compile) 2>&5
3407034067 ac_status=$?
34071 echo "$as_me:34072: \$? = $ac_status" >&5
34068 echo "$as_me:34069: \$? = $ac_status" >&5
3407234069 (exit $ac_status); } &&
3407334070 { ac_try='test -s conftest.$ac_objext'
34074 { (eval echo "$as_me:34075: \"$ac_try\"") >&5
34071 { (eval echo "$as_me:34072: \"$ac_try\"") >&5
3407534072 (eval $ac_try) 2>&5
3407634073 ac_status=$?
34077 echo "$as_me:34078: \$? = $ac_status" >&5
34074 echo "$as_me:34075: \$? = $ac_status" >&5
3407834075 (exit $ac_status); }; }; then
3407934076 :
3408034077 else
3409134088 if test "$cf_have_incdir" = no ; then
3409234089 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3409334090
34094 echo "${as_me:-configure}:34095: testing adding $cf_add_incdir to include-path ..." 1>&5
34091 echo "${as_me:-configure}:34092: testing adding $cf_add_incdir to include-path ..." 1>&5
3409534092
3409634093 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3409734094
3413234129 cf_save_CPPFLAGS=$CPPFLAGS
3413334130 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3413434131 cat >conftest.$ac_ext <<_ACEOF
34135 #line 34136 "configure"
34132 #line 34133 "configure"
3413634133 #include "confdefs.h"
3413734134 #include <stdio.h>
3413834135 int
3414434141 }
3414534142 _ACEOF
3414634143 rm -f conftest.$ac_objext
34147 if { (eval echo "$as_me:34148: \"$ac_compile\"") >&5
34144 if { (eval echo "$as_me:34145: \"$ac_compile\"") >&5
3414834145 (eval $ac_compile) 2>&5
3414934146 ac_status=$?
34150 echo "$as_me:34151: \$? = $ac_status" >&5
34147 echo "$as_me:34148: \$? = $ac_status" >&5
3415134148 (exit $ac_status); } &&
3415234149 { ac_try='test -s conftest.$ac_objext'
34153 { (eval echo "$as_me:34154: \"$ac_try\"") >&5
34150 { (eval echo "$as_me:34151: \"$ac_try\"") >&5
3415434151 (eval $ac_try) 2>&5
3415534152 ac_status=$?
34156 echo "$as_me:34157: \$? = $ac_status" >&5
34153 echo "$as_me:34154: \$? = $ac_status" >&5
3415734154 (exit $ac_status); }; }; then
3415834155 :
3415934156 else
3417034167 if test "$cf_have_incdir" = no ; then
3417134168 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3417234169
34173 echo "${as_me:-configure}:34174: testing adding $cf_add_incdir to include-path ..." 1>&5
34170 echo "${as_me:-configure}:34171: testing adding $cf_add_incdir to include-path ..." 1>&5
3417434171
3417534172 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3417634173
3418634183 fi
3418734184
3418834185 else
34189 { { echo "$as_me:34190: error: cannot find under $use_bzlib" >&5
34186 { { echo "$as_me:34187: error: cannot find under $use_bzlib" >&5
3419034187 echo "$as_me: error: cannot find under $use_bzlib" >&2;}
3419134188 { (exit 1); exit 1; }; }
3419234189 fi
3421134208 if test "$cf_have_libdir" = no ; then
3421234209 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3421334210
34214 echo "${as_me:-configure}:34215: testing adding $cf_add_libdir to library-path ..." 1>&5
34211 echo "${as_me:-configure}:34212: testing adding $cf_add_libdir to library-path ..." 1>&5
3421534212
3421634213 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3421734214 fi
3424034237 if test "$cf_have_libdir" = no ; then
3424134238 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3424234239
34243 echo "${as_me:-configure}:34244: testing adding $cf_add_libdir to library-path ..." 1>&5
34240 echo "${as_me:-configure}:34241: testing adding $cf_add_libdir to library-path ..." 1>&5
3424434241
3424534242 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3424634243 fi
3424934246 fi
3425034247
3425134248 else
34252 { { echo "$as_me:34253: error: cannot find under $use_bzlib" >&5
34249 { { echo "$as_me:34250: error: cannot find under $use_bzlib" >&5
3425334250 echo "$as_me: error: cannot find under $use_bzlib" >&2;}
3425434251 { (exit 1); exit 1; }; }
3425534252 fi
3426334260 cf_cv_header_path_bz2=
3426434261 cf_cv_library_path_bz2=
3426534262
34266 echo "${as_me:-configure}:34267: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5
34263 echo "${as_me:-configure}:34264: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5
3426734264
3426834265 cf_save_LIBS="$LIBS"
3426934266
3427034267 cat >conftest.$ac_ext <<_ACEOF
34271 #line 34272 "configure"
34268 #line 34269 "configure"
3427234269 #include "confdefs.h"
3427334270
3427434271 #include <stdio.h>
3428534282 }
3428634283 _ACEOF
3428734284 rm -f conftest.$ac_objext conftest$ac_exeext
34288 if { (eval echo "$as_me:34289: \"$ac_link\"") >&5
34285 if { (eval echo "$as_me:34286: \"$ac_link\"") >&5
3428934286 (eval $ac_link) 2>&5
3429034287 ac_status=$?
34291 echo "$as_me:34292: \$? = $ac_status" >&5
34288 echo "$as_me:34289: \$? = $ac_status" >&5
3429234289 (exit $ac_status); } &&
3429334290 { ac_try='test -s conftest$ac_exeext'
34294 { (eval echo "$as_me:34295: \"$ac_try\"") >&5
34291 { (eval echo "$as_me:34292: \"$ac_try\"") >&5
3429534292 (eval $ac_try) 2>&5
3429634293 ac_status=$?
34297 echo "$as_me:34298: \$? = $ac_status" >&5
34294 echo "$as_me:34295: \$? = $ac_status" >&5
3429834295 (exit $ac_status); }; }; then
3429934296
3430034297 cf_cv_find_linkage_bz2=yes
3430834305 LIBS="-lbz2 $cf_save_LIBS"
3430934306
3431034307 cat >conftest.$ac_ext <<_ACEOF
34311 #line 34312 "configure"
34308 #line 34309 "configure"
3431234309 #include "confdefs.h"
3431334310
3431434311 #include <stdio.h>
3432534322 }
3432634323 _ACEOF
3432734324 rm -f conftest.$ac_objext conftest$ac_exeext
34328 if { (eval echo "$as_me:34329: \"$ac_link\"") >&5
34325 if { (eval echo "$as_me:34326: \"$ac_link\"") >&5
3432934326 (eval $ac_link) 2>&5
3433034327 ac_status=$?
34331 echo "$as_me:34332: \$? = $ac_status" >&5
34328 echo "$as_me:34329: \$? = $ac_status" >&5
3433234329 (exit $ac_status); } &&
3433334330 { ac_try='test -s conftest$ac_exeext'
34334 { (eval echo "$as_me:34335: \"$ac_try\"") >&5
34331 { (eval echo "$as_me:34332: \"$ac_try\"") >&5
3433534332 (eval $ac_try) 2>&5
3433634333 ac_status=$?
34337 echo "$as_me:34338: \$? = $ac_status" >&5
34334 echo "$as_me:34335: \$? = $ac_status" >&5
3433834335 (exit $ac_status); }; }; then
3433934336
3434034337 cf_cv_find_linkage_bz2=yes
3435134348
3435234349 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6
3435334350
34354 echo "${as_me:-configure}:34355: testing find linkage for bz2 library ..." 1>&5
34355
34356 echo "${as_me:-configure}:34357: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
34351 echo "${as_me:-configure}:34352: testing find linkage for bz2 library ..." 1>&5
34352
34353 echo "${as_me:-configure}:34354: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
3435734354
3435834355 cf_save_CPPFLAGS="$CPPFLAGS"
3435934356 cf_test_CPPFLAGS="$CPPFLAGS"
3446634463 if test -d $cf_cv_header_path_bz2 ; then
3446734464 test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6
3446834465
34469 echo "${as_me:-configure}:34470: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5
34466 echo "${as_me:-configure}:34467: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5
3447034467
3447134468 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_bz2"
3447234469 cat >conftest.$ac_ext <<_ACEOF
34473 #line 34474 "configure"
34470 #line 34471 "configure"
3447434471 #include "confdefs.h"
3447534472
3447634473 #include <stdio.h>
3448734484 }
3448834485 _ACEOF
3448934486 rm -f conftest.$ac_objext
34490 if { (eval echo "$as_me:34491: \"$ac_compile\"") >&5
34487 if { (eval echo "$as_me:34488: \"$ac_compile\"") >&5
3449134488 (eval $ac_compile) 2>&5
3449234489 ac_status=$?
34493 echo "$as_me:34494: \$? = $ac_status" >&5
34490 echo "$as_me:34491: \$? = $ac_status" >&5
3449434491 (exit $ac_status); } &&
3449534492 { ac_try='test -s conftest.$ac_objext'
34496 { (eval echo "$as_me:34497: \"$ac_try\"") >&5
34493 { (eval echo "$as_me:34494: \"$ac_try\"") >&5
3449734494 (eval $ac_try) 2>&5
3449834495 ac_status=$?
34499 echo "$as_me:34500: \$? = $ac_status" >&5
34496 echo "$as_me:34497: \$? = $ac_status" >&5
3450034497 (exit $ac_status); }; }; then
3450134498
3450234499 test -n "$verbose" && echo " ... found bz2 headers in $cf_cv_header_path_bz2" 1>&6
3450334500
34504 echo "${as_me:-configure}:34505: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5
34501 echo "${as_me:-configure}:34502: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5
3450534502
3450634503 cf_cv_find_linkage_bz2=maybe
3450734504 cf_test_CPPFLAGS="$CPPFLAGS"
3451934516
3452034517 if test "$cf_cv_find_linkage_bz2" = maybe ; then
3452134518
34522 echo "${as_me:-configure}:34523: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
34519 echo "${as_me:-configure}:34520: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
3452334520
3452434521 cf_save_LIBS="$LIBS"
3452534522 cf_save_LDFLAGS="$LDFLAGS"
3452734524 CPPFLAGS="$cf_test_CPPFLAGS"
3452834525 LIBS="-lbz2 $cf_save_LIBS"
3452934526 cat >conftest.$ac_ext <<_ACEOF
34530 #line 34531 "configure"
34527 #line 34528 "configure"
3453134528 #include "confdefs.h"
3453234529
3453334530 #include <stdio.h>
3454434541 }
3454534542 _ACEOF
3454634543 rm -f conftest.$ac_objext conftest$ac_exeext
34547 if { (eval echo "$as_me:34548: \"$ac_link\"") >&5
34544 if { (eval echo "$as_me:34545: \"$ac_link\"") >&5
3454834545 (eval $ac_link) 2>&5
3454934546 ac_status=$?
34550 echo "$as_me:34551: \$? = $ac_status" >&5
34547 echo "$as_me:34548: \$? = $ac_status" >&5
3455134548 (exit $ac_status); } &&
3455234549 { ac_try='test -s conftest$ac_exeext'
34553 { (eval echo "$as_me:34554: \"$ac_try\"") >&5
34550 { (eval echo "$as_me:34551: \"$ac_try\"") >&5
3455434551 (eval $ac_try) 2>&5
3455534552 ac_status=$?
34556 echo "$as_me:34557: \$? = $ac_status" >&5
34553 echo "$as_me:34554: \$? = $ac_status" >&5
3455734554 (exit $ac_status); }; }; then
3455834555
3455934556 test -n "$verbose" && echo " ... found bz2 library in system" 1>&6
3456034557
34561 echo "${as_me:-configure}:34562: testing ... found bz2 library in system ..." 1>&5
34558 echo "${as_me:-configure}:34559: testing ... found bz2 library in system ..." 1>&5
3456234559
3456334560 cf_cv_find_linkage_bz2=yes
3456434561 else
3466134658 if test -d $cf_cv_library_path_bz2 ; then
3466234659 test -n "$verbose" && echo " ... testing $cf_cv_library_path_bz2" 1>&6
3466334660
34664 echo "${as_me:-configure}:34665: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5
34661 echo "${as_me:-configure}:34662: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5
3466534662
3466634663 CPPFLAGS="$cf_test_CPPFLAGS"
3466734664 LIBS="-lbz2 $cf_save_LIBS"
3466834665 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_bz2"
3466934666 cat >conftest.$ac_ext <<_ACEOF
34670 #line 34671 "configure"
34667 #line 34668 "configure"
3467134668 #include "confdefs.h"
3467234669
3467334670 #include <stdio.h>
3468434681 }
3468534682 _ACEOF
3468634683 rm -f conftest.$ac_objext conftest$ac_exeext
34687 if { (eval echo "$as_me:34688: \"$ac_link\"") >&5
34684 if { (eval echo "$as_me:34685: \"$ac_link\"") >&5
3468834685 (eval $ac_link) 2>&5
3468934686 ac_status=$?
34690 echo "$as_me:34691: \$? = $ac_status" >&5
34687 echo "$as_me:34688: \$? = $ac_status" >&5
3469134688 (exit $ac_status); } &&
3469234689 { ac_try='test -s conftest$ac_exeext'
34693 { (eval echo "$as_me:34694: \"$ac_try\"") >&5
34690 { (eval echo "$as_me:34691: \"$ac_try\"") >&5
3469434691 (eval $ac_try) 2>&5
3469534692 ac_status=$?
34696 echo "$as_me:34697: \$? = $ac_status" >&5
34693 echo "$as_me:34694: \$? = $ac_status" >&5
3469734694 (exit $ac_status); }; }; then
3469834695
3469934696 test -n "$verbose" && echo " ... found bz2 library in $cf_cv_library_path_bz2" 1>&6
3470034697
34701 echo "${as_me:-configure}:34702: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5
34698 echo "${as_me:-configure}:34699: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5
3470234699
3470334700 cf_cv_find_linkage_bz2=yes
3470434701 cf_cv_library_file_bz2="-lbz2"
3475734754 cf_save_CPPFLAGS=$CPPFLAGS
3475834755 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3475934756 cat >conftest.$ac_ext <<_ACEOF
34760 #line 34761 "configure"
34757 #line 34758 "configure"
3476134758 #include "confdefs.h"
3476234759 #include <stdio.h>
3476334760 int
3476934766 }
3477034767 _ACEOF
3477134768 rm -f conftest.$ac_objext
34772 if { (eval echo "$as_me:34773: \"$ac_compile\"") >&5
34769 if { (eval echo "$as_me:34770: \"$ac_compile\"") >&5
3477334770 (eval $ac_compile) 2>&5
3477434771 ac_status=$?
34775 echo "$as_me:34776: \$? = $ac_status" >&5
34772 echo "$as_me:34773: \$? = $ac_status" >&5
3477634773 (exit $ac_status); } &&
3477734774 { ac_try='test -s conftest.$ac_objext'
34778 { (eval echo "$as_me:34779: \"$ac_try\"") >&5
34775 { (eval echo "$as_me:34776: \"$ac_try\"") >&5
3477934776 (eval $ac_try) 2>&5
3478034777 ac_status=$?
34781 echo "$as_me:34782: \$? = $ac_status" >&5
34778 echo "$as_me:34779: \$? = $ac_status" >&5
3478234779 (exit $ac_status); }; }; then
3478334780 :
3478434781 else
3479534792 if test "$cf_have_incdir" = no ; then
3479634793 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3479734794
34798 echo "${as_me:-configure}:34799: testing adding $cf_add_incdir to include-path ..." 1>&5
34795 echo "${as_me:-configure}:34796: testing adding $cf_add_incdir to include-path ..." 1>&5
3479934796
3480034797 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3480134798
3482934826 if test "$cf_have_libdir" = no ; then
3483034827 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3483134828
34832 echo "${as_me:-configure}:34833: testing adding $cf_add_libdir to library-path ..." 1>&5
34829 echo "${as_me:-configure}:34830: testing adding $cf_add_libdir to library-path ..." 1>&5
3483334830
3483434831 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3483534832 fi
3484034837 LIBS="-lbz2 $LIBS"
3484134838
3484234839 else
34843 { echo "$as_me:34844: WARNING: Cannot find bz2 library" >&5
34840 { echo "$as_me:34841: WARNING: Cannot find bz2 library" >&5
3484434841 echo "$as_me: WARNING: Cannot find bz2 library" >&2;}
3484534842 fi
3484634843
3485134848
3485234849 fi
3485334850
34854 echo "$as_me:34855: checking if you want to use zlib for decompression of some gzip files" >&5
34851 echo "$as_me:34852: checking if you want to use zlib for decompression of some gzip files" >&5
3485534852 echo $ECHO_N "checking if you want to use zlib for decompression of some gzip files... $ECHO_C" >&6
3485634853
3485734854 # Check whether --with-zlib or --without-zlib was given.
3486134858 else
3486234859 use_zlib=no
3486334860 fi;
34864 echo "$as_me:34865: result: $use_zlib" >&5
34861 echo "$as_me:34862: result: $use_zlib" >&5
3486534862 echo "${ECHO_T}$use_zlib" >&6
3486634863
3486734864 if test ".$use_zlib" != ".no" ; then
3490034897 cf_save_CPPFLAGS=$CPPFLAGS
3490134898 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3490234899 cat >conftest.$ac_ext <<_ACEOF
34903 #line 34904 "configure"
34900 #line 34901 "configure"
3490434901 #include "confdefs.h"
3490534902 #include <stdio.h>
3490634903 int
3491234909 }
3491334910 _ACEOF
3491434911 rm -f conftest.$ac_objext
34915 if { (eval echo "$as_me:34916: \"$ac_compile\"") >&5
34912 if { (eval echo "$as_me:34913: \"$ac_compile\"") >&5
3491634913 (eval $ac_compile) 2>&5
3491734914 ac_status=$?
34918 echo "$as_me:34919: \$? = $ac_status" >&5
34915 echo "$as_me:34916: \$? = $ac_status" >&5
3491934916 (exit $ac_status); } &&
3492034917 { ac_try='test -s conftest.$ac_objext'
34921 { (eval echo "$as_me:34922: \"$ac_try\"") >&5
34918 { (eval echo "$as_me:34919: \"$ac_try\"") >&5
3492234919 (eval $ac_try) 2>&5
3492334920 ac_status=$?
34924 echo "$as_me:34925: \$? = $ac_status" >&5
34921 echo "$as_me:34922: \$? = $ac_status" >&5
3492534922 (exit $ac_status); }; }; then
3492634923 :
3492734924 else
3493834935 if test "$cf_have_incdir" = no ; then
3493934936 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3494034937
34941 echo "${as_me:-configure}:34942: testing adding $cf_add_incdir to include-path ..." 1>&5
34938 echo "${as_me:-configure}:34939: testing adding $cf_add_incdir to include-path ..." 1>&5
3494234939
3494334940 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3494434941
3497934976 cf_save_CPPFLAGS=$CPPFLAGS
3498034977 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3498134978 cat >conftest.$ac_ext <<_ACEOF
34982 #line 34983 "configure"
34979 #line 34980 "configure"
3498334980 #include "confdefs.h"
3498434981 #include <stdio.h>
3498534982 int
3499134988 }
3499234989 _ACEOF
3499334990 rm -f conftest.$ac_objext
34994 if { (eval echo "$as_me:34995: \"$ac_compile\"") >&5
34991 if { (eval echo "$as_me:34992: \"$ac_compile\"") >&5
3499534992 (eval $ac_compile) 2>&5
3499634993 ac_status=$?
34997 echo "$as_me:34998: \$? = $ac_status" >&5
34994 echo "$as_me:34995: \$? = $ac_status" >&5
3499834995 (exit $ac_status); } &&
3499934996 { ac_try='test -s conftest.$ac_objext'
35000 { (eval echo "$as_me:35001: \"$ac_try\"") >&5
34997 { (eval echo "$as_me:34998: \"$ac_try\"") >&5
3500134998 (eval $ac_try) 2>&5
3500234999 ac_status=$?
35003 echo "$as_me:35004: \$? = $ac_status" >&5
35000 echo "$as_me:35001: \$? = $ac_status" >&5
3500435001 (exit $ac_status); }; }; then
3500535002 :
3500635003 else
3501735014 if test "$cf_have_incdir" = no ; then
3501835015 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3501935016
35020 echo "${as_me:-configure}:35021: testing adding $cf_add_incdir to include-path ..." 1>&5
35017 echo "${as_me:-configure}:35018: testing adding $cf_add_incdir to include-path ..." 1>&5
3502135018
3502235019 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3502335020
3503335030 fi
3503435031
3503535032 else
35036 { { echo "$as_me:35037: error: cannot find under $use_zlib" >&5
35033 { { echo "$as_me:35034: error: cannot find under $use_zlib" >&5
3503735034 echo "$as_me: error: cannot find under $use_zlib" >&2;}
3503835035 { (exit 1); exit 1; }; }
3503935036 fi
3505835055 if test "$cf_have_libdir" = no ; then
3505935056 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3506035057
35061 echo "${as_me:-configure}:35062: testing adding $cf_add_libdir to library-path ..." 1>&5
35058 echo "${as_me:-configure}:35059: testing adding $cf_add_libdir to library-path ..." 1>&5
3506235059
3506335060 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3506435061 fi
3508735084 if test "$cf_have_libdir" = no ; then
3508835085 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3508935086
35090 echo "${as_me:-configure}:35091: testing adding $cf_add_libdir to library-path ..." 1>&5
35087 echo "${as_me:-configure}:35088: testing adding $cf_add_libdir to library-path ..." 1>&5
3509135088
3509235089 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3509335090 fi
3509635093 fi
3509735094
3509835095 else
35099 { { echo "$as_me:35100: error: cannot find under $use_zlib" >&5
35096 { { echo "$as_me:35097: error: cannot find under $use_zlib" >&5
3510035097 echo "$as_me: error: cannot find under $use_zlib" >&2;}
3510135098 { (exit 1); exit 1; }; }
3510235099 fi
3511035107 cf_cv_header_path_z=
3511135108 cf_cv_library_path_z=
3511235109
35113 echo "${as_me:-configure}:35114: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5
35110 echo "${as_me:-configure}:35111: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5
3511435111
3511535112 cf_save_LIBS="$LIBS"
3511635113
3511735114 cat >conftest.$ac_ext <<_ACEOF
35118 #line 35119 "configure"
35115 #line 35116 "configure"
3511935116 #include "confdefs.h"
3512035117
3512135118 #include <zlib.h>
3513135128 }
3513235129 _ACEOF
3513335130 rm -f conftest.$ac_objext conftest$ac_exeext
35134 if { (eval echo "$as_me:35135: \"$ac_link\"") >&5
35131 if { (eval echo "$as_me:35132: \"$ac_link\"") >&5
3513535132 (eval $ac_link) 2>&5
3513635133 ac_status=$?
35137 echo "$as_me:35138: \$? = $ac_status" >&5
35134 echo "$as_me:35135: \$? = $ac_status" >&5
3513835135 (exit $ac_status); } &&
3513935136 { ac_try='test -s conftest$ac_exeext'
35140 { (eval echo "$as_me:35141: \"$ac_try\"") >&5
35137 { (eval echo "$as_me:35138: \"$ac_try\"") >&5
3514135138 (eval $ac_try) 2>&5
3514235139 ac_status=$?
35143 echo "$as_me:35144: \$? = $ac_status" >&5
35140 echo "$as_me:35141: \$? = $ac_status" >&5
3514435141 (exit $ac_status); }; }; then
3514535142
3514635143 cf_cv_find_linkage_z=yes
3515435151 LIBS="-lz $cf_save_LIBS"
3515535152
3515635153 cat >conftest.$ac_ext <<_ACEOF
35157 #line 35158 "configure"
35154 #line 35155 "configure"
3515835155 #include "confdefs.h"
3515935156
3516035157 #include <zlib.h>
3517035167 }
3517135168 _ACEOF
3517235169 rm -f conftest.$ac_objext conftest$ac_exeext
35173 if { (eval echo "$as_me:35174: \"$ac_link\"") >&5
35170 if { (eval echo "$as_me:35171: \"$ac_link\"") >&5
3517435171 (eval $ac_link) 2>&5
3517535172 ac_status=$?
35176 echo "$as_me:35177: \$? = $ac_status" >&5
35173 echo "$as_me:35174: \$? = $ac_status" >&5
3517735174 (exit $ac_status); } &&
3517835175 { ac_try='test -s conftest$ac_exeext'
35179 { (eval echo "$as_me:35180: \"$ac_try\"") >&5
35176 { (eval echo "$as_me:35177: \"$ac_try\"") >&5
3518035177 (eval $ac_try) 2>&5
3518135178 ac_status=$?
35182 echo "$as_me:35183: \$? = $ac_status" >&5
35179 echo "$as_me:35180: \$? = $ac_status" >&5
3518335180 (exit $ac_status); }; }; then
3518435181
3518535182 cf_cv_find_linkage_z=yes
3519635193
3519735194 test -n "$verbose" && echo " find linkage for z library" 1>&6
3519835195
35199 echo "${as_me:-configure}:35200: testing find linkage for z library ..." 1>&5
35200
35201 echo "${as_me:-configure}:35202: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5
35196 echo "${as_me:-configure}:35197: testing find linkage for z library ..." 1>&5
35197
35198 echo "${as_me:-configure}:35199: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5
3520235199
3520335200 cf_save_CPPFLAGS="$CPPFLAGS"
3520435201 cf_test_CPPFLAGS="$CPPFLAGS"
3531135308 if test -d $cf_cv_header_path_z ; then
3531235309 test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6
3531335310
35314 echo "${as_me:-configure}:35315: testing ... testing $cf_cv_header_path_z ..." 1>&5
35311 echo "${as_me:-configure}:35312: testing ... testing $cf_cv_header_path_z ..." 1>&5
3531535312
3531635313 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_z"
3531735314 cat >conftest.$ac_ext <<_ACEOF
35318 #line 35319 "configure"
35315 #line 35316 "configure"
3531935316 #include "confdefs.h"
3532035317
3532135318 #include <zlib.h>
3533135328 }
3533235329 _ACEOF
3533335330 rm -f conftest.$ac_objext
35334 if { (eval echo "$as_me:35335: \"$ac_compile\"") >&5
35331 if { (eval echo "$as_me:35332: \"$ac_compile\"") >&5
3533535332 (eval $ac_compile) 2>&5
3533635333 ac_status=$?
35337 echo "$as_me:35338: \$? = $ac_status" >&5
35334 echo "$as_me:35335: \$? = $ac_status" >&5
3533835335 (exit $ac_status); } &&
3533935336 { ac_try='test -s conftest.$ac_objext'
35340 { (eval echo "$as_me:35341: \"$ac_try\"") >&5
35337 { (eval echo "$as_me:35338: \"$ac_try\"") >&5
3534135338 (eval $ac_try) 2>&5
3534235339 ac_status=$?
35343 echo "$as_me:35344: \$? = $ac_status" >&5
35340 echo "$as_me:35341: \$? = $ac_status" >&5
3534435341 (exit $ac_status); }; }; then
3534535342
3534635343 test -n "$verbose" && echo " ... found z headers in $cf_cv_header_path_z" 1>&6
3534735344
35348 echo "${as_me:-configure}:35349: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5
35345 echo "${as_me:-configure}:35346: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5
3534935346
3535035347 cf_cv_find_linkage_z=maybe
3535135348 cf_test_CPPFLAGS="$CPPFLAGS"
3536335360
3536435361 if test "$cf_cv_find_linkage_z" = maybe ; then
3536535362
35366 echo "${as_me:-configure}:35367: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5
35363 echo "${as_me:-configure}:35364: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5
3536735364
3536835365 cf_save_LIBS="$LIBS"
3536935366 cf_save_LDFLAGS="$LDFLAGS"
3537135368 CPPFLAGS="$cf_test_CPPFLAGS"
3537235369 LIBS="-lz $cf_save_LIBS"
3537335370 cat >conftest.$ac_ext <<_ACEOF
35374 #line 35375 "configure"
35371 #line 35372 "configure"
3537535372 #include "confdefs.h"
3537635373
3537735374 #include <zlib.h>
3538735384 }
3538835385 _ACEOF
3538935386 rm -f conftest.$ac_objext conftest$ac_exeext
35390 if { (eval echo "$as_me:35391: \"$ac_link\"") >&5
35387 if { (eval echo "$as_me:35388: \"$ac_link\"") >&5
3539135388 (eval $ac_link) 2>&5
3539235389 ac_status=$?
35393 echo "$as_me:35394: \$? = $ac_status" >&5
35390 echo "$as_me:35391: \$? = $ac_status" >&5
3539435391 (exit $ac_status); } &&
3539535392 { ac_try='test -s conftest$ac_exeext'
35396 { (eval echo "$as_me:35397: \"$ac_try\"") >&5
35393 { (eval echo "$as_me:35394: \"$ac_try\"") >&5
3539735394 (eval $ac_try) 2>&5
3539835395 ac_status=$?
35399 echo "$as_me:35400: \$? = $ac_status" >&5
35396 echo "$as_me:35397: \$? = $ac_status" >&5
3540035397 (exit $ac_status); }; }; then
3540135398
3540235399 test -n "$verbose" && echo " ... found z library in system" 1>&6
3540335400
35404 echo "${as_me:-configure}:35405: testing ... found z library in system ..." 1>&5
35401 echo "${as_me:-configure}:35402: testing ... found z library in system ..." 1>&5
3540535402
3540635403 cf_cv_find_linkage_z=yes
3540735404 else
3550435501 if test -d $cf_cv_library_path_z ; then
3550535502 test -n "$verbose" && echo " ... testing $cf_cv_library_path_z" 1>&6
3550635503
35507 echo "${as_me:-configure}:35508: testing ... testing $cf_cv_library_path_z ..." 1>&5
35504 echo "${as_me:-configure}:35505: testing ... testing $cf_cv_library_path_z ..." 1>&5
3550835505
3550935506 CPPFLAGS="$cf_test_CPPFLAGS"
3551035507 LIBS="-lz $cf_save_LIBS"
3551135508 LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_z"
3551235509 cat >conftest.$ac_ext <<_ACEOF
35513 #line 35514 "configure"
35510 #line 35511 "configure"
3551435511 #include "confdefs.h"
3551535512
3551635513 #include <zlib.h>
3552635523 }
3552735524 _ACEOF
3552835525 rm -f conftest.$ac_objext conftest$ac_exeext
35529 if { (eval echo "$as_me:35530: \"$ac_link\"") >&5
35526 if { (eval echo "$as_me:35527: \"$ac_link\"") >&5
3553035527 (eval $ac_link) 2>&5
3553135528 ac_status=$?
35532 echo "$as_me:35533: \$? = $ac_status" >&5
35529 echo "$as_me:35530: \$? = $ac_status" >&5
3553335530 (exit $ac_status); } &&
3553435531 { ac_try='test -s conftest$ac_exeext'
35535 { (eval echo "$as_me:35536: \"$ac_try\"") >&5
35532 { (eval echo "$as_me:35533: \"$ac_try\"") >&5
3553635533 (eval $ac_try) 2>&5
3553735534 ac_status=$?
35538 echo "$as_me:35539: \$? = $ac_status" >&5
35535 echo "$as_me:35536: \$? = $ac_status" >&5
3553935536 (exit $ac_status); }; }; then
3554035537
3554135538 test -n "$verbose" && echo " ... found z library in $cf_cv_library_path_z" 1>&6
3554235539
35543 echo "${as_me:-configure}:35544: testing ... found z library in $cf_cv_library_path_z ..." 1>&5
35540 echo "${as_me:-configure}:35541: testing ... found z library in $cf_cv_library_path_z ..." 1>&5
3554435541
3554535542 cf_cv_find_linkage_z=yes
3554635543 cf_cv_library_file_z="-lz"
3559935596 cf_save_CPPFLAGS=$CPPFLAGS
3560035597 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3560135598 cat >conftest.$ac_ext <<_ACEOF
35602 #line 35603 "configure"
35599 #line 35600 "configure"
3560335600 #include "confdefs.h"
3560435601 #include <stdio.h>
3560535602 int
3561135608 }
3561235609 _ACEOF
3561335610 rm -f conftest.$ac_objext
35614 if { (eval echo "$as_me:35615: \"$ac_compile\"") >&5
35611 if { (eval echo "$as_me:35612: \"$ac_compile\"") >&5
3561535612 (eval $ac_compile) 2>&5
3561635613 ac_status=$?
35617 echo "$as_me:35618: \$? = $ac_status" >&5
35614 echo "$as_me:35615: \$? = $ac_status" >&5
3561835615 (exit $ac_status); } &&
3561935616 { ac_try='test -s conftest.$ac_objext'
35620 { (eval echo "$as_me:35621: \"$ac_try\"") >&5
35617 { (eval echo "$as_me:35618: \"$ac_try\"") >&5
3562135618 (eval $ac_try) 2>&5
3562235619 ac_status=$?
35623 echo "$as_me:35624: \$? = $ac_status" >&5
35620 echo "$as_me:35621: \$? = $ac_status" >&5
3562435621 (exit $ac_status); }; }; then
3562535622 :
3562635623 else
3563735634 if test "$cf_have_incdir" = no ; then
3563835635 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6
3563935636
35640 echo "${as_me:-configure}:35641: testing adding $cf_add_incdir to include-path ..." 1>&5
35637 echo "${as_me:-configure}:35638: testing adding $cf_add_incdir to include-path ..." 1>&5
3564135638
3564235639 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3564335640
3567135668 if test "$cf_have_libdir" = no ; then
3567235669 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6
3567335670
35674 echo "${as_me:-configure}:35675: testing adding $cf_add_libdir to library-path ..." 1>&5
35671 echo "${as_me:-configure}:35672: testing adding $cf_add_libdir to library-path ..." 1>&5
3567535672
3567635673 LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3567735674 fi
3568235679 LIBS="-lz $LIBS"
3568335680
3568435681 else
35685 { echo "$as_me:35686: WARNING: Cannot find z library" >&5
35682 { echo "$as_me:35683: WARNING: Cannot find z library" >&5
3568635683 echo "$as_me: WARNING: Cannot find z library" >&2;}
3568735684 fi
3568835685
3569135688
3569235689 do
3569335690 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
35694 echo "$as_me:35695: checking for $ac_func" >&5
35691 echo "$as_me:35692: checking for $ac_func" >&5
3569535692 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
3569635693 if eval "test \"\${$as_ac_var+set}\" = set"; then
3569735694 echo $ECHO_N "(cached) $ECHO_C" >&6
3569835695 else
3569935696 cat >conftest.$ac_ext <<_ACEOF
35700 #line 35701 "configure"
35697 #line 35698 "configure"
3570135698 #include "confdefs.h"
3570235699 /* System header to define __stub macros and hopefully few prototypes,
3570335700 which can conflict with char $ac_func (); below. */
3572835725 }
3572935726 _ACEOF
3573035727 rm -f conftest.$ac_objext conftest$ac_exeext
35731 if { (eval echo "$as_me:35732: \"$ac_link\"") >&5
35728 if { (eval echo "$as_me:35729: \"$ac_link\"") >&5
3573235729 (eval $ac_link) 2>&5
3573335730 ac_status=$?
35734 echo "$as_me:35735: \$? = $ac_status" >&5
35731 echo "$as_me:35732: \$? = $ac_status" >&5
3573535732 (exit $ac_status); } &&
3573635733 { ac_try='test -s conftest$ac_exeext'
35737 { (eval echo "$as_me:35738: \"$ac_try\"") >&5
35734 { (eval echo "$as_me:35735: \"$ac_try\"") >&5
3573835735 (eval $ac_try) 2>&5
3573935736 ac_status=$?
35740 echo "$as_me:35741: \$? = $ac_status" >&5
35737 echo "$as_me:35738: \$? = $ac_status" >&5
3574135738 (exit $ac_status); }; }; then
3574235739 eval "$as_ac_var=yes"
3574335740 else
3574735744 fi
3574835745 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3574935746 fi
35750 echo "$as_me:35751: result: `eval echo '${'$as_ac_var'}'`" >&5
35747 echo "$as_me:35748: result: `eval echo '${'$as_ac_var'}'`" >&5
3575135748 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
3575235749 if test `eval echo '${'$as_ac_var'}'` = yes; then
3575335750 cat >>confdefs.h <<EOF
3576435761
3576535762 fi
3576635763
35767 echo "$as_me:35768: checking if you want to exclude FINGER code" >&5
35764 echo "$as_me:35765: checking if you want to exclude FINGER code" >&5
3576835765 echo $ECHO_N "checking if you want to exclude FINGER code... $ECHO_C" >&6
3576935766
3577035767 # Check whether --enable-finger or --disable-finger was given.
3578135778 use_finger=no
3578235779
3578335780 fi;
35784 echo "$as_me:35785: result: $use_finger" >&5
35781 echo "$as_me:35782: result: $use_finger" >&5
3578535782 echo "${ECHO_T}$use_finger" >&6
3578635783 test $use_finger != "no" &&
3578735784 cat >>confdefs.h <<\EOF
3578835785 #define DISABLE_FINGER 1
3578935786 EOF
3579035787
35791 echo "$as_me:35792: checking if you want to exclude GOPHER code" >&5
35788 echo "$as_me:35789: checking if you want to exclude GOPHER code" >&5
3579235789 echo $ECHO_N "checking if you want to exclude GOPHER code... $ECHO_C" >&6
3579335790
3579435791 # Check whether --enable-gopher or --disable-gopher was given.
3580535802 use_gopher=no
3580635803
3580735804 fi;
35808 echo "$as_me:35809: result: $use_gopher" >&5
35805 echo "$as_me:35806: result: $use_gopher" >&5
3580935806 echo "${ECHO_T}$use_gopher" >&6
3581035807 test $use_gopher != "no" &&
3581135808 cat >>confdefs.h <<\EOF
3581235809 #define DISABLE_GOPHER 1
3581335810 EOF
3581435811
35815 echo "$as_me:35816: checking if you want to exclude NEWS code" >&5
35812 echo "$as_me:35813: checking if you want to exclude NEWS code" >&5
3581635813 echo $ECHO_N "checking if you want to exclude NEWS code... $ECHO_C" >&6
3581735814
3581835815 # Check whether --enable-news or --disable-news was given.
3582935826 use_news=no
3583035827
3583135828 fi;
35832 echo "$as_me:35833: result: $use_news" >&5
35829 echo "$as_me:35830: result: $use_news" >&5
3583335830 echo "${ECHO_T}$use_news" >&6
3583435831 test $use_news != "no" &&
3583535832 cat >>confdefs.h <<\EOF
3583635833 #define DISABLE_NEWS 1
3583735834 EOF
3583835835
35839 echo "$as_me:35840: checking if you want to exclude FTP code" >&5
35836 echo "$as_me:35837: checking if you want to exclude FTP code" >&5
3584035837 echo $ECHO_N "checking if you want to exclude FTP code... $ECHO_C" >&6
3584135838
3584235839 # Check whether --enable-ftp or --disable-ftp was given.
3585335850 use_ftp=no
3585435851
3585535852 fi;
35856 echo "$as_me:35857: result: $use_ftp" >&5
35853 echo "$as_me:35854: result: $use_ftp" >&5
3585735854 echo "${ECHO_T}$use_ftp" >&6
3585835855 test $use_ftp != "no" &&
3585935856 cat >>confdefs.h <<\EOF
3586035857 #define DISABLE_FTP 1
3586135858 EOF
3586235859
35863 echo "$as_me:35864: checking if you want to include WAIS code" >&5
35860 echo "$as_me:35861: checking if you want to include WAIS code" >&5
3586435861 echo $ECHO_N "checking if you want to include WAIS code... $ECHO_C" >&6
3586535862
3586635863 # Check whether --enable-wais or --disable-wais was given.
3587735874 use_wais=no
3587835875
3587935876 fi;
35880 echo "$as_me:35881: result: $use_wais" >&5
35877 echo "$as_me:35878: result: $use_wais" >&5
3588135878 echo "${ECHO_T}$use_wais" >&6
3588235879
3588335880 MAKE_WAIS="#"
3588435881 if test $use_wais != "no"
3588535882 then
35886 echo "$as_me:35887: checking for fs_free in -lwais" >&5
35883 echo "$as_me:35884: checking for fs_free in -lwais" >&5
3588735884 echo $ECHO_N "checking for fs_free in -lwais... $ECHO_C" >&6
3588835885 if test "${ac_cv_lib_wais_fs_free+set}" = set; then
3588935886 echo $ECHO_N "(cached) $ECHO_C" >&6
3589135888 ac_check_lib_save_LIBS=$LIBS
3589235889 LIBS="-lwais $LIBS"
3589335890 cat >conftest.$ac_ext <<_ACEOF
35894 #line 35895 "configure"
35891 #line 35892 "configure"
3589535892 #include "confdefs.h"
3589635893
3589735894 /* Override any gcc2 internal prototype to avoid an error. */
3591035907 }
3591135908 _ACEOF
3591235909 rm -f conftest.$ac_objext conftest$ac_exeext
35913 if { (eval echo "$as_me:35914: \"$ac_link\"") >&5
35910 if { (eval echo "$as_me:35911: \"$ac_link\"") >&5
3591435911 (eval $ac_link) 2>&5
3591535912 ac_status=$?
35916 echo "$as_me:35917: \$? = $ac_status" >&5
35913 echo "$as_me:35914: \$? = $ac_status" >&5
3591735914 (exit $ac_status); } &&
3591835915 { ac_try='test -s conftest$ac_exeext'
35919 { (eval echo "$as_me:35920: \"$ac_try\"") >&5
35916 { (eval echo "$as_me:35917: \"$ac_try\"") >&5
3592035917 (eval $ac_try) 2>&5
3592135918 ac_status=$?
35922 echo "$as_me:35923: \$? = $ac_status" >&5
35919 echo "$as_me:35920: \$? = $ac_status" >&5
3592335920 (exit $ac_status); }; }; then
3592435921 ac_cv_lib_wais_fs_free=yes
3592535922 else
3593035927 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3593135928 LIBS=$ac_check_lib_save_LIBS
3593235929 fi
35933 echo "$as_me:35934: result: $ac_cv_lib_wais_fs_free" >&5
35930 echo "$as_me:35931: result: $ac_cv_lib_wais_fs_free" >&5
3593435931 echo "${ECHO_T}$ac_cv_lib_wais_fs_free" >&6
3593535932 if test $ac_cv_lib_wais_fs_free = yes; then
3593635933
35937 echo "$as_me:35938: checking if -lm needed for math functions" >&5
35934 echo "$as_me:35935: checking if -lm needed for math functions" >&5
3593835935 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6
3593935936 if test "${cf_cv_need_libm+set}" = set; then
3594035937 echo $ECHO_N "(cached) $ECHO_C" >&6
3594135938 else
3594235939
3594335940 cat >conftest.$ac_ext <<_ACEOF
35944 #line 35945 "configure"
35941 #line 35942 "configure"
3594535942 #include "confdefs.h"
3594635943
3594735944 #include <stdio.h>
3595635953 }
3595735954 _ACEOF
3595835955 rm -f conftest.$ac_objext conftest$ac_exeext
35959 if { (eval echo "$as_me:35960: \"$ac_link\"") >&5
35956 if { (eval echo "$as_me:35957: \"$ac_link\"") >&5
3596035957 (eval $ac_link) 2>&5
3596135958 ac_status=$?
35962 echo "$as_me:35963: \$? = $ac_status" >&5
35959 echo "$as_me:35960: \$? = $ac_status" >&5
3596335960 (exit $ac_status); } &&
3596435961 { ac_try='test -s conftest$ac_exeext'
35965 { (eval echo "$as_me:35966: \"$ac_try\"") >&5
35962 { (eval echo "$as_me:35963: \"$ac_try\"") >&5
3596635963 (eval $ac_try) 2>&5
3596735964 ac_status=$?
35968 echo "$as_me:35969: \$? = $ac_status" >&5
35965 echo "$as_me:35966: \$? = $ac_status" >&5
3596935966 (exit $ac_status); }; }; then
3597035967 cf_cv_need_libm=no
3597135968 else
3597535972 fi
3597635973 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3597735974 fi
35978 echo "$as_me:35979: result: $cf_cv_need_libm" >&5
35975 echo "$as_me:35976: result: $cf_cv_need_libm" >&5
3597935976 echo "${ECHO_T}$cf_cv_need_libm" >&6
3598035977 if test "$cf_cv_need_libm" = yes
3598135978 then
3598935986 for ac_header in wais.h
3599035987 do
3599135988 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
35992 echo "$as_me:35993: checking for $ac_header" >&5
35989 echo "$as_me:35990: checking for $ac_header" >&5
3599335990 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
3599435991 if eval "test \"\${$as_ac_Header+set}\" = set"; then
3599535992 echo $ECHO_N "(cached) $ECHO_C" >&6
3599635993 else
3599735994 cat >conftest.$ac_ext <<_ACEOF
35998 #line 35999 "configure"
35995 #line 35996 "configure"
3599935996 #include "confdefs.h"
3600035997 #include <$ac_header>
3600135998 _ACEOF
36002 if { (eval echo "$as_me:36003: \"$ac_cpp conftest.$ac_ext\"") >&5
35999 if { (eval echo "$as_me:36000: \"$ac_cpp conftest.$ac_ext\"") >&5
3600336000 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
3600436001 ac_status=$?
3600536002 egrep -v '^ *\+' conftest.er1 >conftest.err
3600636003 rm -f conftest.er1
3600736004 cat conftest.err >&5
36008 echo "$as_me:36009: \$? = $ac_status" >&5
36005 echo "$as_me:36006: \$? = $ac_status" >&5
3600936006 (exit $ac_status); } >/dev/null; then
3601036007 if test -s conftest.err; then
3601136008 ac_cpp_err=$ac_c_preproc_warn_flag
3602436021 fi
3602536022 rm -f conftest.err conftest.$ac_ext
3602636023 fi
36027 echo "$as_me:36028: result: `eval echo '${'$as_ac_Header'}'`" >&5
36024 echo "$as_me:36025: result: `eval echo '${'$as_ac_Header'}'`" >&5
3602836025 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
3602936026 if test `eval echo '${'$as_ac_Header'}'` = yes; then
3603036027 cat >>confdefs.h <<EOF
3603736034 MAKE_WAIS=
3603836035
3603936036 else
36040 { echo "$as_me:36041: WARNING: could not find WAIS library" >&5
36037 { echo "$as_me:36038: WARNING: could not find WAIS library" >&5
3604136038 echo "$as_me: WARNING: could not find WAIS library" >&2;}
3604236039 fi
3604336040
3604536042
3604636043 # All DirEd functions that were enabled on compilation can be disabled
3604736044 # or modified at run time via DIRED_MENU symbols in lynx.cfg.
36048 echo "$as_me:36049: checking if directory-editor code should be used" >&5
36045 echo "$as_me:36046: checking if directory-editor code should be used" >&5
3604936046 echo $ECHO_N "checking if directory-editor code should be used... $ECHO_C" >&6
3605036047
3605136048 # Check whether --enable-dired or --disable-dired was given.
3606236059 use_dired=yes
3606336060
3606436061 fi;
36065 echo "$as_me:36066: result: $use_dired" >&5
36062 echo "$as_me:36063: result: $use_dired" >&5
3606636063 echo "${ECHO_T}$use_dired" >&6
3606736064
3606836065 if test ".$use_dired" != ".no" ; then
3607236069 #define DIRED_SUPPORT 1
3607336070 EOF
3607436071
36075 echo "$as_me:36076: checking if you wish to allow extracting from archives via DirEd" >&5
36072 echo "$as_me:36073: checking if you wish to allow extracting from archives via DirEd" >&5
3607636073 echo $ECHO_N "checking if you wish to allow extracting from archives via DirEd... $ECHO_C" >&6
3607736074
3607836075 # Check whether --enable-dired-dearchive or --disable-dired-dearchive was given.
3608936086 else
3609036087 enableval=yes
3609136088 fi;
36092 echo "$as_me:36093: result: $enableval" >&5
36089 echo "$as_me:36090: result: $enableval" >&5
3609336090 echo "${ECHO_T}$enableval" >&6
3609436091
36095 echo "$as_me:36096: checking if DirEd mode should override keys" >&5
36092 echo "$as_me:36093: checking if DirEd mode should override keys" >&5
3609636093 echo $ECHO_N "checking if DirEd mode should override keys... $ECHO_C" >&6
3609736094
3609836095 # Check whether --enable-dired-override or --disable-dired-override was given.
3611636113 EOF
3611736114
3611836115 fi;
36119 echo "$as_me:36120: result: $enableval" >&5
36116 echo "$as_me:36117: result: $enableval" >&5
3612036117 echo "${ECHO_T}$enableval" >&6
3612136118
36122 echo "$as_me:36123: checking if you wish to allow permissions commands via DirEd" >&5
36119 echo "$as_me:36120: checking if you wish to allow permissions commands via DirEd" >&5
3612336120 echo $ECHO_N "checking if you wish to allow permissions commands via DirEd... $ECHO_C" >&6
3612436121
3612536122 # Check whether --enable-dired-permit or --disable-dired-permit was given.
3614336140 EOF
3614436141
3614536142 fi;
36146 echo "$as_me:36147: result: $enableval" >&5
36143 echo "$as_me:36144: result: $enableval" >&5
3614736144 echo "${ECHO_T}$enableval" >&6
3614836145
36149 echo "$as_me:36150: checking if you wish to allow executable-permission commands via DirEd" >&5
36146 echo "$as_me:36147: checking if you wish to allow executable-permission commands via DirEd" >&5
3615036147 echo $ECHO_N "checking if you wish to allow executable-permission commands via DirEd... $ECHO_C" >&6
3615136148
3615236149 # Check whether --enable-dired-xpermit or --disable-dired-xpermit was given.
3616336160 else
3616436161 enableval=yes
3616536162 fi;
36166 echo "$as_me:36167: result: $enableval" >&5
36163 echo "$as_me:36164: result: $enableval" >&5
3616736164 echo "${ECHO_T}$enableval" >&6
3616836165
36169 echo "$as_me:36170: checking if you wish to allow \"tar\" commands from DirEd" >&5
36166 echo "$as_me:36167: checking if you wish to allow \"tar\" commands from DirEd" >&5
3617036167 echo $ECHO_N "checking if you wish to allow \"tar\" commands from DirEd... $ECHO_C" >&6
3617136168
3617236169 # Check whether --enable-dired-tar or --disable-dired-tar was given.
3619036187 EOF
3619136188
3619236189 fi;
36193 echo "$as_me:36194: result: $enableval" >&5
36190 echo "$as_me:36191: result: $enableval" >&5
3619436191 echo "${ECHO_T}$enableval" >&6
3619536192
36196 echo "$as_me:36197: checking if you wish to allow \"uudecode\" commands from DirEd" >&5
36193 echo "$as_me:36194: checking if you wish to allow \"uudecode\" commands from DirEd" >&5
3619736194 echo $ECHO_N "checking if you wish to allow \"uudecode\" commands from DirEd... $ECHO_C" >&6
3619836195
3619936196 # Check whether --enable-dired-uudecode or --disable-dired-uudecode was given.
3621736214 EOF
3621836215
3621936216 fi;
36220 echo "$as_me:36221: result: $enableval" >&5
36217 echo "$as_me:36218: result: $enableval" >&5
3622136218 echo "${ECHO_T}$enableval" >&6
3622236219
36223 echo "$as_me:36224: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5
36220 echo "$as_me:36221: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5
3622436221 echo $ECHO_N "checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd... $ECHO_C" >&6
3622536222
3622636223 # Check whether --enable-dired-zip or --disable-dired-zip was given.
3624436241 EOF
3624536242
3624636243 fi;
36247 echo "$as_me:36248: result: $enableval" >&5
36244 echo "$as_me:36245: result: $enableval" >&5
3624836245 echo "${ECHO_T}$enableval" >&6
3624936246
36250 echo "$as_me:36251: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5
36247 echo "$as_me:36248: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5
3625136248 echo $ECHO_N "checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd... $ECHO_C" >&6
3625236249
3625336250 # Check whether --enable-dired-gzip or --disable-dired-gzip was given.
3627136268 EOF
3627236269
3627336270 fi;
36274 echo "$as_me:36275: result: $enableval" >&5
36271 echo "$as_me:36272: result: $enableval" >&5
3627536272 echo "${ECHO_T}$enableval" >&6
3627636273 fi
3627736274
36278 echo "$as_me:36279: checking if you want long-directory listings" >&5
36275 echo "$as_me:36276: checking if you want long-directory listings" >&5
3627936276 echo $ECHO_N "checking if you want long-directory listings... $ECHO_C" >&6
3628036277
3628136278 # Check whether --enable-long-list or --disable-long-list was given.
3629936296 EOF
3630036297
3630136298 fi;
36302 echo "$as_me:36303: result: $enableval" >&5
36299 echo "$as_me:36300: result: $enableval" >&5
3630336300 echo "${ECHO_T}$enableval" >&6
3630436301
36305 echo "$as_me:36306: checking if parent-directory references are permitted" >&5
36302 echo "$as_me:36303: checking if parent-directory references are permitted" >&5
3630636303 echo $ECHO_N "checking if parent-directory references are permitted... $ECHO_C" >&6
3630736304
3630836305 # Check whether --enable-parent-dir-refs or --disable-parent-dir-refs was given.
3631936316 else
3632036317 enableval=yes
3632136318 fi;
36322 echo "$as_me:36323: result: $enableval" >&5
36319 echo "$as_me:36320: result: $enableval" >&5
3632336320 echo "${ECHO_T}$enableval" >&6
3632436321
3632536322 test -z "$TELNET" && TELNET=telnet
3632736324 do
3632836325 # Extract the first word of "$ac_prog", so it can be a program name with args.
3632936326 set dummy $ac_prog; ac_word=$2
36330 echo "$as_me:36331: checking for $ac_word" >&5
36327 echo "$as_me:36328: checking for $ac_word" >&5
3633136328 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3633236329 if test "${ac_cv_path_TELNET+set}" = set; then
3633336330 echo $ECHO_N "(cached) $ECHO_C" >&6
3634436341 test -z "$ac_dir" && ac_dir=.
3634536342 if $as_executable_p "$ac_dir/$ac_word"; then
3634636343 ac_cv_path_TELNET="$ac_dir/$ac_word"
36347 echo "$as_me:36348: found $ac_dir/$ac_word" >&5
36344 echo "$as_me:36345: found $ac_dir/$ac_word" >&5
3634836345 break
3634936346 fi
3635036347 done
3635536352 TELNET=$ac_cv_path_TELNET
3635636353
3635736354 if test -n "$TELNET"; then
36358 echo "$as_me:36359: result: $TELNET" >&5
36355 echo "$as_me:36356: result: $TELNET" >&5
3635936356 echo "${ECHO_T}$TELNET" >&6
3636036357 else
36361 echo "$as_me:36362: result: no" >&5
36358 echo "$as_me:36359: result: no" >&5
3636236359 echo "${ECHO_T}no" >&6
3636336360 fi
3636436361
3641736414
3641836415 if test -n "$cf_path_prog" ; then
3641936416
36420 echo "${as_me:-configure}:36421: testing defining path for ${cf_path_prog} ..." 1>&5
36417 echo "${as_me:-configure}:36418: testing defining path for ${cf_path_prog} ..." 1>&5
3642136418
3642236419 cat >>confdefs.h <<EOF
3642336420 #define TELNET_PATH "$cf_path_prog"
3643536432 do
3643636433 # Extract the first word of "$ac_prog", so it can be a program name with args.
3643736434 set dummy $ac_prog; ac_word=$2
36438 echo "$as_me:36439: checking for $ac_word" >&5
36435 echo "$as_me:36436: checking for $ac_word" >&5
3643936436 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3644036437 if test "${ac_cv_path_TN3270+set}" = set; then
3644136438 echo $ECHO_N "(cached) $ECHO_C" >&6
3645236449 test -z "$ac_dir" && ac_dir=.
3645336450 if $as_executable_p "$ac_dir/$ac_word"; then
3645436451 ac_cv_path_TN3270="$ac_dir/$ac_word"
36455 echo "$as_me:36456: found $ac_dir/$ac_word" >&5
36452 echo "$as_me:36453: found $ac_dir/$ac_word" >&5
3645636453 break
3645736454 fi
3645836455 done
3646336460 TN3270=$ac_cv_path_TN3270
3646436461
3646536462 if test -n "$TN3270"; then
36466 echo "$as_me:36467: result: $TN3270" >&5
36463 echo "$as_me:36464: result: $TN3270" >&5
3646736464 echo "${ECHO_T}$TN3270" >&6
3646836465 else
36469 echo "$as_me:36470: result: no" >&5
36466 echo "$as_me:36467: result: no" >&5
3647036467 echo "${ECHO_T}no" >&6
3647136468 fi
3647236469
3652536522
3652636523 if test -n "$cf_path_prog" ; then
3652736524
36528 echo "${as_me:-configure}:36529: testing defining path for ${cf_path_prog} ..." 1>&5
36525 echo "${as_me:-configure}:36526: testing defining path for ${cf_path_prog} ..." 1>&5
3652936526
3653036527 cat >>confdefs.h <<EOF
3653136528 #define TN3270_PATH "$cf_path_prog"
3654336540 do
3654436541 # Extract the first word of "$ac_prog", so it can be a program name with args.
3654536542 set dummy $ac_prog; ac_word=$2
36546 echo "$as_me:36547: checking for $ac_word" >&5
36543 echo "$as_me:36544: checking for $ac_word" >&5
3654736544 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3654836545 if test "${ac_cv_path_RLOGIN+set}" = set; then
3654936546 echo $ECHO_N "(cached) $ECHO_C" >&6
3656036557 test -z "$ac_dir" && ac_dir=.
3656136558 if $as_executable_p "$ac_dir/$ac_word"; then
3656236559 ac_cv_path_RLOGIN="$ac_dir/$ac_word"
36563 echo "$as_me:36564: found $ac_dir/$ac_word" >&5
36560 echo "$as_me:36561: found $ac_dir/$ac_word" >&5
3656436561 break
3656536562 fi
3656636563 done
3657136568 RLOGIN=$ac_cv_path_RLOGIN
3657236569
3657336570 if test -n "$RLOGIN"; then
36574 echo "$as_me:36575: result: $RLOGIN" >&5
36571 echo "$as_me:36572: result: $RLOGIN" >&5
3657536572 echo "${ECHO_T}$RLOGIN" >&6
3657636573 else
36577 echo "$as_me:36578: result: no" >&5
36574 echo "$as_me:36575: result: no" >&5
3657836575 echo "${ECHO_T}no" >&6
3657936576 fi
3658036577
3663336630
3663436631 if test -n "$cf_path_prog" ; then
3663536632
36636 echo "${as_me:-configure}:36637: testing defining path for ${cf_path_prog} ..." 1>&5
36633 echo "${as_me:-configure}:36634: testing defining path for ${cf_path_prog} ..." 1>&5
3663736634
3663836635 cat >>confdefs.h <<EOF
3663936636 #define RLOGIN_PATH "$cf_path_prog"
3665136648 do
3665236649 # Extract the first word of "$ac_prog", so it can be a program name with args.
3665336650 set dummy $ac_prog; ac_word=$2
36654 echo "$as_me:36655: checking for $ac_word" >&5
36651 echo "$as_me:36652: checking for $ac_word" >&5
3665536652 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3665636653 if test "${ac_cv_path_MV+set}" = set; then
3665736654 echo $ECHO_N "(cached) $ECHO_C" >&6
3666836665 test -z "$ac_dir" && ac_dir=.
3666936666 if $as_executable_p "$ac_dir/$ac_word"; then
3667036667 ac_cv_path_MV="$ac_dir/$ac_word"
36671 echo "$as_me:36672: found $ac_dir/$ac_word" >&5
36668 echo "$as_me:36669: found $ac_dir/$ac_word" >&5
3667236669 break
3667336670 fi
3667436671 done
3667936676 MV=$ac_cv_path_MV
3668036677
3668136678 if test -n "$MV"; then
36682 echo "$as_me:36683: result: $MV" >&5
36679 echo "$as_me:36680: result: $MV" >&5
3668336680 echo "${ECHO_T}$MV" >&6
3668436681 else
36685 echo "$as_me:36686: result: no" >&5
36682 echo "$as_me:36683: result: no" >&5
3668636683 echo "${ECHO_T}no" >&6
3668736684 fi
3668836685
3674136738
3674236739 if test -n "$cf_path_prog" ; then
3674336740
36744 echo "${as_me:-configure}:36745: testing defining path for ${cf_path_prog} ..." 1>&5
36741 echo "${as_me:-configure}:36742: testing defining path for ${cf_path_prog} ..." 1>&5
3674536742
3674636743 cat >>confdefs.h <<EOF
3674736744 #define MV_PATH "$cf_path_prog"
3675936756 do
3676036757 # Extract the first word of "$ac_prog", so it can be a program name with args.
3676136758 set dummy $ac_prog; ac_word=$2
36762 echo "$as_me:36763: checking for $ac_word" >&5
36759 echo "$as_me:36760: checking for $ac_word" >&5
3676336760 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3676436761 if test "${ac_cv_path_GZIP+set}" = set; then
3676536762 echo $ECHO_N "(cached) $ECHO_C" >&6
3677636773 test -z "$ac_dir" && ac_dir=.
3677736774 if $as_executable_p "$ac_dir/$ac_word"; then
3677836775 ac_cv_path_GZIP="$ac_dir/$ac_word"
36779 echo "$as_me:36780: found $ac_dir/$ac_word" >&5
36776 echo "$as_me:36777: found $ac_dir/$ac_word" >&5
3678036777 break
3678136778 fi
3678236779 done
3678736784 GZIP=$ac_cv_path_GZIP
3678836785
3678936786 if test -n "$GZIP"; then
36790 echo "$as_me:36791: result: $GZIP" >&5
36787 echo "$as_me:36788: result: $GZIP" >&5
3679136788 echo "${ECHO_T}$GZIP" >&6
3679236789 else
36793 echo "$as_me:36794: result: no" >&5
36790 echo "$as_me:36791: result: no" >&5
3679436791 echo "${ECHO_T}no" >&6
3679536792 fi
3679636793
3684936846
3685036847 if test -n "$cf_path_prog" ; then
3685136848
36852 echo "${as_me:-configure}:36853: testing defining path for ${cf_path_prog} ..." 1>&5
36849 echo "${as_me:-configure}:36850: testing defining path for ${cf_path_prog} ..." 1>&5
3685336850
3685436851 cat >>confdefs.h <<EOF
3685536852 #define GZIP_PATH "$cf_path_prog"
3686736864 do
3686836865 # Extract the first word of "$ac_prog", so it can be a program name with args.
3686936866 set dummy $ac_prog; ac_word=$2
36870 echo "$as_me:36871: checking for $ac_word" >&5
36867 echo "$as_me:36868: checking for $ac_word" >&5
3687136868 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3687236869 if test "${ac_cv_path_UNCOMPRESS+set}" = set; then
3687336870 echo $ECHO_N "(cached) $ECHO_C" >&6
3688436881 test -z "$ac_dir" && ac_dir=.
3688536882 if $as_executable_p "$ac_dir/$ac_word"; then
3688636883 ac_cv_path_UNCOMPRESS="$ac_dir/$ac_word"
36887 echo "$as_me:36888: found $ac_dir/$ac_word" >&5
36884 echo "$as_me:36885: found $ac_dir/$ac_word" >&5
3688836885 break
3688936886 fi
3689036887 done
3689536892 UNCOMPRESS=$ac_cv_path_UNCOMPRESS
3689636893
3689736894 if test -n "$UNCOMPRESS"; then
36898 echo "$as_me:36899: result: $UNCOMPRESS" >&5
36895 echo "$as_me:36896: result: $UNCOMPRESS" >&5
3689936896 echo "${ECHO_T}$UNCOMPRESS" >&6
3690036897 else
36901 echo "$as_me:36902: result: no" >&5
36898 echo "$as_me:36899: result: no" >&5
3690236899 echo "${ECHO_T}no" >&6
3690336900 fi
3690436901
3695736954
3695836955 if test -n "$cf_path_prog" ; then
3695936956
36960 echo "${as_me:-configure}:36961: testing defining path for ${cf_path_prog} ..." 1>&5
36957 echo "${as_me:-configure}:36958: testing defining path for ${cf_path_prog} ..." 1>&5
3696136958
3696236959 cat >>confdefs.h <<EOF
3696336960 #define UNCOMPRESS_PATH "$cf_path_prog"
3697536972 do
3697636973 # Extract the first word of "$ac_prog", so it can be a program name with args.
3697736974 set dummy $ac_prog; ac_word=$2
36978 echo "$as_me:36979: checking for $ac_word" >&5
36975 echo "$as_me:36976: checking for $ac_word" >&5
3697936976 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3698036977 if test "${ac_cv_path_UNZIP+set}" = set; then
3698136978 echo $ECHO_N "(cached) $ECHO_C" >&6
3699236989 test -z "$ac_dir" && ac_dir=.
3699336990 if $as_executable_p "$ac_dir/$ac_word"; then
3699436991 ac_cv_path_UNZIP="$ac_dir/$ac_word"
36995 echo "$as_me:36996: found $ac_dir/$ac_word" >&5
36992 echo "$as_me:36993: found $ac_dir/$ac_word" >&5
3699636993 break
3699736994 fi
3699836995 done
3700337000 UNZIP=$ac_cv_path_UNZIP
3700437001
3700537002 if test -n "$UNZIP"; then
37006 echo "$as_me:37007: result: $UNZIP" >&5
37003 echo "$as_me:37004: result: $UNZIP" >&5
3700737004 echo "${ECHO_T}$UNZIP" >&6
3700837005 else
37009 echo "$as_me:37010: result: no" >&5
37006 echo "$as_me:37007: result: no" >&5
3701037007 echo "${ECHO_T}no" >&6
3701137008 fi
3701237009
3706537062
3706637063 if test -n "$cf_path_prog" ; then
3706737064
37068 echo "${as_me:-configure}:37069: testing defining path for ${cf_path_prog} ..." 1>&5
37065 echo "${as_me:-configure}:37066: testing defining path for ${cf_path_prog} ..." 1>&5
3706937066
3707037067 cat >>confdefs.h <<EOF
3707137068 #define UNZIP_PATH "$cf_path_prog"
3708337080 do
3708437081 # Extract the first word of "$ac_prog", so it can be a program name with args.
3708537082 set dummy $ac_prog; ac_word=$2
37086 echo "$as_me:37087: checking for $ac_word" >&5
37083 echo "$as_me:37084: checking for $ac_word" >&5
3708737084 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3708837085 if test "${ac_cv_path_BZIP2+set}" = set; then
3708937086 echo $ECHO_N "(cached) $ECHO_C" >&6
3710037097 test -z "$ac_dir" && ac_dir=.
3710137098 if $as_executable_p "$ac_dir/$ac_word"; then
3710237099 ac_cv_path_BZIP2="$ac_dir/$ac_word"
37103 echo "$as_me:37104: found $ac_dir/$ac_word" >&5
37100 echo "$as_me:37101: found $ac_dir/$ac_word" >&5
3710437101 break
3710537102 fi
3710637103 done
3711137108 BZIP2=$ac_cv_path_BZIP2
3711237109
3711337110 if test -n "$BZIP2"; then
37114 echo "$as_me:37115: result: $BZIP2" >&5
37111 echo "$as_me:37112: result: $BZIP2" >&5
3711537112 echo "${ECHO_T}$BZIP2" >&6
3711637113 else
37117 echo "$as_me:37118: result: no" >&5
37114 echo "$as_me:37115: result: no" >&5
3711837115 echo "${ECHO_T}no" >&6
3711937116 fi
3712037117
3717337170
3717437171 if test -n "$cf_path_prog" ; then
3717537172
37176 echo "${as_me:-configure}:37177: testing defining path for ${cf_path_prog} ..." 1>&5
37173 echo "${as_me:-configure}:37174: testing defining path for ${cf_path_prog} ..." 1>&5
3717737174
3717837175 cat >>confdefs.h <<EOF
3717937176 #define BZIP2_PATH "$cf_path_prog"
3719137188 do
3719237189 # Extract the first word of "$ac_prog", so it can be a program name with args.
3719337190 set dummy $ac_prog; ac_word=$2
37194 echo "$as_me:37195: checking for $ac_word" >&5
37191 echo "$as_me:37192: checking for $ac_word" >&5
3719537192 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3719637193 if test "${ac_cv_path_TAR+set}" = set; then
3719737194 echo $ECHO_N "(cached) $ECHO_C" >&6
3720837205 test -z "$ac_dir" && ac_dir=.
3720937206 if $as_executable_p "$ac_dir/$ac_word"; then
3721037207 ac_cv_path_TAR="$ac_dir/$ac_word"
37211 echo "$as_me:37212: found $ac_dir/$ac_word" >&5
37208 echo "$as_me:37209: found $ac_dir/$ac_word" >&5
3721237209 break
3721337210 fi
3721437211 done
3721937216 TAR=$ac_cv_path_TAR
3722037217
3722137218 if test -n "$TAR"; then
37222 echo "$as_me:37223: result: $TAR" >&5
37219 echo "$as_me:37220: result: $TAR" >&5
3722337220 echo "${ECHO_T}$TAR" >&6
3722437221 else
37225 echo "$as_me:37226: result: no" >&5
37222 echo "$as_me:37223: result: no" >&5
3722637223 echo "${ECHO_T}no" >&6
3722737224 fi
3722837225
3728137278
3728237279 if test -n "$cf_path_prog" ; then
3728337280
37284 echo "${as_me:-configure}:37285: testing defining path for ${cf_path_prog} ..." 1>&5
37281 echo "${as_me:-configure}:37282: testing defining path for ${cf_path_prog} ..." 1>&5
3728537282
3728637283 cat >>confdefs.h <<EOF
3728737284 #define TAR_PATH "$cf_path_prog"
3733937336 do
3734037337 # Extract the first word of "$ac_prog", so it can be a program name with args.
3734137338 set dummy $ac_prog; ac_word=$2
37342 echo "$as_me:37343: checking for $ac_word" >&5
37339 echo "$as_me:37340: checking for $ac_word" >&5
3734337340 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3734437341 if test "${ac_cv_path_COMPRESS+set}" = set; then
3734537342 echo $ECHO_N "(cached) $ECHO_C" >&6
3735637353 test -z "$ac_dir" && ac_dir=.
3735737354 if $as_executable_p "$ac_dir/$ac_word"; then
3735837355 ac_cv_path_COMPRESS="$ac_dir/$ac_word"
37359 echo "$as_me:37360: found $ac_dir/$ac_word" >&5
37356 echo "$as_me:37357: found $ac_dir/$ac_word" >&5
3736037357 break
3736137358 fi
3736237359 done
3736737364 COMPRESS=$ac_cv_path_COMPRESS
3736837365
3736937366 if test -n "$COMPRESS"; then
37370 echo "$as_me:37371: result: $COMPRESS" >&5
37367 echo "$as_me:37368: result: $COMPRESS" >&5
3737137368 echo "${ECHO_T}$COMPRESS" >&6
3737237369 else
37373 echo "$as_me:37374: result: no" >&5
37370 echo "$as_me:37371: result: no" >&5
3737437371 echo "${ECHO_T}no" >&6
3737537372 fi
3737637373
3742937426
3743037427 if test -n "$cf_path_prog" ; then
3743137428
37432 echo "${as_me:-configure}:37433: testing defining path for ${cf_path_prog} ..." 1>&5
37429 echo "${as_me:-configure}:37430: testing defining path for ${cf_path_prog} ..." 1>&5
3743337430
3743437431 cat >>confdefs.h <<EOF
3743537432 #define COMPRESS_PATH "$cf_path_prog"
3744737444 do
3744837445 # Extract the first word of "$ac_prog", so it can be a program name with args.
3744937446 set dummy $ac_prog; ac_word=$2
37450 echo "$as_me:37451: checking for $ac_word" >&5
37447 echo "$as_me:37448: checking for $ac_word" >&5
3745137448 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3745237449 if test "${ac_cv_path_RM+set}" = set; then
3745337450 echo $ECHO_N "(cached) $ECHO_C" >&6
3746437461 test -z "$ac_dir" && ac_dir=.
3746537462 if $as_executable_p "$ac_dir/$ac_word"; then
3746637463 ac_cv_path_RM="$ac_dir/$ac_word"
37467 echo "$as_me:37468: found $ac_dir/$ac_word" >&5
37464 echo "$as_me:37465: found $ac_dir/$ac_word" >&5
3746837465 break
3746937466 fi
3747037467 done
3747537472 RM=$ac_cv_path_RM
3747637473
3747737474 if test -n "$RM"; then
37478 echo "$as_me:37479: result: $RM" >&5
37475 echo "$as_me:37476: result: $RM" >&5
3747937476 echo "${ECHO_T}$RM" >&6
3748037477 else
37481 echo "$as_me:37482: result: no" >&5
37478 echo "$as_me:37479: result: no" >&5
3748237479 echo "${ECHO_T}no" >&6
3748337480 fi
3748437481
3753737534
3753837535 if test -n "$cf_path_prog" ; then
3753937536
37540 echo "${as_me:-configure}:37541: testing defining path for ${cf_path_prog} ..." 1>&5
37537 echo "${as_me:-configure}:37538: testing defining path for ${cf_path_prog} ..." 1>&5
3754137538
3754237539 cat >>confdefs.h <<EOF
3754337540 #define RM_PATH "$cf_path_prog"
3755537552 do
3755637553 # Extract the first word of "$ac_prog", so it can be a program name with args.
3755737554 set dummy $ac_prog; ac_word=$2
37558 echo "$as_me:37559: checking for $ac_word" >&5
37555 echo "$as_me:37556: checking for $ac_word" >&5
3755937556 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3756037557 if test "${ac_cv_path_UUDECODE+set}" = set; then
3756137558 echo $ECHO_N "(cached) $ECHO_C" >&6
3757237569 test -z "$ac_dir" && ac_dir=.
3757337570 if $as_executable_p "$ac_dir/$ac_word"; then
3757437571 ac_cv_path_UUDECODE="$ac_dir/$ac_word"
37575 echo "$as_me:37576: found $ac_dir/$ac_word" >&5
37572 echo "$as_me:37573: found $ac_dir/$ac_word" >&5
3757637573 break
3757737574 fi
3757837575 done
3758337580 UUDECODE=$ac_cv_path_UUDECODE
3758437581
3758537582 if test -n "$UUDECODE"; then
37586 echo "$as_me:37587: result: $UUDECODE" >&5
37583 echo "$as_me:37584: result: $UUDECODE" >&5
3758737584 echo "${ECHO_T}$UUDECODE" >&6
3758837585 else
37589 echo "$as_me:37590: result: no" >&5
37586 echo "$as_me:37587: result: no" >&5
3759037587 echo "${ECHO_T}no" >&6
3759137588 fi
3759237589
3764537642
3764637643 if test -n "$cf_path_prog" ; then
3764737644
37648 echo "${as_me:-configure}:37649: testing defining path for ${cf_path_prog} ..." 1>&5
37645 echo "${as_me:-configure}:37646: testing defining path for ${cf_path_prog} ..." 1>&5
3764937646
3765037647 cat >>confdefs.h <<EOF
3765137648 #define UUDECODE_PATH "$cf_path_prog"
3766337660 do
3766437661 # Extract the first word of "$ac_prog", so it can be a program name with args.
3766537662 set dummy $ac_prog; ac_word=$2
37666 echo "$as_me:37667: checking for $ac_word" >&5
37663 echo "$as_me:37664: checking for $ac_word" >&5
3766737664 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3766837665 if test "${ac_cv_path_ZCAT+set}" = set; then
3766937666 echo $ECHO_N "(cached) $ECHO_C" >&6
3768037677 test -z "$ac_dir" && ac_dir=.
3768137678 if $as_executable_p "$ac_dir/$ac_word"; then
3768237679 ac_cv_path_ZCAT="$ac_dir/$ac_word"
37683 echo "$as_me:37684: found $ac_dir/$ac_word" >&5
37680 echo "$as_me:37681: found $ac_dir/$ac_word" >&5
3768437681 break
3768537682 fi
3768637683 done
3769137688 ZCAT=$ac_cv_path_ZCAT
3769237689
3769337690 if test -n "$ZCAT"; then
37694 echo "$as_me:37695: result: $ZCAT" >&5
37691 echo "$as_me:37692: result: $ZCAT" >&5
3769537692 echo "${ECHO_T}$ZCAT" >&6
3769637693 else
37697 echo "$as_me:37698: result: no" >&5
37694 echo "$as_me:37695: result: no" >&5
3769837695 echo "${ECHO_T}no" >&6
3769937696 fi
3770037697
3775337750
3775437751 if test -n "$cf_path_prog" ; then
3775537752
37756 echo "${as_me:-configure}:37757: testing defining path for ${cf_path_prog} ..." 1>&5
37753 echo "${as_me:-configure}:37754: testing defining path for ${cf_path_prog} ..." 1>&5
3775737754
3775837755 cat >>confdefs.h <<EOF
3775937756 #define ZCAT_PATH "$cf_path_prog"
3777137768 do
3777237769 # Extract the first word of "$ac_prog", so it can be a program name with args.
3777337770 set dummy $ac_prog; ac_word=$2
37774 echo "$as_me:37775: checking for $ac_word" >&5
37771 echo "$as_me:37772: checking for $ac_word" >&5
3777537772 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3777637773 if test "${ac_cv_path_ZIP+set}" = set; then
3777737774 echo $ECHO_N "(cached) $ECHO_C" >&6
3778837785 test -z "$ac_dir" && ac_dir=.
3778937786 if $as_executable_p "$ac_dir/$ac_word"; then
3779037787 ac_cv_path_ZIP="$ac_dir/$ac_word"
37791 echo "$as_me:37792: found $ac_dir/$ac_word" >&5
37788 echo "$as_me:37789: found $ac_dir/$ac_word" >&5
3779237789 break
3779337790 fi
3779437791 done
3779937796 ZIP=$ac_cv_path_ZIP
3780037797
3780137798 if test -n "$ZIP"; then
37802 echo "$as_me:37803: result: $ZIP" >&5
37799 echo "$as_me:37800: result: $ZIP" >&5
3780337800 echo "${ECHO_T}$ZIP" >&6
3780437801 else
37805 echo "$as_me:37806: result: no" >&5
37802 echo "$as_me:37803: result: no" >&5
3780637803 echo "${ECHO_T}no" >&6
3780737804 fi
3780837805
3786137858
3786237859 if test -n "$cf_path_prog" ; then
3786337860
37864 echo "${as_me:-configure}:37865: testing defining path for ${cf_path_prog} ..." 1>&5
37861 echo "${as_me:-configure}:37862: testing defining path for ${cf_path_prog} ..." 1>&5
3786537862
3786637863 cat >>confdefs.h <<EOF
3786737864 #define ZIP_PATH "$cf_path_prog"
3788937886 do
3789037887 # Extract the first word of "$ac_prog", so it can be a program name with args.
3789137888 set dummy $ac_prog; ac_word=$2
37892 echo "$as_me:37893: checking for $ac_word" >&5
37889 echo "$as_me:37890: checking for $ac_word" >&5
3789337890 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3789437891 if test "${ac_cv_path_INSTALL+set}" = set; then
3789537892 echo $ECHO_N "(cached) $ECHO_C" >&6
3790637903 test -z "$ac_dir" && ac_dir=.
3790737904 if $as_executable_p "$ac_dir/$ac_word"; then
3790837905 ac_cv_path_INSTALL="$ac_dir/$ac_word"
37909 echo "$as_me:37910: found $ac_dir/$ac_word" >&5
37906 echo "$as_me:37907: found $ac_dir/$ac_word" >&5
3791037907 break
3791137908 fi
3791237909 done
3791737914 INSTALL=$ac_cv_path_INSTALL
3791837915
3791937916 if test -n "$INSTALL"; then
37920 echo "$as_me:37921: result: $INSTALL" >&5
37917 echo "$as_me:37918: result: $INSTALL" >&5
3792137918 echo "${ECHO_T}$INSTALL" >&6
3792237919 else
37923 echo "$as_me:37924: result: no" >&5
37920 echo "$as_me:37921: result: no" >&5
3792437921 echo "${ECHO_T}no" >&6
3792537922 fi
3792637923
3797937976
3798037977 if test -n "$cf_path_prog" ; then
3798137978
37982 echo "${as_me:-configure}:37983: testing defining path for ${cf_path_prog} ..." 1>&5
37979 echo "${as_me:-configure}:37980: testing defining path for ${cf_path_prog} ..." 1>&5
3798337980
3798437981 cat >>confdefs.h <<EOF
3798537982 #define INSTALL_PATH "$cf_path_prog"
3800938006 case $host_os in #(vi
3801038007 mingw*)
3801138008
38012 echo "$as_me:38013: checking for initscr in -lpdcurses" >&5
38009 echo "$as_me:38010: checking for initscr in -lpdcurses" >&5
3801338010 echo $ECHO_N "checking for initscr in -lpdcurses... $ECHO_C" >&6
3801438011 if test "${ac_cv_lib_pdcurses_initscr+set}" = set; then
3801538012 echo $ECHO_N "(cached) $ECHO_C" >&6
3801738014 ac_check_lib_save_LIBS=$LIBS
3801838015 LIBS="-lpdcurses $LIBS"
3801938016 cat >conftest.$ac_ext <<_ACEOF
38020 #line 38021 "configure"
38017 #line 38018 "configure"
3802138018 #include "confdefs.h"
3802238019
3802338020 /* Override any gcc2 internal prototype to avoid an error. */
3803638033 }
3803738034 _ACEOF
3803838035 rm -f conftest.$ac_objext conftest$ac_exeext
38039 if { (eval echo "$as_me:38040: \"$ac_link\"") >&5
38036 if { (eval echo "$as_me:38037: \"$ac_link\"") >&5
3804038037 (eval $ac_link) 2>&5
3804138038 ac_status=$?
38042 echo "$as_me:38043: \$? = $ac_status" >&5
38039 echo "$as_me:38040: \$? = $ac_status" >&5
3804338040 (exit $ac_status); } &&
3804438041 { ac_try='test -s conftest$ac_exeext'
38045 { (eval echo "$as_me:38046: \"$ac_try\"") >&5
38042 { (eval echo "$as_me:38043: \"$ac_try\"") >&5
3804638043 (eval $ac_try) 2>&5
3804738044 ac_status=$?
38048 echo "$as_me:38049: \$? = $ac_status" >&5
38045 echo "$as_me:38046: \$? = $ac_status" >&5
3804938046 (exit $ac_status); }; }; then
3805038047 ac_cv_lib_pdcurses_initscr=yes
3805138048 else
3805638053 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3805738054 LIBS=$ac_check_lib_save_LIBS
3805838055 fi
38059 echo "$as_me:38060: result: $ac_cv_lib_pdcurses_initscr" >&5
38056 echo "$as_me:38057: result: $ac_cv_lib_pdcurses_initscr" >&5
3806038057 echo "${ECHO_T}$ac_cv_lib_pdcurses_initscr" >&6
3806138058 if test $ac_cv_lib_pdcurses_initscr = yes; then
3806238059
3806338060 LIBS="-lpdcurses $LIBS"
3806438061 cf_cv_term_header=no
3806538062 cf_cv_unctrl_header=no
38066 echo "$as_me:38067: checking for winwstr" >&5
38063 echo "$as_me:38064: checking for winwstr" >&5
3806738064 echo $ECHO_N "checking for winwstr... $ECHO_C" >&6
3806838065 if test "${ac_cv_func_winwstr+set}" = set; then
3806938066 echo $ECHO_N "(cached) $ECHO_C" >&6
3807038067 else
3807138068 cat >conftest.$ac_ext <<_ACEOF
38072 #line 38073 "configure"
38069 #line 38070 "configure"
3807338070 #include "confdefs.h"
3807438071 /* System header to define __stub macros and hopefully few prototypes,
3807538072 which can conflict with char winwstr (); below. */
3810038097 }
3810138098 _ACEOF
3810238099 rm -f conftest.$ac_objext conftest$ac_exeext
38103 if { (eval echo "$as_me:38104: \"$ac_link\"") >&5
38100 if { (eval echo "$as_me:38101: \"$ac_link\"") >&5
3810438101 (eval $ac_link) 2>&5
3810538102 ac_status=$?
38106 echo "$as_me:38107: \$? = $ac_status" >&5
38103 echo "$as_me:38104: \$? = $ac_status" >&5
3810738104 (exit $ac_status); } &&
3810838105 { ac_try='test -s conftest$ac_exeext'
38109 { (eval echo "$as_me:38110: \"$ac_try\"") >&5
38106 { (eval echo "$as_me:38107: \"$ac_try\"") >&5
3811038107 (eval $ac_try) 2>&5
3811138108 ac_status=$?
38112 echo "$as_me:38113: \$? = $ac_status" >&5
38109 echo "$as_me:38110: \$? = $ac_status" >&5
3811338110 (exit $ac_status); }; }; then
3811438111 ac_cv_func_winwstr=yes
3811538112 else
3811938116 fi
3812038117 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3812138118 fi
38122 echo "$as_me:38123: result: $ac_cv_func_winwstr" >&5
38119 echo "$as_me:38120: result: $ac_cv_func_winwstr" >&5
3812338120 echo "${ECHO_T}$ac_cv_func_winwstr" >&6
3812438121 if test $ac_cv_func_winwstr = yes; then
3812538122 cat >>confdefs.h <<\EOF
3812838125
3812938126 fi
3813038127
38131 echo "$as_me:38132: checking for pdcurses_dll_iname" >&5
38128 echo "$as_me:38129: checking for pdcurses_dll_iname" >&5
3813238129 echo $ECHO_N "checking for pdcurses_dll_iname... $ECHO_C" >&6
3813338130 if test "${ac_cv_func_pdcurses_dll_iname+set}" = set; then
3813438131 echo $ECHO_N "(cached) $ECHO_C" >&6
3813538132 else
3813638133 cat >conftest.$ac_ext <<_ACEOF
38137 #line 38138 "configure"
38134 #line 38135 "configure"
3813838135 #include "confdefs.h"
3813938136 /* System header to define __stub macros and hopefully few prototypes,
3814038137 which can conflict with char pdcurses_dll_iname (); below. */
3816538162 }
3816638163 _ACEOF
3816738164 rm -f conftest.$ac_objext conftest$ac_exeext
38168 if { (eval echo "$as_me:38169: \"$ac_link\"") >&5
38165 if { (eval echo "$as_me:38166: \"$ac_link\"") >&5
3816938166 (eval $ac_link) 2>&5
3817038167 ac_status=$?
38171 echo "$as_me:38172: \$? = $ac_status" >&5
38168 echo "$as_me:38169: \$? = $ac_status" >&5
3817238169 (exit $ac_status); } &&
3817338170 { ac_try='test -s conftest$ac_exeext'
38174 { (eval echo "$as_me:38175: \"$ac_try\"") >&5
38171 { (eval echo "$as_me:38172: \"$ac_try\"") >&5
3817538172 (eval $ac_try) 2>&5
3817638173 ac_status=$?
38177 echo "$as_me:38178: \$? = $ac_status" >&5
38174 echo "$as_me:38175: \$? = $ac_status" >&5
3817838175 (exit $ac_status); }; }; then
3817938176 ac_cv_func_pdcurses_dll_iname=yes
3818038177 else
3818438181 fi
3818538182 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3818638183 fi
38187 echo "$as_me:38188: result: $ac_cv_func_pdcurses_dll_iname" >&5
38184 echo "$as_me:38185: result: $ac_cv_func_pdcurses_dll_iname" >&5
3818838185 echo "${ECHO_T}$ac_cv_func_pdcurses_dll_iname" >&6
3818938186 if test $ac_cv_func_pdcurses_dll_iname = yes; then
3819038187 cat >>confdefs.h <<\EOF
3819738194
3819838195 ;;
3819938196 *) #(vi
38200 echo "$as_me:38201: checking for X" >&5
38197 echo "$as_me:38198: checking for X" >&5
3820138198 echo $ECHO_N "checking for X... $ECHO_C" >&6
3820238199
3820338200 # Check whether --with-x or --without-x was given.
3829438291 # Guess where to find include files, by looking for Intrinsic.h.
3829538292 # First, try using that file with no special directory specified.
3829638293 cat >conftest.$ac_ext <<_ACEOF
38297 #line 38298 "configure"
38294 #line 38295 "configure"
3829838295 #include "confdefs.h"
3829938296 #include <X11/Intrinsic.h>
3830038297 _ACEOF
38301 if { (eval echo "$as_me:38302: \"$ac_cpp conftest.$ac_ext\"") >&5
38298 if { (eval echo "$as_me:38299: \"$ac_cpp conftest.$ac_ext\"") >&5
3830238299 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
3830338300 ac_status=$?
3830438301 egrep -v '^ *\+' conftest.er1 >conftest.err
3830538302 rm -f conftest.er1
3830638303 cat conftest.err >&5
38307 echo "$as_me:38308: \$? = $ac_status" >&5
38304 echo "$as_me:38305: \$? = $ac_status" >&5
3830838305 (exit $ac_status); } >/dev/null; then
3830938306 if test -s conftest.err; then
3831038307 ac_cpp_err=$ac_c_preproc_warn_flag
3833738334 ac_save_LIBS=$LIBS
3833838335 LIBS="-lXt $LIBS"
3833938336 cat >conftest.$ac_ext <<_ACEOF
38340 #line 38341 "configure"
38337 #line 38338 "configure"
3834138338 #include "confdefs.h"
3834238339 #include <X11/Intrinsic.h>
3834338340 int
3834938346 }
3835038347 _ACEOF
3835138348 rm -f conftest.$ac_objext conftest$ac_exeext
38352 if { (eval echo "$as_me:38353: \"$ac_link\"") >&5
38349 if { (eval echo "$as_me:38350: \"$ac_link\"") >&5
3835338350 (eval $ac_link) 2>&5
3835438351 ac_status=$?
38355 echo "$as_me:38356: \$? = $ac_status" >&5
38352 echo "$as_me:38353: \$? = $ac_status" >&5
3835638353 (exit $ac_status); } &&
3835738354 { ac_try='test -s conftest$ac_exeext'
38358 { (eval echo "$as_me:38359: \"$ac_try\"") >&5
38355 { (eval echo "$as_me:38356: \"$ac_try\"") >&5
3835938356 (eval $ac_try) 2>&5
3836038357 ac_status=$?
38361 echo "$as_me:38362: \$? = $ac_status" >&5
38358 echo "$as_me:38359: \$? = $ac_status" >&5
3836238359 (exit $ac_status); }; }; then
3836338360 LIBS=$ac_save_LIBS
3836438361 # We can link X programs with no special library path.
3839638393 fi # $with_x != no
3839738394
3839838395 if test "$have_x" != yes; then
38399 echo "$as_me:38400: result: $have_x" >&5
38396 echo "$as_me:38397: result: $have_x" >&5
3840038397 echo "${ECHO_T}$have_x" >&6
3840138398 no_x=yes
3840238399 else
3840638403 # Update the cache value to reflect the command line values.
3840738404 ac_cv_have_x="have_x=yes \
3840838405 ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
38409 echo "$as_me:38410: result: libraries $x_libraries, headers $x_includes" >&5
38406 echo "$as_me:38407: result: libraries $x_libraries, headers $x_includes" >&5
3841038407 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6
3841138408 fi
3841238409
3843038427 # others require no space. Words are not sufficient . . . .
3843138428 case `(uname -sr) 2>/dev/null` in
3843238429 "SunOS 5"*)
38433 echo "$as_me:38434: checking whether -R must be followed by a space" >&5
38430 echo "$as_me:38431: checking whether -R must be followed by a space" >&5
3843438431 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6
3843538432 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
3843638433 cat >conftest.$ac_ext <<_ACEOF
38437 #line 38438 "configure"
38434 #line 38435 "configure"
3843838435 #include "confdefs.h"
3843938436
3844038437 int
3844638443 }
3844738444 _ACEOF
3844838445 rm -f conftest.$ac_objext conftest$ac_exeext
38449 if { (eval echo "$as_me:38450: \"$ac_link\"") >&5
38446 if { (eval echo "$as_me:38447: \"$ac_link\"") >&5
3845038447 (eval $ac_link) 2>&5
3845138448 ac_status=$?
38452 echo "$as_me:38453: \$? = $ac_status" >&5
38449 echo "$as_me:38450: \$? = $ac_status" >&5
3845338450 (exit $ac_status); } &&
3845438451 { ac_try='test -s conftest$ac_exeext'
38455 { (eval echo "$as_me:38456: \"$ac_try\"") >&5
38452 { (eval echo "$as_me:38453: \"$ac_try\"") >&5
3845638453 (eval $ac_try) 2>&5
3845738454 ac_status=$?
38458 echo "$as_me:38459: \$? = $ac_status" >&5
38455 echo "$as_me:38456: \$? = $ac_status" >&5
3845938456 (exit $ac_status); }; }; then
3846038457 ac_R_nospace=yes
3846138458 else
3846538462 fi
3846638463 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3846738464 if test $ac_R_nospace = yes; then
38468 echo "$as_me:38469: result: no" >&5
38465 echo "$as_me:38466: result: no" >&5
3846938466 echo "${ECHO_T}no" >&6
3847038467 X_LIBS="$X_LIBS -R$x_libraries"
3847138468 else
3847238469 LIBS="$ac_xsave_LIBS -R $x_libraries"
3847338470 cat >conftest.$ac_ext <<_ACEOF
38474 #line 38475 "configure"
38471 #line 38472 "configure"
3847538472 #include "confdefs.h"
3847638473
3847738474 int
3848338480 }
3848438481 _ACEOF
3848538482 rm -f conftest.$ac_objext conftest$ac_exeext
38486 if { (eval echo "$as_me:38487: \"$ac_link\"") >&5
38483 if { (eval echo "$as_me:38484: \"$ac_link\"") >&5
3848738484 (eval $ac_link) 2>&5
3848838485 ac_status=$?
38489 echo "$as_me:38490: \$? = $ac_status" >&5
38486 echo "$as_me:38487: \$? = $ac_status" >&5
3849038487 (exit $ac_status); } &&
3849138488 { ac_try='test -s conftest$ac_exeext'
38492 { (eval echo "$as_me:38493: \"$ac_try\"") >&5
38489 { (eval echo "$as_me:38490: \"$ac_try\"") >&5
3849338490 (eval $ac_try) 2>&5
3849438491 ac_status=$?
38495 echo "$as_me:38496: \$? = $ac_status" >&5
38492 echo "$as_me:38493: \$? = $ac_status" >&5
3849638493 (exit $ac_status); }; }; then
3849738494 ac_R_space=yes
3849838495 else
3850238499 fi
3850338500 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3850438501 if test $ac_R_space = yes; then
38505 echo "$as_me:38506: result: yes" >&5
38502 echo "$as_me:38503: result: yes" >&5
3850638503 echo "${ECHO_T}yes" >&6
3850738504 X_LIBS="$X_LIBS -R $x_libraries"
3850838505 else
38509 echo "$as_me:38510: result: neither works" >&5
38506 echo "$as_me:38507: result: neither works" >&5
3851038507 echo "${ECHO_T}neither works" >&6
3851138508 fi
3851238509 fi
3852638523 # the Alpha needs dnet_stub (dnet does not exist).
3852738524 ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
3852838525 cat >conftest.$ac_ext <<_ACEOF
38529 #line 38530 "configure"
38526 #line 38527 "configure"
3853038527 #include "confdefs.h"
3853138528
3853238529 /* Override any gcc2 internal prototype to avoid an error. */
3854538542 }
3854638543 _ACEOF
3854738544 rm -f conftest.$ac_objext conftest$ac_exeext
38548 if { (eval echo "$as_me:38549: \"$ac_link\"") >&5
38545 if { (eval echo "$as_me:38546: \"$ac_link\"") >&5
3854938546 (eval $ac_link) 2>&5
3855038547 ac_status=$?
38551 echo "$as_me:38552: \$? = $ac_status" >&5
38548 echo "$as_me:38549: \$? = $ac_status" >&5
3855238549 (exit $ac_status); } &&
3855338550 { ac_try='test -s conftest$ac_exeext'
38554 { (eval echo "$as_me:38555: \"$ac_try\"") >&5
38551 { (eval echo "$as_me:38552: \"$ac_try\"") >&5
3855538552 (eval $ac_try) 2>&5
3855638553 ac_status=$?
38557 echo "$as_me:38558: \$? = $ac_status" >&5
38554 echo "$as_me:38555: \$? = $ac_status" >&5
3855838555 (exit $ac_status); }; }; then
3855938556 :
3856038557 else
3856138558 echo "$as_me: failed program was:" >&5
3856238559 cat conftest.$ac_ext >&5
38563 echo "$as_me:38564: checking for dnet_ntoa in -ldnet" >&5
38560 echo "$as_me:38561: checking for dnet_ntoa in -ldnet" >&5
3856438561 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
3856538562 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
3856638563 echo $ECHO_N "(cached) $ECHO_C" >&6
3856838565 ac_check_lib_save_LIBS=$LIBS
3856938566 LIBS="-ldnet $LIBS"
3857038567 cat >conftest.$ac_ext <<_ACEOF
38571 #line 38572 "configure"
38568 #line 38569 "configure"
3857238569 #include "confdefs.h"
3857338570
3857438571 /* Override any gcc2 internal prototype to avoid an error. */
3858738584 }
3858838585 _ACEOF
3858938586 rm -f conftest.$ac_objext conftest$ac_exeext
38590 if { (eval echo "$as_me:38591: \"$ac_link\"") >&5
38587 if { (eval echo "$as_me:38588: \"$ac_link\"") >&5
3859138588 (eval $ac_link) 2>&5
3859238589 ac_status=$?
38593 echo "$as_me:38594: \$? = $ac_status" >&5
38590 echo "$as_me:38591: \$? = $ac_status" >&5
3859438591 (exit $ac_status); } &&
3859538592 { ac_try='test -s conftest$ac_exeext'
38596 { (eval echo "$as_me:38597: \"$ac_try\"") >&5
38593 { (eval echo "$as_me:38594: \"$ac_try\"") >&5
3859738594 (eval $ac_try) 2>&5
3859838595 ac_status=$?
38599 echo "$as_me:38600: \$? = $ac_status" >&5
38596 echo "$as_me:38597: \$? = $ac_status" >&5
3860038597 (exit $ac_status); }; }; then
3860138598 ac_cv_lib_dnet_dnet_ntoa=yes
3860238599 else
3860738604 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3860838605 LIBS=$ac_check_lib_save_LIBS
3860938606 fi
38610 echo "$as_me:38611: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
38607 echo "$as_me:38608: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
3861138608 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6
3861238609 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
3861338610 X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
3861438611 fi
3861538612
3861638613 if test $ac_cv_lib_dnet_dnet_ntoa = no; then
38617 echo "$as_me:38618: checking for dnet_ntoa in -ldnet_stub" >&5
38614 echo "$as_me:38615: checking for dnet_ntoa in -ldnet_stub" >&5
3861838615 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6
3861938616 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then
3862038617 echo $ECHO_N "(cached) $ECHO_C" >&6
3862238619 ac_check_lib_save_LIBS=$LIBS
3862338620 LIBS="-ldnet_stub $LIBS"
3862438621 cat >conftest.$ac_ext <<_ACEOF
38625 #line 38626 "configure"
38622 #line 38623 "configure"
3862638623 #include "confdefs.h"
3862738624
3862838625 /* Override any gcc2 internal prototype to avoid an error. */
3864138638 }
3864238639 _ACEOF
3864338640 rm -f conftest.$ac_objext conftest$ac_exeext
38644 if { (eval echo "$as_me:38645: \"$ac_link\"") >&5
38641 if { (eval echo "$as_me:38642: \"$ac_link\"") >&5
3864538642 (eval $ac_link) 2>&5
3864638643 ac_status=$?
38647 echo "$as_me:38648: \$? = $ac_status" >&5
38644 echo "$as_me:38645: \$? = $ac_status" >&5
3864838645 (exit $ac_status); } &&
3864938646 { ac_try='test -s conftest$ac_exeext'
38650 { (eval echo "$as_me:38651: \"$ac_try\"") >&5
38647 { (eval echo "$as_me:38648: \"$ac_try\"") >&5
3865138648 (eval $ac_try) 2>&5
3865238649 ac_status=$?
38653 echo "$as_me:38654: \$? = $ac_status" >&5
38650 echo "$as_me:38651: \$? = $ac_status" >&5
3865438651 (exit $ac_status); }; }; then
3865538652 ac_cv_lib_dnet_stub_dnet_ntoa=yes
3865638653 else
3866138658 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3866238659 LIBS=$ac_check_lib_save_LIBS
3866338660 fi
38664 echo "$as_me:38665: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
38661 echo "$as_me:38662: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
3866538662 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6
3866638663 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then
3866738664 X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
3868038677 # on Irix 5.2, according to T.E. Dickey.
3868138678 # The functions gethostbyname, getservbyname, and inet_addr are
3868238679 # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
38683 echo "$as_me:38684: checking for gethostbyname" >&5
38680 echo "$as_me:38681: checking for gethostbyname" >&5
3868438681 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
3868538682 if test "${ac_cv_func_gethostbyname+set}" = set; then
3868638683 echo $ECHO_N "(cached) $ECHO_C" >&6
3868738684 else
3868838685 cat >conftest.$ac_ext <<_ACEOF
38689 #line 38690 "configure"
38686 #line 38687 "configure"
3869038687 #include "confdefs.h"
3869138688 /* System header to define __stub macros and hopefully few prototypes,
3869238689 which can conflict with char gethostbyname (); below. */
3871738714 }
3871838715 _ACEOF
3871938716 rm -f conftest.$ac_objext conftest$ac_exeext
38720 if { (eval echo "$as_me:38721: \"$ac_link\"") >&5
38717 if { (eval echo "$as_me:38718: \"$ac_link\"") >&5
3872138718 (eval $ac_link) 2>&5
3872238719 ac_status=$?
38723 echo "$as_me:38724: \$? = $ac_status" >&5
38720 echo "$as_me:38721: \$? = $ac_status" >&5
3872438721 (exit $ac_status); } &&
3872538722 { ac_try='test -s conftest$ac_exeext'
38726 { (eval echo "$as_me:38727: \"$ac_try\"") >&5
38723 { (eval echo "$as_me:38724: \"$ac_try\"") >&5
3872738724 (eval $ac_try) 2>&5
3872838725 ac_status=$?
38729 echo "$as_me:38730: \$? = $ac_status" >&5
38726 echo "$as_me:38727: \$? = $ac_status" >&5
3873038727 (exit $ac_status); }; }; then
3873138728 ac_cv_func_gethostbyname=yes
3873238729 else
3873638733 fi
3873738734 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3873838735 fi
38739 echo "$as_me:38740: result: $ac_cv_func_gethostbyname" >&5
38736 echo "$as_me:38737: result: $ac_cv_func_gethostbyname" >&5
3874038737 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6
3874138738
3874238739 if test $ac_cv_func_gethostbyname = no; then
38743 echo "$as_me:38744: checking for gethostbyname in -lnsl" >&5
38740 echo "$as_me:38741: checking for gethostbyname in -lnsl" >&5
3874438741 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
3874538742 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
3874638743 echo $ECHO_N "(cached) $ECHO_C" >&6
3874838745 ac_check_lib_save_LIBS=$LIBS
3874938746 LIBS="-lnsl $LIBS"
3875038747 cat >conftest.$ac_ext <<_ACEOF
38751 #line 38752 "configure"
38748 #line 38749 "configure"
3875238749 #include "confdefs.h"
3875338750
3875438751 /* Override any gcc2 internal prototype to avoid an error. */
3876738764 }
3876838765 _ACEOF
3876938766 rm -f conftest.$ac_objext conftest$ac_exeext
38770 if { (eval echo "$as_me:38771: \"$ac_link\"") >&5
38767 if { (eval echo "$as_me:38768: \"$ac_link\"") >&5
3877138768 (eval $ac_link) 2>&5
3877238769 ac_status=$?
38773 echo "$as_me:38774: \$? = $ac_status" >&5
38770 echo "$as_me:38771: \$? = $ac_status" >&5
3877438771 (exit $ac_status); } &&
3877538772 { ac_try='test -s conftest$ac_exeext'
38776 { (eval echo "$as_me:38777: \"$ac_try\"") >&5
38773 { (eval echo "$as_me:38774: \"$ac_try\"") >&5
3877738774 (eval $ac_try) 2>&5
3877838775 ac_status=$?
38779 echo "$as_me:38780: \$? = $ac_status" >&5
38776 echo "$as_me:38777: \$? = $ac_status" >&5
3878038777 (exit $ac_status); }; }; then
3878138778 ac_cv_lib_nsl_gethostbyname=yes
3878238779 else
3878738784 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3878838785 LIBS=$ac_check_lib_save_LIBS
3878938786 fi
38790 echo "$as_me:38791: result: $ac_cv_lib_nsl_gethostbyname" >&5
38787 echo "$as_me:38788: result: $ac_cv_lib_nsl_gethostbyname" >&5
3879138788 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
3879238789 if test $ac_cv_lib_nsl_gethostbyname = yes; then
3879338790 X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
3879438791 fi
3879538792
3879638793 if test $ac_cv_lib_nsl_gethostbyname = no; then
38797 echo "$as_me:38798: checking for gethostbyname in -lbsd" >&5
38794 echo "$as_me:38795: checking for gethostbyname in -lbsd" >&5
3879838795 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6
3879938796 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then
3880038797 echo $ECHO_N "(cached) $ECHO_C" >&6
3880238799 ac_check_lib_save_LIBS=$LIBS
3880338800 LIBS="-lbsd $LIBS"
3880438801 cat >conftest.$ac_ext <<_ACEOF
38805 #line 38806 "configure"
38802 #line 38803 "configure"
3880638803 #include "confdefs.h"
3880738804
3880838805 /* Override any gcc2 internal prototype to avoid an error. */
3882138818 }
3882238819 _ACEOF
3882338820 rm -f conftest.$ac_objext conftest$ac_exeext
38824 if { (eval echo "$as_me:38825: \"$ac_link\"") >&5
38821 if { (eval echo "$as_me:38822: \"$ac_link\"") >&5
3882538822 (eval $ac_link) 2>&5
3882638823 ac_status=$?
38827 echo "$as_me:38828: \$? = $ac_status" >&5
38824 echo "$as_me:38825: \$? = $ac_status" >&5
3882838825 (exit $ac_status); } &&
3882938826 { ac_try='test -s conftest$ac_exeext'
38830 { (eval echo "$as_me:38831: \"$ac_try\"") >&5
38827 { (eval echo "$as_me:38828: \"$ac_try\"") >&5
3883138828 (eval $ac_try) 2>&5
3883238829 ac_status=$?
38833 echo "$as_me:38834: \$? = $ac_status" >&5
38830 echo "$as_me:38831: \$? = $ac_status" >&5
3883438831 (exit $ac_status); }; }; then
3883538832 ac_cv_lib_bsd_gethostbyname=yes
3883638833 else
3884138838 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3884238839 LIBS=$ac_check_lib_save_LIBS
3884338840 fi
38844 echo "$as_me:38845: result: $ac_cv_lib_bsd_gethostbyname" >&5
38841 echo "$as_me:38842: result: $ac_cv_lib_bsd_gethostbyname" >&5
3884538842 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6
3884638843 if test $ac_cv_lib_bsd_gethostbyname = yes; then
3884738844 X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
3885738854 # variants that don't use the nameserver (or something). -lsocket
3885838855 # must be given before -lnsl if both are needed. We assume that
3885938856 # if connect needs -lnsl, so does gethostbyname.
38860 echo "$as_me:38861: checking for connect" >&5
38857 echo "$as_me:38858: checking for connect" >&5
3886138858 echo $ECHO_N "checking for connect... $ECHO_C" >&6
3886238859 if test "${ac_cv_func_connect+set}" = set; then
3886338860 echo $ECHO_N "(cached) $ECHO_C" >&6
3886438861 else
3886538862 cat >conftest.$ac_ext <<_ACEOF
38866 #line 38867 "configure"
38863 #line 38864 "configure"
3886738864 #include "confdefs.h"
3886838865 /* System header to define __stub macros and hopefully few prototypes,
3886938866 which can conflict with char connect (); below. */
3889438891 }
3889538892 _ACEOF
3889638893 rm -f conftest.$ac_objext conftest$ac_exeext
38897 if { (eval echo "$as_me:38898: \"$ac_link\"") >&5
38894 if { (eval echo "$as_me:38895: \"$ac_link\"") >&5
3889838895 (eval $ac_link) 2>&5
3889938896 ac_status=$?
38900 echo "$as_me:38901: \$? = $ac_status" >&5
38897 echo "$as_me:38898: \$? = $ac_status" >&5
3890138898 (exit $ac_status); } &&
3890238899 { ac_try='test -s conftest$ac_exeext'
38903 { (eval echo "$as_me:38904: \"$ac_try\"") >&5
38900 { (eval echo "$as_me:38901: \"$ac_try\"") >&5
3890438901 (eval $ac_try) 2>&5
3890538902 ac_status=$?
38906 echo "$as_me:38907: \$? = $ac_status" >&5
38903 echo "$as_me:38904: \$? = $ac_status" >&5
3890738904 (exit $ac_status); }; }; then
3890838905 ac_cv_func_connect=yes
3890938906 else
3891338910 fi
3891438911 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3891538912 fi
38916 echo "$as_me:38917: result: $ac_cv_func_connect" >&5
38913 echo "$as_me:38914: result: $ac_cv_func_connect" >&5
3891738914 echo "${ECHO_T}$ac_cv_func_connect" >&6
3891838915
3891938916 if test $ac_cv_func_connect = no; then
38920 echo "$as_me:38921: checking for connect in -lsocket" >&5
38917 echo "$as_me:38918: checking for connect in -lsocket" >&5
3892138918 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6
3892238919 if test "${ac_cv_lib_socket_connect+set}" = set; then
3892338920 echo $ECHO_N "(cached) $ECHO_C" >&6
3892538922 ac_check_lib_save_LIBS=$LIBS
3892638923 LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
3892738924 cat >conftest.$ac_ext <<_ACEOF
38928 #line 38929 "configure"
38925 #line 38926 "configure"
3892938926 #include "confdefs.h"
3893038927
3893138928 /* Override any gcc2 internal prototype to avoid an error. */
3894438941 }
3894538942 _ACEOF
3894638943 rm -f conftest.$ac_objext conftest$ac_exeext
38947 if { (eval echo "$as_me:38948: \"$ac_link\"") >&5
38944 if { (eval echo "$as_me:38945: \"$ac_link\"") >&5
3894838945 (eval $ac_link) 2>&5
3894938946 ac_status=$?
38950 echo "$as_me:38951: \$? = $ac_status" >&5
38947 echo "$as_me:38948: \$? = $ac_status" >&5
3895138948 (exit $ac_status); } &&
3895238949 { ac_try='test -s conftest$ac_exeext'
38953 { (eval echo "$as_me:38954: \"$ac_try\"") >&5
38950 { (eval echo "$as_me:38951: \"$ac_try\"") >&5
3895438951 (eval $ac_try) 2>&5
3895538952 ac_status=$?
38956 echo "$as_me:38957: \$? = $ac_status" >&5
38953 echo "$as_me:38954: \$? = $ac_status" >&5
3895738954 (exit $ac_status); }; }; then
3895838955 ac_cv_lib_socket_connect=yes
3895938956 else
3896438961 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3896538962 LIBS=$ac_check_lib_save_LIBS
3896638963 fi
38967 echo "$as_me:38968: result: $ac_cv_lib_socket_connect" >&5
38964 echo "$as_me:38965: result: $ac_cv_lib_socket_connect" >&5
3896838965 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6
3896938966 if test $ac_cv_lib_socket_connect = yes; then
3897038967 X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
3897338970 fi
3897438971
3897538972 # Guillermo Gomez says -lposix is necessary on A/UX.
38976 echo "$as_me:38977: checking for remove" >&5
38973 echo "$as_me:38974: checking for remove" >&5
3897738974 echo $ECHO_N "checking for remove... $ECHO_C" >&6
3897838975 if test "${ac_cv_func_remove+set}" = set; then
3897938976 echo $ECHO_N "(cached) $ECHO_C" >&6
3898038977 else
3898138978 cat >conftest.$ac_ext <<_ACEOF
38982 #line 38983 "configure"
38979 #line 38980 "configure"
3898338980 #include "confdefs.h"
3898438981 /* System header to define __stub macros and hopefully few prototypes,
3898538982 which can conflict with char remove (); below. */
3901039007 }
3901139008 _ACEOF
3901239009 rm -f conftest.$ac_objext conftest$ac_exeext
39013 if { (eval echo "$as_me:39014: \"$ac_link\"") >&5
39010 if { (eval echo "$as_me:39011: \"$ac_link\"") >&5
3901439011 (eval $ac_link) 2>&5
3901539012 ac_status=$?
39016 echo "$as_me:39017: \$? = $ac_status" >&5
39013 echo "$as_me:39014: \$? = $ac_status" >&5
3901739014 (exit $ac_status); } &&
3901839015 { ac_try='test -s conftest$ac_exeext'
39019 { (eval echo "$as_me:39020: \"$ac_try\"") >&5
39016 { (eval echo "$as_me:39017: \"$ac_try\"") >&5
3902039017 (eval $ac_try) 2>&5
3902139018 ac_status=$?
39022 echo "$as_me:39023: \$? = $ac_status" >&5
39019 echo "$as_me:39020: \$? = $ac_status" >&5
3902339020 (exit $ac_status); }; }; then
3902439021 ac_cv_func_remove=yes
3902539022 else
3902939026 fi
3903039027 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3903139028 fi
39032 echo "$as_me:39033: result: $ac_cv_func_remove" >&5
39029 echo "$as_me:39030: result: $ac_cv_func_remove" >&5
3903339030 echo "${ECHO_T}$ac_cv_func_remove" >&6
3903439031
3903539032 if test $ac_cv_func_remove = no; then
39036 echo "$as_me:39037: checking for remove in -lposix" >&5
39033 echo "$as_me:39034: checking for remove in -lposix" >&5
3903739034 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6
3903839035 if test "${ac_cv_lib_posix_remove+set}" = set; then
3903939036 echo $ECHO_N "(cached) $ECHO_C" >&6
3904139038 ac_check_lib_save_LIBS=$LIBS
3904239039 LIBS="-lposix $LIBS"
3904339040 cat >conftest.$ac_ext <<_ACEOF
39044 #line 39045 "configure"
39041 #line 39042 "configure"
3904539042 #include "confdefs.h"
3904639043
3904739044 /* Override any gcc2 internal prototype to avoid an error. */
3906039057 }
3906139058 _ACEOF
3906239059 rm -f conftest.$ac_objext conftest$ac_exeext
39063 if { (eval echo "$as_me:39064: \"$ac_link\"") >&5
39060 if { (eval echo "$as_me:39061: \"$ac_link\"") >&5
3906439061 (eval $ac_link) 2>&5
3906539062 ac_status=$?
39066 echo "$as_me:39067: \$? = $ac_status" >&5
39063 echo "$as_me:39064: \$? = $ac_status" >&5
3906739064 (exit $ac_status); } &&
3906839065 { ac_try='test -s conftest$ac_exeext'
39069 { (eval echo "$as_me:39070: \"$ac_try\"") >&5
39066 { (eval echo "$as_me:39067: \"$ac_try\"") >&5
3907039067 (eval $ac_try) 2>&5
3907139068 ac_status=$?
39072 echo "$as_me:39073: \$? = $ac_status" >&5
39069 echo "$as_me:39070: \$? = $ac_status" >&5
3907339070 (exit $ac_status); }; }; then
3907439071 ac_cv_lib_posix_remove=yes
3907539072 else
3908039077 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3908139078 LIBS=$ac_check_lib_save_LIBS
3908239079 fi
39083 echo "$as_me:39084: result: $ac_cv_lib_posix_remove" >&5
39080 echo "$as_me:39081: result: $ac_cv_lib_posix_remove" >&5
3908439081 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6
3908539082 if test $ac_cv_lib_posix_remove = yes; then
3908639083 X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
3908939086 fi
3909039087
3909139088 # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
39092 echo "$as_me:39093: checking for shmat" >&5
39089 echo "$as_me:39090: checking for shmat" >&5
3909339090 echo $ECHO_N "checking for shmat... $ECHO_C" >&6
3909439091 if test "${ac_cv_func_shmat+set}" = set; then
3909539092 echo $ECHO_N "(cached) $ECHO_C" >&6
3909639093 else
3909739094 cat >conftest.$ac_ext <<_ACEOF
39098 #line 39099 "configure"
39095 #line 39096 "configure"
3909939096 #include "confdefs.h"
3910039097 /* System header to define __stub macros and hopefully few prototypes,
3910139098 which can conflict with char shmat (); below. */
3912639123 }
3912739124 _ACEOF
3912839125 rm -f conftest.$ac_objext conftest$ac_exeext
39129 if { (eval echo "$as_me:39130: \"$ac_link\"") >&5
39126 if { (eval echo "$as_me:39127: \"$ac_link\"") >&5
3913039127 (eval $ac_link) 2>&5
3913139128 ac_status=$?
39132 echo "$as_me:39133: \$? = $ac_status" >&5
39129 echo "$as_me:39130: \$? = $ac_status" >&5
3913339130 (exit $ac_status); } &&
3913439131 { ac_try='test -s conftest$ac_exeext'
39135 { (eval echo "$as_me:39136: \"$ac_try\"") >&5
39132 { (eval echo "$as_me:39133: \"$ac_try\"") >&5
3913639133 (eval $ac_try) 2>&5
3913739134 ac_status=$?
39138 echo "$as_me:39139: \$? = $ac_status" >&5
39135 echo "$as_me:39136: \$? = $ac_status" >&5
3913939136 (exit $ac_status); }; }; then
3914039137 ac_cv_func_shmat=yes
3914139138 else
3914539142 fi
3914639143 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3914739144 fi
39148 echo "$as_me:39149: result: $ac_cv_func_shmat" >&5
39145 echo "$as_me:39146: result: $ac_cv_func_shmat" >&5
3914939146 echo "${ECHO_T}$ac_cv_func_shmat" >&6
3915039147
3915139148 if test $ac_cv_func_shmat = no; then
39152 echo "$as_me:39153: checking for shmat in -lipc" >&5
39149 echo "$as_me:39150: checking for shmat in -lipc" >&5
3915339150 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6
3915439151 if test "${ac_cv_lib_ipc_shmat+set}" = set; then
3915539152 echo $ECHO_N "(cached) $ECHO_C" >&6
3915739154 ac_check_lib_save_LIBS=$LIBS
3915839155 LIBS="-lipc $LIBS"
3915939156 cat >conftest.$ac_ext <<_ACEOF
39160 #line 39161 "configure"
39157 #line 39158 "configure"
3916139158 #include "confdefs.h"
3916239159
3916339160 /* Override any gcc2 internal prototype to avoid an error. */
3917639173 }
3917739174 _ACEOF
3917839175 rm -f conftest.$ac_objext conftest$ac_exeext
39179 if { (eval echo "$as_me:39180: \"$ac_link\"") >&5
39176 if { (eval echo "$as_me:39177: \"$ac_link\"") >&5
3918039177 (eval $ac_link) 2>&5
3918139178 ac_status=$?
39182 echo "$as_me:39183: \$? = $ac_status" >&5
39179 echo "$as_me:39180: \$? = $ac_status" >&5
3918339180 (exit $ac_status); } &&
3918439181 { ac_try='test -s conftest$ac_exeext'
39185 { (eval echo "$as_me:39186: \"$ac_try\"") >&5
39182 { (eval echo "$as_me:39183: \"$ac_try\"") >&5
3918639183 (eval $ac_try) 2>&5
3918739184 ac_status=$?
39188 echo "$as_me:39189: \$? = $ac_status" >&5
39185 echo "$as_me:39186: \$? = $ac_status" >&5
3918939186 (exit $ac_status); }; }; then
3919039187 ac_cv_lib_ipc_shmat=yes
3919139188 else
3919639193 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3919739194 LIBS=$ac_check_lib_save_LIBS
3919839195 fi
39199 echo "$as_me:39200: result: $ac_cv_lib_ipc_shmat" >&5
39196 echo "$as_me:39197: result: $ac_cv_lib_ipc_shmat" >&5
3920039197 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6
3920139198 if test $ac_cv_lib_ipc_shmat = yes; then
3920239199 X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
3921439211 # These have to be linked with before -lX11, unlike the other
3921539212 # libraries we check for below, so use a different variable.
3921639213 # John Interrante, Karl Berry
39217 echo "$as_me:39218: checking for IceConnectionNumber in -lICE" >&5
39214 echo "$as_me:39215: checking for IceConnectionNumber in -lICE" >&5
3921839215 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6
3921939216 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
3922039217 echo $ECHO_N "(cached) $ECHO_C" >&6
3922239219 ac_check_lib_save_LIBS=$LIBS
3922339220 LIBS="-lICE $X_EXTRA_LIBS $LIBS"
3922439221 cat >conftest.$ac_ext <<_ACEOF
39225 #line 39226 "configure"
39222 #line 39223 "configure"
3922639223 #include "confdefs.h"
3922739224
3922839225 /* Override any gcc2 internal prototype to avoid an error. */
3924139238 }
3924239239 _ACEOF
3924339240 rm -f conftest.$ac_objext conftest$ac_exeext
39244 if { (eval echo "$as_me:39245: \"$ac_link\"") >&5
39241 if { (eval echo "$as_me:39242: \"$ac_link\"") >&5
3924539242 (eval $ac_link) 2>&5
3924639243 ac_status=$?
39247 echo "$as_me:39248: \$? = $ac_status" >&5
39244 echo "$as_me:39245: \$? = $ac_status" >&5
3924839245 (exit $ac_status); } &&
3924939246 { ac_try='test -s conftest$ac_exeext'
39250 { (eval echo "$as_me:39251: \"$ac_try\"") >&5
39247 { (eval echo "$as_me:39248: \"$ac_try\"") >&5
3925139248 (eval $ac_try) 2>&5
3925239249 ac_status=$?
39253 echo "$as_me:39254: \$? = $ac_status" >&5
39250 echo "$as_me:39251: \$? = $ac_status" >&5
3925439251 (exit $ac_status); }; }; then
3925539252 ac_cv_lib_ICE_IceConnectionNumber=yes
3925639253 else
3926139258 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3926239259 LIBS=$ac_check_lib_save_LIBS
3926339260 fi
39264 echo "$as_me:39265: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
39261 echo "$as_me:39262: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
3926539262 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6
3926639263 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
3926739264 X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
3927339270
3927439271 cf_x_athena=${cf_x_athena:-Xaw}
3927539272
39276 echo "$as_me:39277: checking if you want to link with Xaw 3d library" >&5
39273 echo "$as_me:39274: checking if you want to link with Xaw 3d library" >&5
3927739274 echo $ECHO_N "checking if you want to link with Xaw 3d library... $ECHO_C" >&6
3927839275 withval=
3927939276
3928439281 fi;
3928539282 if test "$withval" = yes ; then
3928639283 cf_x_athena=Xaw3d
39287 echo "$as_me:39288: result: yes" >&5
39284 echo "$as_me:39285: result: yes" >&5
3928839285 echo "${ECHO_T}yes" >&6
3928939286 else
39290 echo "$as_me:39291: result: no" >&5
39287 echo "$as_me:39288: result: no" >&5
3929139288 echo "${ECHO_T}no" >&6
3929239289 fi
3929339290
39294 echo "$as_me:39295: checking if you want to link with neXT Athena library" >&5
39291 echo "$as_me:39292: checking if you want to link with neXT Athena library" >&5
3929539292 echo $ECHO_N "checking if you want to link with neXT Athena library... $ECHO_C" >&6
3929639293 withval=
3929739294
3930239299 fi;
3930339300 if test "$withval" = yes ; then
3930439301 cf_x_athena=neXtaw
39305 echo "$as_me:39306: result: yes" >&5
39302 echo "$as_me:39303: result: yes" >&5
3930639303 echo "${ECHO_T}yes" >&6
3930739304 else
39308 echo "$as_me:39309: result: no" >&5
39305 echo "$as_me:39306: result: no" >&5
3930939306 echo "${ECHO_T}no" >&6
3931039307 fi
3931139308
39312 echo "$as_me:39313: checking if you want to link with Athena-Plus library" >&5
39309 echo "$as_me:39310: checking if you want to link with Athena-Plus library" >&5
3931339310 echo $ECHO_N "checking if you want to link with Athena-Plus library... $ECHO_C" >&6
3931439311 withval=
3931539312
3932039317 fi;
3932139318 if test "$withval" = yes ; then
3932239319 cf_x_athena=XawPlus
39323 echo "$as_me:39324: result: yes" >&5
39320 echo "$as_me:39321: result: yes" >&5
3932439321 echo "${ECHO_T}yes" >&6
3932539322 else
39326 echo "$as_me:39327: result: no" >&5
39323 echo "$as_me:39324: result: no" >&5
3932739324 echo "${ECHO_T}no" >&6
3932839325 fi
3932939326
3934339340 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists $cf_athena_pkg; then
3934439341 test -n "$verbose" && echo " found package $cf_athena_pkg" 1>&6
3934539342
39346 echo "${as_me:-configure}:39347: testing found package $cf_athena_pkg ..." 1>&5
39343 echo "${as_me:-configure}:39344: testing found package $cf_athena_pkg ..." 1>&5
3934739344
3934839345 cf_pkgconfig_incs="`$PKG_CONFIG --cflags $cf_athena_pkg 2>/dev/null`"
3934939346 cf_pkgconfig_libs="`$PKG_CONFIG --libs $cf_athena_pkg 2>/dev/null`"
3935039347 test -n "$verbose" && echo " package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs" 1>&6
3935139348
39352 echo "${as_me:-configure}:39353: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5
39349 echo "${as_me:-configure}:39350: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5
3935339350
3935439351 test -n "$verbose" && echo " package $cf_athena_pkg LIBS: $cf_pkgconfig_libs" 1>&6
3935539352
39356 echo "${as_me:-configure}:39357: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5
39353 echo "${as_me:-configure}:39354: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5
3935739354
3935839355 cf_fix_cppflags=no
3935939356 cf_new_cflags=
3945039447 LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'`
3945139448 test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6
3945239449
39453 echo "${as_me:-configure}:39454: testing ..trimmed $LIBS ..." 1>&5
39450 echo "${as_me:-configure}:39451: testing ..trimmed $LIBS ..." 1>&5
3945439451
3945539452 ;;
3945639453 esac
3945739454 done
3945839455
39459 echo "$as_me:39460: checking for usable $cf_x_athena/Xmu package" >&5
39456 echo "$as_me:39457: checking for usable $cf_x_athena/Xmu package" >&5
3946039457 echo $ECHO_N "checking for usable $cf_x_athena/Xmu package... $ECHO_C" >&6
3946139458 if test "${cf_cv_xaw_compat+set}" = set; then
3946239459 echo $ECHO_N "(cached) $ECHO_C" >&6
3946339460 else
3946439461
3946539462 cat >conftest.$ac_ext <<_ACEOF
39466 #line 39467 "configure"
39463 #line 39464 "configure"
3946739464 #include "confdefs.h"
3946839465
3946939466 #include <X11/Xmu/CharSet.h>
3947939476 }
3948039477 _ACEOF
3948139478 rm -f conftest.$ac_objext conftest$ac_exeext
39482 if { (eval echo "$as_me:39483: \"$ac_link\"") >&5
39479 if { (eval echo "$as_me:39480: \"$ac_link\"") >&5
3948339480 (eval $ac_link) 2>&5
3948439481 ac_status=$?
39485 echo "$as_me:39486: \$? = $ac_status" >&5
39482 echo "$as_me:39483: \$? = $ac_status" >&5
3948639483 (exit $ac_status); } &&
3948739484 { ac_try='test -s conftest$ac_exeext'
39488 { (eval echo "$as_me:39489: \"$ac_try\"") >&5
39485 { (eval echo "$as_me:39486: \"$ac_try\"") >&5
3948939486 (eval $ac_try) 2>&5
3949039487 ac_status=$?
39491 echo "$as_me:39492: \$? = $ac_status" >&5
39488 echo "$as_me:39489: \$? = $ac_status" >&5
3949239489 (exit $ac_status); }; }; then
3949339490 cf_cv_xaw_compat=yes
3949439491 else
3949839495 fi
3949939496 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3950039497 fi
39501 echo "$as_me:39502: result: $cf_cv_xaw_compat" >&5
39498 echo "$as_me:39499: result: $cf_cv_xaw_compat" >&5
3950239499 echo "${ECHO_T}$cf_cv_xaw_compat" >&6
3950339500
3950439501 if test "$cf_cv_xaw_compat" = no
3951039507 *)
3951139508 test -n "$verbose" && echo " work around broken package" 1>&6
3951239509
39513 echo "${as_me:-configure}:39514: testing work around broken package ..." 1>&5
39510 echo "${as_me:-configure}:39511: testing work around broken package ..." 1>&5
3951439511
3951539512 cf_save_xmu="$LIBS"
3951639513 cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'`
3951839515 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xmu; then
3951939516 test -n "$verbose" && echo " found package xmu" 1>&6
3952039517
39521 echo "${as_me:-configure}:39522: testing found package xmu ..." 1>&5
39518 echo "${as_me:-configure}:39519: testing found package xmu ..." 1>&5
3952239519
3952339520 cf_pkgconfig_incs="`$PKG_CONFIG --cflags xmu 2>/dev/null`"
3952439521 cf_pkgconfig_libs="`$PKG_CONFIG --libs xmu 2>/dev/null`"
3952539522 test -n "$verbose" && echo " package xmu CFLAGS: $cf_pkgconfig_incs" 1>&6
3952639523
39527 echo "${as_me:-configure}:39528: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5
39524 echo "${as_me:-configure}:39525: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5
3952839525
3952939526 test -n "$verbose" && echo " package xmu LIBS: $cf_pkgconfig_libs" 1>&6
3953039527
39531 echo "${as_me:-configure}:39532: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5
39528 echo "${as_me:-configure}:39529: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5
3953239529
3953339530 cf_fix_cppflags=no
3953439531 cf_new_cflags=
3961439611
3961539612 test -n "$verbose" && echo " ...before $LIBS" 1>&6
3961639613
39617 echo "${as_me:-configure}:39618: testing ...before $LIBS ..." 1>&5
39614 echo "${as_me:-configure}:39615: testing ...before $LIBS ..." 1>&5
3961839615
3961939616 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib $cf_pkgconfig_libs %" -e 's% % %g'`
3962039617 test -n "$verbose" && echo " ...after $LIBS" 1>&6
3962139618
39622 echo "${as_me:-configure}:39623: testing ...after $LIBS ..." 1>&5
39619 echo "${as_me:-configure}:39620: testing ...after $LIBS ..." 1>&5
3962339620
3962439621 else
3962539622 cf_pkgconfig_incs=
3962739624
3962839625 test -n "$verbose" && echo " ...before $LIBS" 1>&6
3962939626
39630 echo "${as_me:-configure}:39631: testing ...before $LIBS ..." 1>&5
39627 echo "${as_me:-configure}:39628: testing ...before $LIBS ..." 1>&5
3963139628
3963239629 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's% % %g'`
3963339630 test -n "$verbose" && echo " ...after $LIBS" 1>&6
3963439631
39635 echo "${as_me:-configure}:39636: testing ...after $LIBS ..." 1>&5
39632 echo "${as_me:-configure}:39633: testing ...after $LIBS ..." 1>&5
3963639633
3963739634 fi
3963839635
3964339640 LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'`
3964439641 test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6
3964539642
39646 echo "${as_me:-configure}:39647: testing ..trimmed $LIBS ..." 1>&5
39643 echo "${as_me:-configure}:39644: testing ..trimmed $LIBS ..." 1>&5
3964739644
3964839645 ;;
3964939646 esac
3966839665 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists Xext; then
3966939666 test -n "$verbose" && echo " found package Xext" 1>&6
3967039667
39671 echo "${as_me:-configure}:39672: testing found package Xext ..." 1>&5
39668 echo "${as_me:-configure}:39669: testing found package Xext ..." 1>&5
3967239669
3967339670 cf_pkgconfig_incs="`$PKG_CONFIG --cflags Xext 2>/dev/null`"
3967439671 cf_pkgconfig_libs="`$PKG_CONFIG --libs Xext 2>/dev/null`"
3967539672 test -n "$verbose" && echo " package Xext CFLAGS: $cf_pkgconfig_incs" 1>&6
3967639673
39677 echo "${as_me:-configure}:39678: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5
39674 echo "${as_me:-configure}:39675: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5
3967839675
3967939676 test -n "$verbose" && echo " package Xext LIBS: $cf_pkgconfig_libs" 1>&6
3968039677
39681 echo "${as_me:-configure}:39682: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5
39678 echo "${as_me:-configure}:39679: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5
3968239679
3968339680 cf_fix_cppflags=no
3968439681 cf_new_cflags=
3976439761 cf_pkgconfig_incs=
3976539762 cf_pkgconfig_libs=
3976639763
39767 echo "$as_me:39768: checking for XextCreateExtension in -lXext" >&5
39764 echo "$as_me:39765: checking for XextCreateExtension in -lXext" >&5
3976839765 echo $ECHO_N "checking for XextCreateExtension in -lXext... $ECHO_C" >&6
3976939766 if test "${ac_cv_lib_Xext_XextCreateExtension+set}" = set; then
3977039767 echo $ECHO_N "(cached) $ECHO_C" >&6
3977239769 ac_check_lib_save_LIBS=$LIBS
3977339770 LIBS="-lXext $LIBS"
3977439771 cat >conftest.$ac_ext <<_ACEOF
39775 #line 39776 "configure"
39772 #line 39773 "configure"
3977639773 #include "confdefs.h"
3977739774
3977839775 /* Override any gcc2 internal prototype to avoid an error. */
3979139788 }
3979239789 _ACEOF
3979339790 rm -f conftest.$ac_objext conftest$ac_exeext
39794 if { (eval echo "$as_me:39795: \"$ac_link\"") >&5
39791 if { (eval echo "$as_me:39792: \"$ac_link\"") >&5
3979539792 (eval $ac_link) 2>&5
3979639793 ac_status=$?
39797 echo "$as_me:39798: \$? = $ac_status" >&5
39794 echo "$as_me:39795: \$? = $ac_status" >&5
3979839795 (exit $ac_status); } &&
3979939796 { ac_try='test -s conftest$ac_exeext'
39800 { (eval echo "$as_me:39801: \"$ac_try\"") >&5
39797 { (eval echo "$as_me:39798: \"$ac_try\"") >&5
3980139798 (eval $ac_try) 2>&5
3980239799 ac_status=$?
39803 echo "$as_me:39804: \$? = $ac_status" >&5
39800 echo "$as_me:39801: \$? = $ac_status" >&5
3980439801 (exit $ac_status); }; }; then
3980539802 ac_cv_lib_Xext_XextCreateExtension=yes
3980639803 else
3981139808 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3981239809 LIBS=$ac_check_lib_save_LIBS
3981339810 fi
39814 echo "$as_me:39815: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
39811 echo "$as_me:39812: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
3981539812 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6
3981639813 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then
3981739814 LIBS="-lXext $LIBS"
3982439821 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xt; then
3982539822 test -n "$verbose" && echo " found package xt" 1>&6
3982639823
39827 echo "${as_me:-configure}:39828: testing found package xt ..." 1>&5
39824 echo "${as_me:-configure}:39825: testing found package xt ..." 1>&5
3982839825
3982939826 cf_pkgconfig_incs="`$PKG_CONFIG --cflags xt 2>/dev/null`"
3983039827 cf_pkgconfig_libs="`$PKG_CONFIG --libs xt 2>/dev/null`"
3983139828 test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6
3983239829
39833 echo "${as_me:-configure}:39834: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
39830 echo "${as_me:-configure}:39831: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
3983439831
3983539832 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6
3983639833
39837 echo "${as_me:-configure}:39838: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
39834 echo "${as_me:-configure}:39835: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
3983839835
3983939836 cf_fix_cppflags=no
3984039837 cf_new_cflags=
3992139918 ;;
3992239919 *)
3992339920 # we have an "xt" package, but it may omit Xt's dependency on X11
39924 echo "$as_me:39925: checking for usable X dependency" >&5
39921 echo "$as_me:39922: checking for usable X dependency" >&5
3992539922 echo $ECHO_N "checking for usable X dependency... $ECHO_C" >&6
3992639923 if test "${cf_cv_xt_x11_compat+set}" = set; then
3992739924 echo $ECHO_N "(cached) $ECHO_C" >&6
3992839925 else
3992939926
3993039927 cat >conftest.$ac_ext <<_ACEOF
39931 #line 39932 "configure"
39928 #line 39929 "configure"
3993239929 #include "confdefs.h"
3993339930
3993439931 #include <X11/Xlib.h>
3994739944 }
3994839945 _ACEOF
3994939946 rm -f conftest.$ac_objext conftest$ac_exeext
39950 if { (eval echo "$as_me:39951: \"$ac_link\"") >&5
39947 if { (eval echo "$as_me:39948: \"$ac_link\"") >&5
3995139948 (eval $ac_link) 2>&5
3995239949 ac_status=$?
39953 echo "$as_me:39954: \$? = $ac_status" >&5
39950 echo "$as_me:39951: \$? = $ac_status" >&5
3995439951 (exit $ac_status); } &&
3995539952 { ac_try='test -s conftest$ac_exeext'
39956 { (eval echo "$as_me:39957: \"$ac_try\"") >&5
39953 { (eval echo "$as_me:39954: \"$ac_try\"") >&5
3995739954 (eval $ac_try) 2>&5
3995839955 ac_status=$?
39959 echo "$as_me:39960: \$? = $ac_status" >&5
39956 echo "$as_me:39957: \$? = $ac_status" >&5
3996039957 (exit $ac_status); }; }; then
3996139958 cf_cv_xt_x11_compat=yes
3996239959 else
3996639963 fi
3996739964 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3996839965 fi
39969 echo "$as_me:39970: result: $cf_cv_xt_x11_compat" >&5
39966 echo "$as_me:39967: result: $cf_cv_xt_x11_compat" >&5
3997039967 echo "${ECHO_T}$cf_cv_xt_x11_compat" >&6
3997139968 if test "$cf_cv_xt_x11_compat" = no
3997239969 then
3997339970 test -n "$verbose" && echo " work around broken X11 dependency" 1>&6
3997439971
39975 echo "${as_me:-configure}:39976: testing work around broken X11 dependency ..." 1>&5
39972 echo "${as_me:-configure}:39973: testing work around broken X11 dependency ..." 1>&5
3997639973
3997739974 # 2010/11/19 - good enough until a working Xt on Xcb is delivered.
3997839975
3997939976 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then
3998039977 test -n "$verbose" && echo " found package x11" 1>&6
3998139978
39982 echo "${as_me:-configure}:39983: testing found package x11 ..." 1>&5
39979 echo "${as_me:-configure}:39980: testing found package x11 ..." 1>&5
3998339980
3998439981 cf_pkgconfig_incs="`$PKG_CONFIG --cflags x11 2>/dev/null`"
3998539982 cf_pkgconfig_libs="`$PKG_CONFIG --libs x11 2>/dev/null`"
3998639983 test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6
3998739984
39988 echo "${as_me:-configure}:39989: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
39985 echo "${as_me:-configure}:39986: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
3998939986
3999039987 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6
3999139988
39992 echo "${as_me:-configure}:39993: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
39989 echo "${as_me:-configure}:39990: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
3999339990
3999439991 cf_fix_cppflags=no
3999539992 cf_new_cflags=
4007740074
4007840075 test -n "$verbose" && echo " ...before $LIBS" 1>&6
4007940076
40080 echo "${as_me:-configure}:40081: testing ...before $LIBS ..." 1>&5
40077 echo "${as_me:-configure}:40078: testing ...before $LIBS ..." 1>&5
4008140078
4008240079 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt -lX11 %" -e 's% % %g'`
4008340080 test -n "$verbose" && echo " ...after $LIBS" 1>&6
4008440081
40085 echo "${as_me:-configure}:40086: testing ...after $LIBS ..." 1>&5
40082 echo "${as_me:-configure}:40083: testing ...after $LIBS ..." 1>&5
4008640083
4008740084 fi
4008840085
4009040087 ;;
4009140088 esac
4009240089
40093 echo "$as_me:40094: checking for usable X Toolkit package" >&5
40090 echo "$as_me:40091: checking for usable X Toolkit package" >&5
4009440091 echo $ECHO_N "checking for usable X Toolkit package... $ECHO_C" >&6
4009540092 if test "${cf_cv_xt_ice_compat+set}" = set; then
4009640093 echo $ECHO_N "(cached) $ECHO_C" >&6
4009740094 else
4009840095
4009940096 cat >conftest.$ac_ext <<_ACEOF
40100 #line 40101 "configure"
40097 #line 40098 "configure"
4010140098 #include "confdefs.h"
4010240099
4010340100 #include <X11/Shell.h>
4011240109 }
4011340110 _ACEOF
4011440111 rm -f conftest.$ac_objext conftest$ac_exeext
40115 if { (eval echo "$as_me:40116: \"$ac_link\"") >&5
40112 if { (eval echo "$as_me:40113: \"$ac_link\"") >&5
4011640113 (eval $ac_link) 2>&5
4011740114 ac_status=$?
40118 echo "$as_me:40119: \$? = $ac_status" >&5
40115 echo "$as_me:40116: \$? = $ac_status" >&5
4011940116 (exit $ac_status); } &&
4012040117 { ac_try='test -s conftest$ac_exeext'
40121 { (eval echo "$as_me:40122: \"$ac_try\"") >&5
40118 { (eval echo "$as_me:40119: \"$ac_try\"") >&5
4012240119 (eval $ac_try) 2>&5
4012340120 ac_status=$?
40124 echo "$as_me:40125: \$? = $ac_status" >&5
40121 echo "$as_me:40122: \$? = $ac_status" >&5
4012540122 (exit $ac_status); }; }; then
4012640123 cf_cv_xt_ice_compat=yes
4012740124 else
4013140128 fi
4013240129 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4013340130 fi
40134 echo "$as_me:40135: result: $cf_cv_xt_ice_compat" >&5
40131 echo "$as_me:40132: result: $cf_cv_xt_ice_compat" >&5
4013540132 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6
4013640133
4013740134 if test "$cf_cv_xt_ice_compat" = no
4014540142 *)
4014640143 test -n "$verbose" && echo " work around broken ICE dependency" 1>&6
4014740144
40148 echo "${as_me:-configure}:40149: testing work around broken ICE dependency ..." 1>&5
40145 echo "${as_me:-configure}:40146: testing work around broken ICE dependency ..." 1>&5
4014940146
4015040147 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then
4015140148 test -n "$verbose" && echo " found package ice" 1>&6
4015240149
40153 echo "${as_me:-configure}:40154: testing found package ice ..." 1>&5
40150 echo "${as_me:-configure}:40151: testing found package ice ..." 1>&5
4015440151
4015540152 cf_pkgconfig_incs="`$PKG_CONFIG --cflags ice 2>/dev/null`"
4015640153 cf_pkgconfig_libs="`$PKG_CONFIG --libs ice 2>/dev/null`"
4015740154 test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6
4015840155
40159 echo "${as_me:-configure}:40160: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
40156 echo "${as_me:-configure}:40157: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
4016040157
4016140158 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6
4016240159
40163 echo "${as_me:-configure}:40164: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
40160 echo "${as_me:-configure}:40161: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
4016440161
4016540162 cf_fix_cppflags=no
4016640163 cf_new_cflags=
4024540242 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then
4024640243 test -n "$verbose" && echo " found package sm" 1>&6
4024740244
40248 echo "${as_me:-configure}:40249: testing found package sm ..." 1>&5
40245 echo "${as_me:-configure}:40246: testing found package sm ..." 1>&5
4024940246
4025040247 cf_pkgconfig_incs="`$PKG_CONFIG --cflags sm 2>/dev/null`"
4025140248 cf_pkgconfig_libs="`$PKG_CONFIG --libs sm 2>/dev/null`"
4025240249 test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6
4025340250
40254 echo "${as_me:-configure}:40255: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
40251 echo "${as_me:-configure}:40252: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
4025540252
4025640253 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6
4025740254
40258 echo "${as_me:-configure}:40259: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
40255 echo "${as_me:-configure}:40256: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
4025940256
4026040257 cf_fix_cppflags=no
4026140258 cf_new_cflags=
4034940346
4035040347 test -n "$verbose" && echo " ...before $LIBS" 1>&6
4035140348
40352 echo "${as_me:-configure}:40353: testing ...before $LIBS ..." 1>&5
40349 echo "${as_me:-configure}:40350: testing ...before $LIBS ..." 1>&5
4035340350
4035440351 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt $X_PRE_LIBS %" -e 's% % %g'`
4035540352 test -n "$verbose" && echo " ...after $LIBS" 1>&6
4035640353
40357 echo "${as_me:-configure}:40358: testing ...after $LIBS ..." 1>&5
40354 echo "${as_me:-configure}:40355: testing ...after $LIBS ..." 1>&5
4035840355
4035940356 fi
4036040357
4037440371
4037540372 test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6
4037640373
40377 echo "${as_me:-configure}:40378: testing checking additions to CFLAGS ..." 1>&5
40374 echo "${as_me:-configure}:40375: testing checking additions to CFLAGS ..." 1>&5
4037840375
4037940376 cf_check_cflags="$CFLAGS"
4038040377 cf_check_cppflags="$CPPFLAGS"
4044540442 if test -n "$cf_new_cflags" ; then
4044640443 test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6
4044740444
40448 echo "${as_me:-configure}:40449: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
40445 echo "${as_me:-configure}:40446: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
4044940446
4045040447 CFLAGS="$CFLAGS $cf_new_cflags"
4045140448 fi
4045340450 if test -n "$cf_new_cppflags" ; then
4045440451 test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6
4045540452
40456 echo "${as_me:-configure}:40457: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
40453 echo "${as_me:-configure}:40454: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
4045740454
4045840455 CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
4045940456 fi
4046140458 if test -n "$cf_new_extra_cppflags" ; then
4046240459 test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
4046340460
40464 echo "${as_me:-configure}:40465: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
40461 echo "${as_me:-configure}:40462: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
4046540462
4046640463 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
4046740464 fi
4046840465
4046940466 if test "$cf_check_cflags" != "$CFLAGS" ; then
4047040467 cat >conftest.$ac_ext <<_ACEOF
40471 #line 40472 "configure"
40468 #line 40469 "configure"
4047240469 #include "confdefs.h"
4047340470 #include <stdio.h>
4047440471 int
4048040477 }
4048140478 _ACEOF
4048240479 rm -f conftest.$ac_objext conftest$ac_exeext
40483 if { (eval echo "$as_me:40484: \"$ac_link\"") >&5
40480 if { (eval echo "$as_me:40481: \"$ac_link\"") >&5
4048440481 (eval $ac_link) 2>&5
4048540482 ac_status=$?
40486 echo "$as_me:40487: \$? = $ac_status" >&5
40483 echo "$as_me:40484: \$? = $ac_status" >&5
4048740484 (exit $ac_status); } &&
4048840485 { ac_try='test -s conftest$ac_exeext'
40489 { (eval echo "$as_me:40490: \"$ac_try\"") >&5
40486 { (eval echo "$as_me:40487: \"$ac_try\"") >&5
4049040487 (eval $ac_try) 2>&5
4049140488 ac_status=$?
40492 echo "$as_me:40493: \$? = $ac_status" >&5
40489 echo "$as_me:40490: \$? = $ac_status" >&5
4049340490 (exit $ac_status); }; }; then
4049440491 :
4049540492 else
4049740494 cat conftest.$ac_ext >&5
4049840495 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6
4049940496
40500 echo "${as_me:-configure}:40501: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5
40497 echo "${as_me:-configure}:40498: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5
4050140498
4050240499 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then
4050340500 test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6
4050440501
40505 echo "${as_me:-configure}:40506: testing but keeping change to \$CPPFLAGS ..." 1>&5
40502 echo "${as_me:-configure}:40503: testing but keeping change to \$CPPFLAGS ..." 1>&5
4050640503
4050740504 fi
4050840505 CFLAGS="$cf_check_flags"
4051040507 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4051140508 fi
4051240509
40513 echo "$as_me:40514: checking for XOpenDisplay" >&5
40510 echo "$as_me:40511: checking for XOpenDisplay" >&5
4051440511 echo $ECHO_N "checking for XOpenDisplay... $ECHO_C" >&6
4051540512 if test "${ac_cv_func_XOpenDisplay+set}" = set; then
4051640513 echo $ECHO_N "(cached) $ECHO_C" >&6
4051740514 else
4051840515 cat >conftest.$ac_ext <<_ACEOF
40519 #line 40520 "configure"
40516 #line 40517 "configure"
4052040517 #include "confdefs.h"
4052140518 /* System header to define __stub macros and hopefully few prototypes,
4052240519 which can conflict with char XOpenDisplay (); below. */
4054740544 }
4054840545 _ACEOF
4054940546 rm -f conftest.$ac_objext conftest$ac_exeext
40550 if { (eval echo "$as_me:40551: \"$ac_link\"") >&5
40547 if { (eval echo "$as_me:40548: \"$ac_link\"") >&5
4055140548 (eval $ac_link) 2>&5
4055240549 ac_status=$?
40553 echo "$as_me:40554: \$? = $ac_status" >&5
40550 echo "$as_me:40551: \$? = $ac_status" >&5
4055440551 (exit $ac_status); } &&
4055540552 { ac_try='test -s conftest$ac_exeext'
40556 { (eval echo "$as_me:40557: \"$ac_try\"") >&5
40553 { (eval echo "$as_me:40554: \"$ac_try\"") >&5
4055740554 (eval $ac_try) 2>&5
4055840555 ac_status=$?
40559 echo "$as_me:40560: \$? = $ac_status" >&5
40556 echo "$as_me:40557: \$? = $ac_status" >&5
4056040557 (exit $ac_status); }; }; then
4056140558 ac_cv_func_XOpenDisplay=yes
4056240559 else
4056640563 fi
4056740564 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4056840565 fi
40569 echo "$as_me:40570: result: $ac_cv_func_XOpenDisplay" >&5
40566 echo "$as_me:40567: result: $ac_cv_func_XOpenDisplay" >&5
4057040567 echo "${ECHO_T}$ac_cv_func_XOpenDisplay" >&6
4057140568 if test $ac_cv_func_XOpenDisplay = yes; then
4057240569 :
4057340570 else
4057440571
40575 echo "$as_me:40576: checking for XOpenDisplay in -lX11" >&5
40572 echo "$as_me:40573: checking for XOpenDisplay in -lX11" >&5
4057640573 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
4057740574 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
4057840575 echo $ECHO_N "(cached) $ECHO_C" >&6
4058040577 ac_check_lib_save_LIBS=$LIBS
4058140578 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
4058240579 cat >conftest.$ac_ext <<_ACEOF
40583 #line 40584 "configure"
40580 #line 40581 "configure"
4058440581 #include "confdefs.h"
4058540582
4058640583 /* Override any gcc2 internal prototype to avoid an error. */
4059940596 }
4060040597 _ACEOF
4060140598 rm -f conftest.$ac_objext conftest$ac_exeext
40602 if { (eval echo "$as_me:40603: \"$ac_link\"") >&5
40599 if { (eval echo "$as_me:40600: \"$ac_link\"") >&5
4060340600 (eval $ac_link) 2>&5
4060440601 ac_status=$?
40605 echo "$as_me:40606: \$? = $ac_status" >&5
40602 echo "$as_me:40603: \$? = $ac_status" >&5
4060640603 (exit $ac_status); } &&
4060740604 { ac_try='test -s conftest$ac_exeext'
40608 { (eval echo "$as_me:40609: \"$ac_try\"") >&5
40605 { (eval echo "$as_me:40606: \"$ac_try\"") >&5
4060940606 (eval $ac_try) 2>&5
4061040607 ac_status=$?
40611 echo "$as_me:40612: \$? = $ac_status" >&5
40608 echo "$as_me:40609: \$? = $ac_status" >&5
4061240609 (exit $ac_status); }; }; then
4061340610 ac_cv_lib_X11_XOpenDisplay=yes
4061440611 else
4061940616 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4062040617 LIBS=$ac_check_lib_save_LIBS
4062140618 fi
40622 echo "$as_me:40623: result: $ac_cv_lib_X11_XOpenDisplay" >&5
40619 echo "$as_me:40620: result: $ac_cv_lib_X11_XOpenDisplay" >&5
4062340620 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
4062440621 if test $ac_cv_lib_X11_XOpenDisplay = yes; then
4062540622 LIBS="-lX11 $LIBS"
4062740624
4062840625 fi
4062940626
40630 echo "$as_me:40631: checking for XtAppInitialize" >&5
40627 echo "$as_me:40628: checking for XtAppInitialize" >&5
4063140628 echo $ECHO_N "checking for XtAppInitialize... $ECHO_C" >&6
4063240629 if test "${ac_cv_func_XtAppInitialize+set}" = set; then
4063340630 echo $ECHO_N "(cached) $ECHO_C" >&6
4063440631 else
4063540632 cat >conftest.$ac_ext <<_ACEOF
40636 #line 40637 "configure"
40633 #line 40634 "configure"
4063740634 #include "confdefs.h"
4063840635 /* System header to define __stub macros and hopefully few prototypes,
4063940636 which can conflict with char XtAppInitialize (); below. */
4066440661 }
4066540662 _ACEOF
4066640663 rm -f conftest.$ac_objext conftest$ac_exeext
40667 if { (eval echo "$as_me:40668: \"$ac_link\"") >&5
40664 if { (eval echo "$as_me:40665: \"$ac_link\"") >&5
4066840665 (eval $ac_link) 2>&5
4066940666 ac_status=$?
40670 echo "$as_me:40671: \$? = $ac_status" >&5
40667 echo "$as_me:40668: \$? = $ac_status" >&5
4067140668 (exit $ac_status); } &&
4067240669 { ac_try='test -s conftest$ac_exeext'
40673 { (eval echo "$as_me:40674: \"$ac_try\"") >&5
40670 { (eval echo "$as_me:40671: \"$ac_try\"") >&5
4067440671 (eval $ac_try) 2>&5
4067540672 ac_status=$?
40676 echo "$as_me:40677: \$? = $ac_status" >&5
40673 echo "$as_me:40674: \$? = $ac_status" >&5
4067740674 (exit $ac_status); }; }; then
4067840675 ac_cv_func_XtAppInitialize=yes
4067940676 else
4068340680 fi
4068440681 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4068540682 fi
40686 echo "$as_me:40687: result: $ac_cv_func_XtAppInitialize" >&5
40683 echo "$as_me:40684: result: $ac_cv_func_XtAppInitialize" >&5
4068740684 echo "${ECHO_T}$ac_cv_func_XtAppInitialize" >&6
4068840685 if test $ac_cv_func_XtAppInitialize = yes; then
4068940686 :
4069040687 else
4069140688
40692 echo "$as_me:40693: checking for XtAppInitialize in -lXt" >&5
40689 echo "$as_me:40690: checking for XtAppInitialize in -lXt" >&5
4069340690 echo $ECHO_N "checking for XtAppInitialize in -lXt... $ECHO_C" >&6
4069440691 if test "${ac_cv_lib_Xt_XtAppInitialize+set}" = set; then
4069540692 echo $ECHO_N "(cached) $ECHO_C" >&6
4069740694 ac_check_lib_save_LIBS=$LIBS
4069840695 LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
4069940696 cat >conftest.$ac_ext <<_ACEOF
40700 #line 40701 "configure"
40697 #line 40698 "configure"
4070140698 #include "confdefs.h"
4070240699
4070340700 /* Override any gcc2 internal prototype to avoid an error. */
4071640713 }
4071740714 _ACEOF
4071840715 rm -f conftest.$ac_objext conftest$ac_exeext
40719 if { (eval echo "$as_me:40720: \"$ac_link\"") >&5
40716 if { (eval echo "$as_me:40717: \"$ac_link\"") >&5
4072040717 (eval $ac_link) 2>&5
4072140718 ac_status=$?
40722 echo "$as_me:40723: \$? = $ac_status" >&5
40719 echo "$as_me:40720: \$? = $ac_status" >&5
4072340720 (exit $ac_status); } &&
4072440721 { ac_try='test -s conftest$ac_exeext'
40725 { (eval echo "$as_me:40726: \"$ac_try\"") >&5
40722 { (eval echo "$as_me:40723: \"$ac_try\"") >&5
4072640723 (eval $ac_try) 2>&5
4072740724 ac_status=$?
40728 echo "$as_me:40729: \$? = $ac_status" >&5
40725 echo "$as_me:40726: \$? = $ac_status" >&5
4072940726 (exit $ac_status); }; }; then
4073040727 ac_cv_lib_Xt_XtAppInitialize=yes
4073140728 else
4073640733 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4073740734 LIBS=$ac_check_lib_save_LIBS
4073840735 fi
40739 echo "$as_me:40740: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
40736 echo "$as_me:40737: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
4074040737 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6
4074140738 if test $ac_cv_lib_Xt_XtAppInitialize = yes; then
4074240739
4075340750 fi
4075440751
4075540752 if test $cf_have_X_LIBS = no ; then
40756 { echo "$as_me:40757: WARNING: Unable to successfully link X Toolkit library (-lXt) with
40753 { echo "$as_me:40754: WARNING: Unable to successfully link X Toolkit library (-lXt) with
4075740754 test program. You will have to check and add the proper libraries by hand
4075840755 to makefile." >&5
4075940756 echo "$as_me: WARNING: Unable to successfully link X Toolkit library (-lXt) with
4077540772 cf_test=X11/$cf_x_athena_root/SimpleMenu.h
4077640773 if test $cf_path != default ; then
4077740774 CPPFLAGS="$cf_save -I$cf_path/include"
40778 echo "$as_me:40779: checking for $cf_test in $cf_path" >&5
40775 echo "$as_me:40776: checking for $cf_test in $cf_path" >&5
4077940776 echo $ECHO_N "checking for $cf_test in $cf_path... $ECHO_C" >&6
4078040777 else
40781 echo "$as_me:40782: checking for $cf_test" >&5
40778 echo "$as_me:40779: checking for $cf_test" >&5
4078240779 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6
4078340780 fi
4078440781 cat >conftest.$ac_ext <<_ACEOF
40785 #line 40786 "configure"
40782 #line 40783 "configure"
4078640783 #include "confdefs.h"
4078740784
4078840785 #include <X11/Intrinsic.h>
4079640793 }
4079740794 _ACEOF
4079840795 rm -f conftest.$ac_objext
40799 if { (eval echo "$as_me:40800: \"$ac_compile\"") >&5
40796 if { (eval echo "$as_me:40797: \"$ac_compile\"") >&5
4080040797 (eval $ac_compile) 2>&5
4080140798 ac_status=$?
40802 echo "$as_me:40803: \$? = $ac_status" >&5
40799 echo "$as_me:40800: \$? = $ac_status" >&5
4080340800 (exit $ac_status); } &&
4080440801 { ac_try='test -s conftest.$ac_objext'
40805 { (eval echo "$as_me:40806: \"$ac_try\"") >&5
40802 { (eval echo "$as_me:40803: \"$ac_try\"") >&5
4080640803 (eval $ac_try) 2>&5
4080740804 ac_status=$?
40808 echo "$as_me:40809: \$? = $ac_status" >&5
40805 echo "$as_me:40806: \$? = $ac_status" >&5
4080940806 (exit $ac_status); }; }; then
4081040807 cf_result=yes
4081140808 else
4081440811 cf_result=no
4081540812 fi
4081640813 rm -f conftest.$ac_objext conftest.$ac_ext
40817 echo "$as_me:40818: result: $cf_result" >&5
40814 echo "$as_me:40815: result: $cf_result" >&5
4081840815 echo "${ECHO_T}$cf_result" >&6
4081940816 if test "$cf_result" = yes ; then
4082040817 cf_x_athena_inc=$cf_path
4082640823 done
4082740824
4082840825 if test -z "$cf_x_athena_inc" ; then
40829 { echo "$as_me:40830: WARNING: Unable to successfully find Athena header files with test program" >&5
40826 { echo "$as_me:40827: WARNING: Unable to successfully find Athena header files with test program" >&5
4083040827 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;}
4083140828 elif test "$cf_x_athena_inc" != default ; then
4083240829 CPPFLAGS="$CPPFLAGS -I$cf_x_athena_inc"
4085640853 cf_test=XawSimpleMenuAddGlobalActions
4085740854 if test $cf_path != default ; then
4085840855 LIBS="-L$cf_path/lib $cf_libs $LIBS"
40859 echo "$as_me:40860: checking for $cf_libs in $cf_path" >&5
40856 echo "$as_me:40857: checking for $cf_libs in $cf_path" >&5
4086040857 echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6
4086140858 else
4086240859 LIBS="$cf_libs $LIBS"
40863 echo "$as_me:40864: checking for $cf_test in $cf_libs" >&5
40860 echo "$as_me:40861: checking for $cf_test in $cf_libs" >&5
4086440861 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6
4086540862 fi
4086640863 cat >conftest.$ac_ext <<_ACEOF
40867 #line 40868 "configure"
40864 #line 40865 "configure"
4086840865 #include "confdefs.h"
4086940866
4087040867 #include <X11/Intrinsic.h>
4088040877 }
4088140878 _ACEOF
4088240879 rm -f conftest.$ac_objext conftest$ac_exeext
40883 if { (eval echo "$as_me:40884: \"$ac_link\"") >&5
40880 if { (eval echo "$as_me:40881: \"$ac_link\"") >&5
4088440881 (eval $ac_link) 2>&5
4088540882 ac_status=$?
40886 echo "$as_me:40887: \$? = $ac_status" >&5
40883 echo "$as_me:40884: \$? = $ac_status" >&5
4088740884 (exit $ac_status); } &&
4088840885 { ac_try='test -s conftest$ac_exeext'
40889 { (eval echo "$as_me:40890: \"$ac_try\"") >&5
40886 { (eval echo "$as_me:40887: \"$ac_try\"") >&5
4089040887 (eval $ac_try) 2>&5
4089140888 ac_status=$?
40892 echo "$as_me:40893: \$? = $ac_status" >&5
40889 echo "$as_me:40890: \$? = $ac_status" >&5
4089340890 (exit $ac_status); }; }; then
4089440891 cf_result=yes
4089540892 else
4089840895 cf_result=no
4089940896 fi
4090040897 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
40901 echo "$as_me:40902: result: $cf_result" >&5
40898 echo "$as_me:40899: result: $cf_result" >&5
4090240899 echo "${ECHO_T}$cf_result" >&6
4090340900 if test "$cf_result" = yes ; then
4090440901 cf_x_athena_lib="$cf_libs"
4091240909 done
4091340910
4091440911 if test -z "$cf_x_athena_lib" ; then
40915 { { echo "$as_me:40916: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
40912 { { echo "$as_me:40913: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
4091640913 echo "$as_me: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&2;}
4091740914 { (exit 1); exit 1; }; }
4091840915 fi
4093040927 do
4093140928 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
4093240929 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
40933 echo "$as_me:40934: checking for $ac_word" >&5
40930 echo "$as_me:40931: checking for $ac_word" >&5
4093440931 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4093540932 if test "${ac_cv_prog_XCURSES_CONFIG+set}" = set; then
4093640933 echo $ECHO_N "(cached) $ECHO_C" >&6
4094540942 test -z "$ac_dir" && ac_dir=.
4094640943 $as_executable_p "$ac_dir/$ac_word" || continue
4094740944 ac_cv_prog_XCURSES_CONFIG="$ac_tool_prefix$ac_prog"
40948 echo "$as_me:40949: found $ac_dir/$ac_word" >&5
40945 echo "$as_me:40946: found $ac_dir/$ac_word" >&5
4094940946 break
4095040947 done
4095140948
4095340950 fi
4095440951 XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG
4095540952 if test -n "$XCURSES_CONFIG"; then
40956 echo "$as_me:40957: result: $XCURSES_CONFIG" >&5
40953 echo "$as_me:40954: result: $XCURSES_CONFIG" >&5
4095740954 echo "${ECHO_T}$XCURSES_CONFIG" >&6
4095840955 else
40959 echo "$as_me:40960: result: no" >&5
40956 echo "$as_me:40957: result: no" >&5
4096040957 echo "${ECHO_T}no" >&6
4096140958 fi
4096240959
4096940966 do
4097040967 # Extract the first word of "$ac_prog", so it can be a program name with args.
4097140968 set dummy $ac_prog; ac_word=$2
40972 echo "$as_me:40973: checking for $ac_word" >&5
40969 echo "$as_me:40970: checking for $ac_word" >&5
4097340970 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4097440971 if test "${ac_cv_prog_ac_ct_XCURSES_CONFIG+set}" = set; then
4097540972 echo $ECHO_N "(cached) $ECHO_C" >&6
4098440981 test -z "$ac_dir" && ac_dir=.
4098540982 $as_executable_p "$ac_dir/$ac_word" || continue
4098640983 ac_cv_prog_ac_ct_XCURSES_CONFIG="$ac_prog"
40987 echo "$as_me:40988: found $ac_dir/$ac_word" >&5
40984 echo "$as_me:40985: found $ac_dir/$ac_word" >&5
4098840985 break
4098940986 done
4099040987
4099240989 fi
4099340990 ac_ct_XCURSES_CONFIG=$ac_cv_prog_ac_ct_XCURSES_CONFIG
4099440991 if test -n "$ac_ct_XCURSES_CONFIG"; then
40995 echo "$as_me:40996: result: $ac_ct_XCURSES_CONFIG" >&5
40992 echo "$as_me:40993: result: $ac_ct_XCURSES_CONFIG" >&5
4099640993 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6
4099740994 else
40998 echo "$as_me:40999: result: no" >&5
40995 echo "$as_me:40996: result: no" >&5
4099940996 echo "${ECHO_T}no" >&6
4100040997 fi
4100140998
4101941016
4102041017 test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6
4102141018
41022 echo "${as_me:-configure}:41023: testing checking additions to CFLAGS ..." 1>&5
41019 echo "${as_me:-configure}:41020: testing checking additions to CFLAGS ..." 1>&5
4102341020
4102441021 cf_check_cflags="$CFLAGS"
4102541022 cf_check_cppflags="$CPPFLAGS"
4109041087 if test -n "$cf_new_cflags" ; then
4109141088 test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6
4109241089
41093 echo "${as_me:-configure}:41094: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
41090 echo "${as_me:-configure}:41091: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
4109441091
4109541092 CFLAGS="$CFLAGS $cf_new_cflags"
4109641093 fi
4109841095 if test -n "$cf_new_cppflags" ; then
4109941096 test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6
4110041097
41101 echo "${as_me:-configure}:41102: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
41098 echo "${as_me:-configure}:41099: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
4110241099
4110341100 CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
4110441101 fi
4110641103 if test -n "$cf_new_extra_cppflags" ; then
4110741104 test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
4110841105
41109 echo "${as_me:-configure}:41110: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
41106 echo "${as_me:-configure}:41107: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
4111041107
4111141108 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
4111241109 fi
4111341110
4111441111 if test "$cf_check_cflags" != "$CFLAGS" ; then
4111541112 cat >conftest.$ac_ext <<_ACEOF
41116 #line 41117 "configure"
41113 #line 41114 "configure"
4111741114 #include "confdefs.h"
4111841115 #include <stdio.h>
4111941116 int
4112541122 }
4112641123 _ACEOF
4112741124 rm -f conftest.$ac_objext conftest$ac_exeext
41128 if { (eval echo "$as_me:41129: \"$ac_link\"") >&5
41125 if { (eval echo "$as_me:41126: \"$ac_link\"") >&5
4112941126 (eval $ac_link) 2>&5
4113041127 ac_status=$?
41131 echo "$as_me:41132: \$? = $ac_status" >&5
41128 echo "$as_me:41129: \$? = $ac_status" >&5
4113241129 (exit $ac_status); } &&
4113341130 { ac_try='test -s conftest$ac_exeext'
41134 { (eval echo "$as_me:41135: \"$ac_try\"") >&5
41131 { (eval echo "$as_me:41132: \"$ac_try\"") >&5
4113541132 (eval $ac_try) 2>&5
4113641133 ac_status=$?
41137 echo "$as_me:41138: \$? = $ac_status" >&5
41134 echo "$as_me:41135: \$? = $ac_status" >&5
4113841135 (exit $ac_status); }; }; then
4113941136 :
4114041137 else
4114241139 cat conftest.$ac_ext >&5
4114341140 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6
4114441141
41145 echo "${as_me:-configure}:41146: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5
41142 echo "${as_me:-configure}:41143: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5
4114641143
4114741144 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then
4114841145 test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6
4114941146
41150 echo "${as_me:-configure}:41151: testing but keeping change to \$CPPFLAGS ..." 1>&5
41147 echo "${as_me:-configure}:41148: testing but keeping change to \$CPPFLAGS ..." 1>&5
4115141148
4115241149 fi
4115341150 CFLAGS="$cf_check_flags"
4115541152 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4115641153 fi
4115741154
41158 echo "$as_me:41159: checking for XOpenDisplay in -lX11" >&5
41155 echo "$as_me:41156: checking for XOpenDisplay in -lX11" >&5
4115941156 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
4116041157 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
4116141158 echo $ECHO_N "(cached) $ECHO_C" >&6
4116341160 ac_check_lib_save_LIBS=$LIBS
4116441161 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
4116541162 cat >conftest.$ac_ext <<_ACEOF
41166 #line 41167 "configure"
41163 #line 41164 "configure"
4116741164 #include "confdefs.h"
4116841165
4116941166 /* Override any gcc2 internal prototype to avoid an error. */
4118241179 }
4118341180 _ACEOF
4118441181 rm -f conftest.$ac_objext conftest$ac_exeext
41185 if { (eval echo "$as_me:41186: \"$ac_link\"") >&5
41182 if { (eval echo "$as_me:41183: \"$ac_link\"") >&5
4118641183 (eval $ac_link) 2>&5
4118741184 ac_status=$?
41188 echo "$as_me:41189: \$? = $ac_status" >&5
41185 echo "$as_me:41186: \$? = $ac_status" >&5
4118941186 (exit $ac_status); } &&
4119041187 { ac_try='test -s conftest$ac_exeext'
41191 { (eval echo "$as_me:41192: \"$ac_try\"") >&5
41188 { (eval echo "$as_me:41189: \"$ac_try\"") >&5
4119241189 (eval $ac_try) 2>&5
4119341190 ac_status=$?
41194 echo "$as_me:41195: \$? = $ac_status" >&5
41191 echo "$as_me:41192: \$? = $ac_status" >&5
4119541192 (exit $ac_status); }; }; then
4119641193 ac_cv_lib_X11_XOpenDisplay=yes
4119741194 else
4120241199 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4120341200 LIBS=$ac_check_lib_save_LIBS
4120441201 fi
41205 echo "$as_me:41206: result: $ac_cv_lib_X11_XOpenDisplay" >&5
41202 echo "$as_me:41203: result: $ac_cv_lib_X11_XOpenDisplay" >&5
4120641203 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
4120741204 if test $ac_cv_lib_X11_XOpenDisplay = yes; then
4120841205 LIBS="-lX11 $LIBS"
4120941206 fi
4121041207
41211 echo "$as_me:41212: checking for XCurses library" >&5
41208 echo "$as_me:41209: checking for XCurses library" >&5
4121241209 echo $ECHO_N "checking for XCurses library... $ECHO_C" >&6
4121341210 if test "${cf_cv_lib_XCurses+set}" = set; then
4121441211 echo $ECHO_N "(cached) $ECHO_C" >&6
4121641213
4121741214 LIBS="-lXCurses $LIBS"
4121841215 cat >conftest.$ac_ext <<_ACEOF
41219 #line 41220 "configure"
41216 #line 41217 "configure"
4122041217 #include "confdefs.h"
4122141218
4122241219 #include <xcurses.h>
4123141228 }
4123241229 _ACEOF
4123341230 rm -f conftest.$ac_objext conftest$ac_exeext
41234 if { (eval echo "$as_me:41235: \"$ac_link\"") >&5
41231 if { (eval echo "$as_me:41232: \"$ac_link\"") >&5
4123541232 (eval $ac_link) 2>&5
4123641233 ac_status=$?
41237 echo "$as_me:41238: \$? = $ac_status" >&5
41234 echo "$as_me:41235: \$? = $ac_status" >&5
4123841235 (exit $ac_status); } &&
4123941236 { ac_try='test -s conftest$ac_exeext'
41240 { (eval echo "$as_me:41241: \"$ac_try\"") >&5
41237 { (eval echo "$as_me:41238: \"$ac_try\"") >&5
4124141238 (eval $ac_try) 2>&5
4124241239 ac_status=$?
41243 echo "$as_me:41244: \$? = $ac_status" >&5
41240 echo "$as_me:41241: \$? = $ac_status" >&5
4124441241 (exit $ac_status); }; }; then
4124541242 cf_cv_lib_XCurses=yes
4124641243 else
4125141248 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4125241249
4125341250 fi
41254 echo "$as_me:41255: result: $cf_cv_lib_XCurses" >&5
41251 echo "$as_me:41252: result: $cf_cv_lib_XCurses" >&5
4125541252 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6
4125641253
4125741254 fi
4126641263 #define XCURSES 1
4126741264 EOF
4126841265
41269 echo "$as_me:41270: checking for xcurses.h" >&5
41266 echo "$as_me:41267: checking for xcurses.h" >&5
4127041267 echo $ECHO_N "checking for xcurses.h... $ECHO_C" >&6
4127141268 if test "${ac_cv_header_xcurses_h+set}" = set; then
4127241269 echo $ECHO_N "(cached) $ECHO_C" >&6
4127341270 else
4127441271 cat >conftest.$ac_ext <<_ACEOF
41275 #line 41276 "configure"
41272 #line 41273 "configure"
4127641273 #include "confdefs.h"
4127741274 #include <xcurses.h>
4127841275 _ACEOF
41279 if { (eval echo "$as_me:41280: \"$ac_cpp conftest.$ac_ext\"") >&5
41276 if { (eval echo "$as_me:41277: \"$ac_cpp conftest.$ac_ext\"") >&5
4128041277 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
4128141278 ac_status=$?
4128241279 egrep -v '^ *\+' conftest.er1 >conftest.err
4128341280 rm -f conftest.er1
4128441281 cat conftest.err >&5
41285 echo "$as_me:41286: \$? = $ac_status" >&5
41282 echo "$as_me:41283: \$? = $ac_status" >&5
4128641283 (exit $ac_status); } >/dev/null; then
4128741284 if test -s conftest.err; then
4128841285 ac_cpp_err=$ac_c_preproc_warn_flag
4130141298 fi
4130241299 rm -f conftest.err conftest.$ac_ext
4130341300 fi
41304 echo "$as_me:41305: result: $ac_cv_header_xcurses_h" >&5
41301 echo "$as_me:41302: result: $ac_cv_header_xcurses_h" >&5
4130541302 echo "${ECHO_T}$ac_cv_header_xcurses_h" >&6
4130641303 if test $ac_cv_header_xcurses_h = yes; then
4130741304
4131241309 fi
4131341310
4131441311 else
41315 { { echo "$as_me:41316: error: Cannot link with XCurses" >&5
41312 { { echo "$as_me:41313: error: Cannot link with XCurses" >&5
4131641313 echo "$as_me: error: Cannot link with XCurses" >&2;}
4131741314 { (exit 1); exit 1; }; }
4131841315 fi
4132141318 esac
4132241319 else
4132341320
41324 echo "$as_me:41325: checking if we can include termio.h with curses" >&5
41321 echo "$as_me:41322: checking if we can include termio.h with curses" >&5
4132541322 echo $ECHO_N "checking if we can include termio.h with curses... $ECHO_C" >&6
4132641323 if test "${cf_cv_termio_and_curses+set}" = set; then
4132741324 echo $ECHO_N "(cached) $ECHO_C" >&6
4133141328 CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir:-.} -I${srcdir:-.}/src -I${srcdir:-.}/WWW/Library/Implementation"
4133241329 touch lynx_cfg.h
4133341330 cat >conftest.$ac_ext <<_ACEOF
41334 #line 41335 "configure"
41331 #line 41332 "configure"
4133541332 #include "confdefs.h"
4133641333
4133741334 #include <LYCurses.h>
4134541342 }
4134641343 _ACEOF
4134741344 rm -f conftest.$ac_objext
41348 if { (eval echo "$as_me:41349: \"$ac_compile\"") >&5
41345 if { (eval echo "$as_me:41346: \"$ac_compile\"") >&5
4134941346 (eval $ac_compile) 2>&5
4135041347 ac_status=$?
41351 echo "$as_me:41352: \$? = $ac_status" >&5
41348 echo "$as_me:41349: \$? = $ac_status" >&5
4135241349 (exit $ac_status); } &&
4135341350 { ac_try='test -s conftest.$ac_objext'
41354 { (eval echo "$as_me:41355: \"$ac_try\"") >&5
41351 { (eval echo "$as_me:41352: \"$ac_try\"") >&5
4135541352 (eval $ac_try) 2>&5
4135641353 ac_status=$?
41357 echo "$as_me:41358: \$? = $ac_status" >&5
41354 echo "$as_me:41355: \$? = $ac_status" >&5
4135841355 (exit $ac_status); }; }; then
4135941356 cf_cv_termio_and_curses=yes
4136041357 else
4136741364 rm -f lynx_cfg.h
4136841365
4136941366 fi
41370 echo "$as_me:41371: result: $cf_cv_termio_and_curses" >&5
41367 echo "$as_me:41368: result: $cf_cv_termio_and_curses" >&5
4137141368 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6
4137241369
4137341370 test $cf_cv_termio_and_curses = yes &&
4138441381 for ac_header in $cf_cv_screen/term.h term.h
4138541382 do
4138641383 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
41387 echo "$as_me:41388: checking for $ac_header" >&5
41384 echo "$as_me:41385: checking for $ac_header" >&5
4138841385 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
4138941386 if eval "test \"\${$as_ac_Header+set}\" = set"; then
4139041387 echo $ECHO_N "(cached) $ECHO_C" >&6
4139141388 else
4139241389 cat >conftest.$ac_ext <<_ACEOF
41393 #line 41394 "configure"
41390 #line 41391 "configure"
4139441391 #include "confdefs.h"
4139541392 #include <$ac_header>
4139641393 _ACEOF
41397 if { (eval echo "$as_me:41398: \"$ac_cpp conftest.$ac_ext\"") >&5
41394 if { (eval echo "$as_me:41395: \"$ac_cpp conftest.$ac_ext\"") >&5
4139841395 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
4139941396 ac_status=$?
4140041397 egrep -v '^ *\+' conftest.er1 >conftest.err
4140141398 rm -f conftest.er1
4140241399 cat conftest.err >&5
41403 echo "$as_me:41404: \$? = $ac_status" >&5
41400 echo "$as_me:41401: \$? = $ac_status" >&5
4140441401 (exit $ac_status); } >/dev/null; then
4140541402 if test -s conftest.err; then
4140641403 ac_cpp_err=$ac_c_preproc_warn_flag
4141941416 fi
4142041417 rm -f conftest.err conftest.$ac_ext
4142141418 fi
41422 echo "$as_me:41423: result: `eval echo '${'$as_ac_Header'}'`" >&5
41419 echo "$as_me:41420: result: `eval echo '${'$as_ac_Header'}'`" >&5
4142341420 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
4142441421 if test `eval echo '${'$as_ac_Header'}'` = yes; then
4142541422 cat >>confdefs.h <<EOF
4143141428
4143241429 fi
4143341430
41434 echo "$as_me:41435: checking if curses supports alternate-character set" >&5
41431 echo "$as_me:41432: checking if curses supports alternate-character set" >&5
4143541432 echo $ECHO_N "checking if curses supports alternate-character set... $ECHO_C" >&6
4143641433 if test "${cf_cv_alt_char_set+set}" = set; then
4143741434 echo $ECHO_N "(cached) $ECHO_C" >&6
4144041437 for mapname in acs_map _acs_map
4144141438 do
4144241439 cat >conftest.$ac_ext <<_ACEOF
41443 #line 41444 "configure"
41440 #line 41441 "configure"
4144441441 #include "confdefs.h"
4144541442
4144641443 #include <${cf_cv_ncurses_header:-curses.h}>
4145441451 }
4145541452 _ACEOF
4145641453 rm -f conftest.$ac_objext conftest$ac_exeext
41457 if { (eval echo "$as_me:41458: \"$ac_link\"") >&5
41454 if { (eval echo "$as_me:41455: \"$ac_link\"") >&5
4145841455 (eval $ac_link) 2>&5
4145941456 ac_status=$?
41460 echo "$as_me:41461: \$? = $ac_status" >&5
41457 echo "$as_me:41458: \$? = $ac_status" >&5
4146141458 (exit $ac_status); } &&
4146241459 { ac_try='test -s conftest$ac_exeext'
41463 { (eval echo "$as_me:41464: \"$ac_try\"") >&5
41460 { (eval echo "$as_me:41461: \"$ac_try\"") >&5
4146441461 (eval $ac_try) 2>&5
4146541462 ac_status=$?
41466 echo "$as_me:41467: \$? = $ac_status" >&5
41463 echo "$as_me:41464: \$? = $ac_status" >&5
4146741464 (exit $ac_status); }; }; then
4146841465 cf_cv_alt_char_set=$mapname
4146941466 break
4147741474
4147841475 fi
4147941476
41480 echo "$as_me:41481: result: $cf_cv_alt_char_set" >&5
41477 echo "$as_me:41478: result: $cf_cv_alt_char_set" >&5
4148141478 echo "${ECHO_T}$cf_cv_alt_char_set" >&6
4148241479 test $cf_cv_alt_char_set != no &&
4148341480 cat >>confdefs.h <<EOF
4148441481 #define ALT_CHAR_SET $cf_cv_alt_char_set
4148541482 EOF
4148641483
41487 echo "$as_me:41488: checking if curses supports fancy attributes" >&5
41484 echo "$as_me:41485: checking if curses supports fancy attributes" >&5
4148841485 echo $ECHO_N "checking if curses supports fancy attributes... $ECHO_C" >&6
4148941486 if test "${cf_cv_fancy_curses+set}" = set; then
4149041487 echo $ECHO_N "(cached) $ECHO_C" >&6
4149141488 else
4149241489
4149341490 cat >conftest.$ac_ext <<_ACEOF
41494 #line 41495 "configure"
41491 #line 41492 "configure"
4149541492 #include "confdefs.h"
4149641493
4149741494 #include <${cf_cv_ncurses_header:-curses.h}>
4150941506 }
4151041507 _ACEOF
4151141508 rm -f conftest.$ac_objext conftest$ac_exeext
41512 if { (eval echo "$as_me:41513: \"$ac_link\"") >&5
41509 if { (eval echo "$as_me:41510: \"$ac_link\"") >&5
4151341510 (eval $ac_link) 2>&5
4151441511 ac_status=$?
41515 echo "$as_me:41516: \$? = $ac_status" >&5
41512 echo "$as_me:41513: \$? = $ac_status" >&5
4151641513 (exit $ac_status); } &&
4151741514 { ac_try='test -s conftest$ac_exeext'
41518 { (eval echo "$as_me:41519: \"$ac_try\"") >&5
41515 { (eval echo "$as_me:41516: \"$ac_try\"") >&5
4151941516 (eval $ac_try) 2>&5
4152041517 ac_status=$?
41521 echo "$as_me:41522: \$? = $ac_status" >&5
41518 echo "$as_me:41519: \$? = $ac_status" >&5
4152241519 (exit $ac_status); }; }; then
4152341520 cf_cv_fancy_curses=yes
4152441521 else
4153041527
4153141528 fi
4153241529
41533 echo "$as_me:41534: result: $cf_cv_fancy_curses" >&5
41530 echo "$as_me:41531: result: $cf_cv_fancy_curses" >&5
4153441531 echo "${ECHO_T}$cf_cv_fancy_curses" >&6
4153541532 test $cf_cv_fancy_curses = yes &&
4153641533 cat >>confdefs.h <<\EOF
4153741534 #define FANCY_CURSES 1
4153841535 EOF
4153941536
41540 echo "$as_me:41541: checking for function curses_version" >&5
41537 echo "$as_me:41538: checking for function curses_version" >&5
4154141538 echo $ECHO_N "checking for function curses_version... $ECHO_C" >&6
4154241539 if test "${cf_cv_func_curses_version+set}" = set; then
4154341540 echo $ECHO_N "(cached) $ECHO_C" >&6
4154741544 cf_cv_func_curses_version=unknown
4154841545 else
4154941546 cat >conftest.$ac_ext <<_ACEOF
41550 #line 41551 "configure"
41547 #line 41548 "configure"
4155141548 #include "confdefs.h"
4155241549
4155341550 #include <${cf_cv_ncurses_header:-curses.h}>
4156041557
4156141558 _ACEOF
4156241559 rm -f conftest$ac_exeext
41563 if { (eval echo "$as_me:41564: \"$ac_link\"") >&5
41560 if { (eval echo "$as_me:41561: \"$ac_link\"") >&5
4156441561 (eval $ac_link) 2>&5
4156541562 ac_status=$?
41566 echo "$as_me:41567: \$? = $ac_status" >&5
41563 echo "$as_me:41564: \$? = $ac_status" >&5
4156741564 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
41568 { (eval echo "$as_me:41569: \"$ac_try\"") >&5
41565 { (eval echo "$as_me:41566: \"$ac_try\"") >&5
4156941566 (eval $ac_try) 2>&5
4157041567 ac_status=$?
41571 echo "$as_me:41572: \$? = $ac_status" >&5
41568 echo "$as_me:41569: \$? = $ac_status" >&5
4157241569 (exit $ac_status); }; }; then
4157341570 cf_cv_func_curses_version=yes
4157441571
4158341580 fi
4158441581 rm -f core
4158541582 fi
41586 echo "$as_me:41587: result: $cf_cv_func_curses_version" >&5
41583 echo "$as_me:41584: result: $cf_cv_func_curses_version" >&5
4158741584 echo "${ECHO_T}$cf_cv_func_curses_version" >&6
4158841585 test "$cf_cv_func_curses_version" = yes &&
4158941586 cat >>confdefs.h <<\EOF
4159141588 EOF
4159241589
4159341590 if test "$cf_cv_ncurses_version" != no ; then
41594 echo "$as_me:41595: checking for obsolete/broken version of ncurses" >&5
41591 echo "$as_me:41592: checking for obsolete/broken version of ncurses" >&5
4159541592 echo $ECHO_N "checking for obsolete/broken version of ncurses... $ECHO_C" >&6
4159641593 if test "${cf_cv_ncurses_broken+set}" = set; then
4159741594 echo $ECHO_N "(cached) $ECHO_C" >&6
4159841595 else
4159941596
4160041597 cat >conftest.$ac_ext <<_ACEOF
41601 #line 41602 "configure"
41598 #line 41599 "configure"
4160241599 #include "confdefs.h"
4160341600
4160441601 #include <${cf_cv_ncurses_header:-curses.h}>
4161741614 }
4161841615 _ACEOF
4161941616 rm -f conftest.$ac_objext
41620 if { (eval echo "$as_me:41621: \"$ac_compile\"") >&5
41617 if { (eval echo "$as_me:41618: \"$ac_compile\"") >&5
4162141618 (eval $ac_compile) 2>&5
4162241619 ac_status=$?
41623 echo "$as_me:41624: \$? = $ac_status" >&5
41620 echo "$as_me:41621: \$? = $ac_status" >&5
4162441621 (exit $ac_status); } &&
4162541622 { ac_try='test -s conftest.$ac_objext'
41626 { (eval echo "$as_me:41627: \"$ac_try\"") >&5
41623 { (eval echo "$as_me:41624: \"$ac_try\"") >&5
4162741624 (eval $ac_try) 2>&5
4162841625 ac_status=$?
41629 echo "$as_me:41630: \$? = $ac_status" >&5
41626 echo "$as_me:41627: \$? = $ac_status" >&5
4163041627 (exit $ac_status); }; }; then
4163141628 cf_cv_ncurses_broken=no
4163241629 else
4163841635
4163941636 fi
4164041637
41641 echo "$as_me:41642: result: $cf_cv_ncurses_broken" >&5
41638 echo "$as_me:41639: result: $cf_cv_ncurses_broken" >&5
4164241639 echo "${ECHO_T}$cf_cv_ncurses_broken" >&6
4164341640 if test "$cf_cv_ncurses_broken" = yes ; then
41644 { echo "$as_me:41645: WARNING: hmm... you should get an up-to-date version of ncurses" >&5
41641 { echo "$as_me:41642: WARNING: hmm... you should get an up-to-date version of ncurses" >&5
4164541642 echo "$as_me: WARNING: hmm... you should get an up-to-date version of ncurses" >&2;}
4164641643
4164741644 cat >>confdefs.h <<\EOF
4165141648 fi
4165241649 fi
4165341650
41654 echo "$as_me:41655: checking if curses supports color attributes" >&5
41651 echo "$as_me:41652: checking if curses supports color attributes" >&5
4165541652 echo $ECHO_N "checking if curses supports color attributes... $ECHO_C" >&6
4165641653 if test "${cf_cv_color_curses+set}" = set; then
4165741654 echo $ECHO_N "(cached) $ECHO_C" >&6
4165841655 else
4165941656
4166041657 cat >conftest.$ac_ext <<_ACEOF
41661 #line 41662 "configure"
41658 #line 41659 "configure"
4166241659 #include "confdefs.h"
4166341660
4166441661 #include <${cf_cv_ncurses_header:-curses.h}>
4167841675 }
4167941676 _ACEOF
4168041677 rm -f conftest.$ac_objext conftest$ac_exeext
41681 if { (eval echo "$as_me:41682: \"$ac_link\"") >&5
41678 if { (eval echo "$as_me:41679: \"$ac_link\"") >&5
4168241679 (eval $ac_link) 2>&5
4168341680 ac_status=$?
41684 echo "$as_me:41685: \$? = $ac_status" >&5
41681 echo "$as_me:41682: \$? = $ac_status" >&5
4168541682 (exit $ac_status); } &&
4168641683 { ac_try='test -s conftest$ac_exeext'
41687 { (eval echo "$as_me:41688: \"$ac_try\"") >&5
41684 { (eval echo "$as_me:41685: \"$ac_try\"") >&5
4168841685 (eval $ac_try) 2>&5
4168941686 ac_status=$?
41690 echo "$as_me:41691: \$? = $ac_status" >&5
41687 echo "$as_me:41688: \$? = $ac_status" >&5
4169141688 (exit $ac_status); }; }; then
4169241689 cf_cv_color_curses=yes
4169341690 else
4169941696
4170041697 fi
4170141698
41702 echo "$as_me:41703: result: $cf_cv_color_curses" >&5
41699 echo "$as_me:41700: result: $cf_cv_color_curses" >&5
4170341700 echo "${ECHO_T}$cf_cv_color_curses" >&6
4170441701 if test $cf_cv_color_curses = yes ; then
4170541702
4172141718
4172241719 do
4172341720 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
41724 echo "$as_me:41725: checking for $ac_header" >&5
41721 echo "$as_me:41722: checking for $ac_header" >&5
4172541722 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
4172641723 if eval "test \"\${$as_ac_Header+set}\" = set"; then
4172741724 echo $ECHO_N "(cached) $ECHO_C" >&6
4172841725 else
4172941726 cat >conftest.$ac_ext <<_ACEOF
41730 #line 41731 "configure"
41727 #line 41728 "configure"
4173141728 #include "confdefs.h"
4173241729 #include <$ac_header>
4173341730 _ACEOF
41734 if { (eval echo "$as_me:41735: \"$ac_cpp conftest.$ac_ext\"") >&5
41731 if { (eval echo "$as_me:41732: \"$ac_cpp conftest.$ac_ext\"") >&5
4173541732 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
4173641733 ac_status=$?
4173741734 egrep -v '^ *\+' conftest.er1 >conftest.err
4173841735 rm -f conftest.er1
4173941736 cat conftest.err >&5
41740 echo "$as_me:41741: \$? = $ac_status" >&5
41737 echo "$as_me:41738: \$? = $ac_status" >&5
4174141738 (exit $ac_status); } >/dev/null; then
4174241739 if test -s conftest.err; then
4174341740 ac_cpp_err=$ac_c_preproc_warn_flag
4175641753 fi
4175741754 rm -f conftest.err conftest.$ac_ext
4175841755 fi
41759 echo "$as_me:41760: result: `eval echo '${'$as_ac_Header'}'`" >&5
41756 echo "$as_me:41757: result: `eval echo '${'$as_ac_Header'}'`" >&5
4176041757 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
4176141758 if test `eval echo '${'$as_ac_Header'}'` = yes; then
4176241759 cat >>confdefs.h <<EOF
4177141768 for ac_header in sys/termio.h
4177241769 do
4177341770 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
41774 echo "$as_me:41775: checking for $ac_header" >&5
41771 echo "$as_me:41772: checking for $ac_header" >&5
4177541772 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
4177641773 if eval "test \"\${$as_ac_Header+set}\" = set"; then
4177741774 echo $ECHO_N "(cached) $ECHO_C" >&6
4177841775 else
4177941776 cat >conftest.$ac_ext <<_ACEOF
41780 #line 41781 "configure"
41777 #line 41778 "configure"
4178141778 #include "confdefs.h"
4178241779 #include <$ac_header>
4178341780 _ACEOF
41784 if { (eval echo "$as_me:41785: \"$ac_cpp conftest.$ac_ext\"") >&5
41781 if { (eval echo "$as_me:41782: \"$ac_cpp conftest.$ac_ext\"") >&5
4178541782 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
4178641783 ac_status=$?
4178741784 egrep -v '^ *\+' conftest.er1 >conftest.err
4178841785 rm -f conftest.er1
4178941786 cat conftest.err >&5
41790 echo "$as_me:41791: \$? = $ac_status" >&5
41787 echo "$as_me:41788: \$? = $ac_status" >&5
4179141788 (exit $ac_status); } >/dev/null; then
4179241789 if test -s conftest.err; then
4179341790 ac_cpp_err=$ac_c_preproc_warn_flag
4180641803 fi
4180741804 rm -f conftest.err conftest.$ac_ext
4180841805 fi
41809 echo "$as_me:41810: result: `eval echo '${'$as_ac_Header'}'`" >&5
41806 echo "$as_me:41807: result: `eval echo '${'$as_ac_Header'}'`" >&5
4181041807 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
4181141808 if test `eval echo '${'$as_ac_Header'}'` = yes; then
4181241809 cat >>confdefs.h <<EOF
4182441821 *) termios_bad=maybe ;;
4182541822 esac
4182641823 if test "$termios_bad" = maybe ; then
41827 echo "$as_me:41828: checking whether termios.h needs _POSIX_SOURCE" >&5
41824 echo "$as_me:41825: checking whether termios.h needs _POSIX_SOURCE" >&5
4182841825 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6
4182941826 cat >conftest.$ac_ext <<_ACEOF
41830 #line 41831 "configure"
41827 #line 41828 "configure"
4183141828 #include "confdefs.h"
4183241829 #include <termios.h>
4183341830 int
4183941836 }
4184041837 _ACEOF
4184141838 rm -f conftest.$ac_objext
41842 if { (eval echo "$as_me:41843: \"$ac_compile\"") >&5
41839 if { (eval echo "$as_me:41840: \"$ac_compile\"") >&5
4184341840 (eval $ac_compile) 2>&5
4184441841 ac_status=$?
41845 echo "$as_me:41846: \$? = $ac_status" >&5
41842 echo "$as_me:41843: \$? = $ac_status" >&5
4184641843 (exit $ac_status); } &&
4184741844 { ac_try='test -s conftest.$ac_objext'
41848 { (eval echo "$as_me:41849: \"$ac_try\"") >&5
41845 { (eval echo "$as_me:41846: \"$ac_try\"") >&5
4184941846 (eval $ac_try) 2>&5
4185041847 ac_status=$?
41851 echo "$as_me:41852: \$? = $ac_status" >&5
41848 echo "$as_me:41849: \$? = $ac_status" >&5
4185241849 (exit $ac_status); }; }; then
4185341850 termios_bad=no
4185441851 else
4185641853 cat conftest.$ac_ext >&5
4185741854
4185841855 cat >conftest.$ac_ext <<_ACEOF
41859 #line 41860 "configure"
41856 #line 41857 "configure"
4186041857 #include "confdefs.h"
4186141858
4186241859 #define _POSIX_SOURCE
4187041867 }
4187141868 _ACEOF
4187241869 rm -f conftest.$ac_objext
41873 if { (eval echo "$as_me:41874: \"$ac_compile\"") >&5
41870 if { (eval echo "$as_me:41871: \"$ac_compile\"") >&5
4187441871 (eval $ac_compile) 2>&5
4187541872 ac_status=$?
41876 echo "$as_me:41877: \$? = $ac_status" >&5
41873 echo "$as_me:41874: \$? = $ac_status" >&5
4187741874 (exit $ac_status); } &&
4187841875 { ac_try='test -s conftest.$ac_objext'
41879 { (eval echo "$as_me:41880: \"$ac_try\"") >&5
41876 { (eval echo "$as_me:41877: \"$ac_try\"") >&5
4188041877 (eval $ac_try) 2>&5
4188141878 ac_status=$?
41882 echo "$as_me:41883: \$? = $ac_status" >&5
41879 echo "$as_me:41880: \$? = $ac_status" >&5
4188341880 (exit $ac_status); }; }; then
4188441881 termios_bad=unknown
4188541882 else
4189541892
4189641893 fi
4189741894 rm -f conftest.$ac_objext conftest.$ac_ext
41898 echo "$as_me:41899: result: $termios_bad" >&5
41895 echo "$as_me:41896: result: $termios_bad" >&5
4189941896 echo "${ECHO_T}$termios_bad" >&6
4190041897 fi
4190141898 fi
4190241899
41903 echo "$as_me:41904: checking declaration of size-change" >&5
41900 echo "$as_me:41901: checking declaration of size-change" >&5
4190441901 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6
4190541902 if test "${cf_cv_sizechange+set}" = set; then
4190641903 echo $ECHO_N "(cached) $ECHO_C" >&6
4191541912 CPPFLAGS="$cf_save_CPPFLAGS"
4191641913 test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts"
4191741914 cat >conftest.$ac_ext <<_ACEOF
41918 #line 41919 "configure"
41915 #line 41916 "configure"
4191941916 #include "confdefs.h"
4192041917 #include <sys/types.h>
4192141918 #ifdef HAVE_TERMIOS_H
4195941956 }
4196041957 _ACEOF
4196141958 rm -f conftest.$ac_objext
41962 if { (eval echo "$as_me:41963: \"$ac_compile\"") >&5
41959 if { (eval echo "$as_me:41960: \"$ac_compile\"") >&5
4196341960 (eval $ac_compile) 2>&5
4196441961 ac_status=$?
41965 echo "$as_me:41966: \$? = $ac_status" >&5
41962 echo "$as_me:41963: \$? = $ac_status" >&5
4196641963 (exit $ac_status); } &&
4196741964 { ac_try='test -s conftest.$ac_objext'
41968 { (eval echo "$as_me:41969: \"$ac_try\"") >&5
41965 { (eval echo "$as_me:41966: \"$ac_try\"") >&5
4196941966 (eval $ac_try) 2>&5
4197041967 ac_status=$?
41971 echo "$as_me:41972: \$? = $ac_status" >&5
41968 echo "$as_me:41969: \$? = $ac_status" >&5
4197241969 (exit $ac_status); }; }; then
4197341970 cf_cv_sizechange=yes
4197441971 else
4198741984 done
4198841985
4198941986 fi
41990 echo "$as_me:41991: result: $cf_cv_sizechange" >&5
41987 echo "$as_me:41988: result: $cf_cv_sizechange" >&5
4199141988 echo "${ECHO_T}$cf_cv_sizechange" >&6
4199241989 if test "$cf_cv_sizechange" != no ; then
4199341990
4200542002 esac
4200642003 fi
4200742004
42008 echo "$as_me:42009: checking if ttytype is declared in curses library" >&5
42005 echo "$as_me:42006: checking if ttytype is declared in curses library" >&5
4200942006 echo $ECHO_N "checking if ttytype is declared in curses library... $ECHO_C" >&6
4201042007 if test "${cf_cv_have_ttytype+set}" = set; then
4201142008 echo $ECHO_N "(cached) $ECHO_C" >&6
4201242009 else
4201342010
4201442011 cat >conftest.$ac_ext <<_ACEOF
42015 #line 42016 "configure"
42012 #line 42013 "configure"
4201642013 #include "confdefs.h"
4201742014 #include <${cf_cv_ncurses_header:-curses.h}>
4201842015 int
4202442021 }
4202542022 _ACEOF
4202642023 rm -f conftest.$ac_objext conftest$ac_exeext
42027 if { (eval echo "$as_me:42028: \"$ac_link\"") >&5
42024 if { (eval echo "$as_me:42025: \"$ac_link\"") >&5
4202842025 (eval $ac_link) 2>&5
4202942026 ac_status=$?
42030 echo "$as_me:42031: \$? = $ac_status" >&5
42027 echo "$as_me:42028: \$? = $ac_status" >&5
4203142028 (exit $ac_status); } &&
4203242029 { ac_try='test -s conftest$ac_exeext'
42033 { (eval echo "$as_me:42034: \"$ac_try\"") >&5
42030 { (eval echo "$as_me:42031: \"$ac_try\"") >&5
4203442031 (eval $ac_try) 2>&5
4203542032 ac_status=$?
42036 echo "$as_me:42037: \$? = $ac_status" >&5
42033 echo "$as_me:42034: \$? = $ac_status" >&5
4203742034 (exit $ac_status); }; }; then
4203842035 cf_cv_have_ttytype=yes
4203942036 else
4204542042
4204642043 fi
4204742044
42048 echo "$as_me:42049: result: $cf_cv_have_ttytype" >&5
42045 echo "$as_me:42046: result: $cf_cv_have_ttytype" >&5
4204942046 echo "${ECHO_T}$cf_cv_have_ttytype" >&6
4205042047 test $cf_cv_have_ttytype = yes &&
4205142048 cat >>confdefs.h <<\EOF
4205442051
4205542052 if test "$use_wide_curses" = yes ; then
4205642053
42057 echo "$as_me:42058: checking if curses supports wide characters" >&5
42054 echo "$as_me:42055: checking if curses supports wide characters" >&5
4205842055 echo $ECHO_N "checking if curses supports wide characters... $ECHO_C" >&6
4205942056 if test "${cf_cv_widec_curses+set}" = set; then
4206042057 echo $ECHO_N "(cached) $ECHO_C" >&6
4206142058 else
4206242059
4206342060 cat >conftest.$ac_ext <<_ACEOF
42064 #line 42065 "configure"
42061 #line 42062 "configure"
4206542062 #include "confdefs.h"
4206642063
4206742064 #include <stdlib.h>
4208042077 }
4208142078 _ACEOF
4208242079 rm -f conftest.$ac_objext conftest$ac_exeext
42083 if { (eval echo "$as_me:42084: \"$ac_link\"") >&5
42080 if { (eval echo "$as_me:42081: \"$ac_link\"") >&5
4208442081 (eval $ac_link) 2>&5
4208542082 ac_status=$?
42086 echo "$as_me:42087: \$? = $ac_status" >&5
42083 echo "$as_me:42084: \$? = $ac_status" >&5
4208742084 (exit $ac_status); } &&
4208842085 { ac_try='test -s conftest$ac_exeext'
42089 { (eval echo "$as_me:42090: \"$ac_try\"") >&5
42086 { (eval echo "$as_me:42087: \"$ac_try\"") >&5
4209042087 (eval $ac_try) 2>&5
4209142088 ac_status=$?
42092 echo "$as_me:42093: \$? = $ac_status" >&5
42089 echo "$as_me:42090: \$? = $ac_status" >&5
4209342090 (exit $ac_status); }; }; then
4209442091 cf_cv_widec_curses=yes
4209542092 else
4210042097 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4210142098
4210242099 fi
42103 echo "$as_me:42104: result: $cf_cv_widec_curses" >&5
42100 echo "$as_me:42101: result: $cf_cv_widec_curses" >&5
4210442101 echo "${ECHO_T}$cf_cv_widec_curses" >&6
4210542102
4210642103 if test "$cf_cv_widec_curses" = yes ; then
4211042107 EOF
4211142108
4211242109 # This is needed on Tru64 5.0 to declare mbstate_t
42113 echo "$as_me:42114: checking if we must include wchar.h to declare mbstate_t" >&5
42110 echo "$as_me:42111: checking if we must include wchar.h to declare mbstate_t" >&5
4211442111 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
4211542112 if test "${cf_cv_widec_mbstate+set}" = set; then
4211642113 echo $ECHO_N "(cached) $ECHO_C" >&6
4211742114 else
4211842115
4211942116 cat >conftest.$ac_ext <<_ACEOF
42120 #line 42121 "configure"
42117 #line 42118 "configure"
4212142118 #include "confdefs.h"
4212242119
4212342120 #include <stdlib.h>
4213142128 }
4213242129 _ACEOF
4213342130 rm -f conftest.$ac_objext
42134 if { (eval echo "$as_me:42135: \"$ac_compile\"") >&5
42131 if { (eval echo "$as_me:42132: \"$ac_compile\"") >&5
4213542132 (eval $ac_compile) 2>&5
4213642133 ac_status=$?
42137 echo "$as_me:42138: \$? = $ac_status" >&5
42134 echo "$as_me:42135: \$? = $ac_status" >&5
4213842135 (exit $ac_status); } &&
4213942136 { ac_try='test -s conftest.$ac_objext'
42140 { (eval echo "$as_me:42141: \"$ac_try\"") >&5
42137 { (eval echo "$as_me:42138: \"$ac_try\"") >&5
4214142138 (eval $ac_try) 2>&5
4214242139 ac_status=$?
42143 echo "$as_me:42144: \$? = $ac_status" >&5
42140 echo "$as_me:42141: \$? = $ac_status" >&5
4214442141 (exit $ac_status); }; }; then
4214542142 cf_cv_widec_mbstate=no
4214642143 else
4214742144 echo "$as_me: failed program was:" >&5
4214842145 cat conftest.$ac_ext >&5
4214942146 cat >conftest.$ac_ext <<_ACEOF
42150 #line 42151 "configure"
42147 #line 42148 "configure"
4215142148 #include "confdefs.h"
4215242149
4215342150 #include <stdlib.h>
4216242159 }
4216342160 _ACEOF
4216442161 rm -f conftest.$ac_objext
42165 if { (eval echo "$as_me:42166: \"$ac_compile\"") >&5
42162 if { (eval echo "$as_me:42163: \"$ac_compile\"") >&5
4216642163 (eval $ac_compile) 2>&5
4216742164 ac_status=$?
42168 echo "$as_me:42169: \$? = $ac_status" >&5
42165 echo "$as_me:42166: \$? = $ac_status" >&5
4216942166 (exit $ac_status); } &&
4217042167 { ac_try='test -s conftest.$ac_objext'
42171 { (eval echo "$as_me:42172: \"$ac_try\"") >&5
42168 { (eval echo "$as_me:42169: \"$ac_try\"") >&5
4217242169 (eval $ac_try) 2>&5
4217342170 ac_status=$?
42174 echo "$as_me:42175: \$? = $ac_status" >&5
42171 echo "$as_me:42172: \$? = $ac_status" >&5
4217542172 (exit $ac_status); }; }; then
4217642173 cf_cv_widec_mbstate=yes
4217742174 else
4218342180 fi
4218442181 rm -f conftest.$ac_objext conftest.$ac_ext
4218542182 fi
42186 echo "$as_me:42187: result: $cf_cv_widec_mbstate" >&5
42183 echo "$as_me:42184: result: $cf_cv_widec_mbstate" >&5
4218742184 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6
4218842185
4218942186 if test "$cf_cv_widec_mbstate" = yes ; then
4220642203
4220742204 fi
4220842205
42209 echo "$as_me:42210: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
42206 echo "$as_me:42207: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
4221042207 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
4221142208 if test "${cf_cv_need_xopen_extension+set}" = set; then
4221242209 echo $ECHO_N "(cached) $ECHO_C" >&6
4221342210 else
4221442211
4221542212 cat >conftest.$ac_ext <<_ACEOF
42216 #line 42217 "configure"
42213 #line 42214 "configure"
4221742214 #include "confdefs.h"
4221842215
4221942216 #include <stdlib.h>
4223542232 }
4223642233 _ACEOF
4223742234 rm -f conftest.$ac_objext conftest$ac_exeext
42238 if { (eval echo "$as_me:42239: \"$ac_link\"") >&5
42235 if { (eval echo "$as_me:42236: \"$ac_link\"") >&5
4223942236 (eval $ac_link) 2>&5
4224042237 ac_status=$?
42241 echo "$as_me:42242: \$? = $ac_status" >&5
42238 echo "$as_me:42239: \$? = $ac_status" >&5
4224242239 (exit $ac_status); } &&
4224342240 { ac_try='test -s conftest$ac_exeext'
42244 { (eval echo "$as_me:42245: \"$ac_try\"") >&5
42241 { (eval echo "$as_me:42242: \"$ac_try\"") >&5
4224542242 (eval $ac_try) 2>&5
4224642243 ac_status=$?
42247 echo "$as_me:42248: \$? = $ac_status" >&5
42244 echo "$as_me:42245: \$? = $ac_status" >&5
4224842245 (exit $ac_status); }; }; then
4224942246 cf_cv_need_xopen_extension=no
4225042247 else
4225142248 echo "$as_me: failed program was:" >&5
4225242249 cat conftest.$ac_ext >&5
4225342250 cat >conftest.$ac_ext <<_ACEOF
42254 #line 42255 "configure"
42251 #line 42252 "configure"
4225542252 #include "confdefs.h"
4225642253
4225742254 #define _XOPEN_SOURCE_EXTENDED
4227342270 }
4227442271 _ACEOF
4227542272 rm -f conftest.$ac_objext conftest$ac_exeext
42276 if { (eval echo "$as_me:42277: \"$ac_link\"") >&5
42273 if { (eval echo "$as_me:42274: \"$ac_link\"") >&5
4227742274 (eval $ac_link) 2>&5
4227842275 ac_status=$?
42279 echo "$as_me:42280: \$? = $ac_status" >&5
42276 echo "$as_me:42277: \$? = $ac_status" >&5
4228042277 (exit $ac_status); } &&
4228142278 { ac_try='test -s conftest$ac_exeext'
42282 { (eval echo "$as_me:42283: \"$ac_try\"") >&5
42279 { (eval echo "$as_me:42280: \"$ac_try\"") >&5
4228342280 (eval $ac_try) 2>&5
4228442281 ac_status=$?
42285 echo "$as_me:42286: \$? = $ac_status" >&5
42282 echo "$as_me:42283: \$? = $ac_status" >&5
4228642283 (exit $ac_status); }; }; then
4228742284 cf_cv_need_xopen_extension=yes
4228842285 else
4229442291 fi
4229542292 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4229642293 fi
42297 echo "$as_me:42298: result: $cf_cv_need_xopen_extension" >&5
42294 echo "$as_me:42295: result: $cf_cv_need_xopen_extension" >&5
4229842295 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6
4229942296 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
4230042297
42301 echo "$as_me:42302: checking for term.h" >&5
42298 echo "$as_me:42299: checking for term.h" >&5
4230242299 echo $ECHO_N "checking for term.h... $ECHO_C" >&6
4230342300 if test "${cf_cv_term_header+set}" = set; then
4230442301 echo $ECHO_N "(cached) $ECHO_C" >&6
4231942316 for cf_header in $cf_header_list
4232042317 do
4232142318 cat >conftest.$ac_ext <<_ACEOF
42322 #line 42323 "configure"
42319 #line 42320 "configure"
4232342320 #include "confdefs.h"
4232442321
4232542322 #include <${cf_cv_ncurses_header:-curses.h}>
4233342330 }
4233442331 _ACEOF
4233542332 rm -f conftest.$ac_objext
42336 if { (eval echo "$as_me:42337: \"$ac_compile\"") >&5
42333 if { (eval echo "$as_me:42334: \"$ac_compile\"") >&5
4233742334 (eval $ac_compile) 2>&5
4233842335 ac_status=$?
42339 echo "$as_me:42340: \$? = $ac_status" >&5
42336 echo "$as_me:42337: \$? = $ac_status" >&5
4234042337 (exit $ac_status); } &&
4234142338 { ac_try='test -s conftest.$ac_objext'
42342 { (eval echo "$as_me:42343: \"$ac_try\"") >&5
42339 { (eval echo "$as_me:42340: \"$ac_try\"") >&5
4234342340 (eval $ac_try) 2>&5
4234442341 ac_status=$?
42345 echo "$as_me:42346: \$? = $ac_status" >&5
42342 echo "$as_me:42343: \$? = $ac_status" >&5
4234642343 (exit $ac_status); }; }; then
4234742344 cf_cv_term_header=$cf_header
4234842345 break
4236142358 for cf_header in ncurses/term.h ncursesw/term.h
4236242359 do
4236342360 cat >conftest.$ac_ext <<_ACEOF
42364 #line 42365 "configure"
42361 #line 42362 "configure"
4236542362 #include "confdefs.h"
4236642363
4236742364 #include <${cf_cv_ncurses_header:-curses.h}>
4237942376 }
4238042377 _ACEOF
4238142378 rm -f conftest.$ac_objext
42382 if { (eval echo "$as_me:42383: \"$ac_compile\"") >&5
42379 if { (eval echo "$as_me:42380: \"$ac_compile\"") >&5
4238342380 (eval $ac_compile) 2>&5
4238442381 ac_status=$?
42385 echo "$as_me:42386: \$? = $ac_status" >&5
42382 echo "$as_me:42383: \$? = $ac_status" >&5
4238642383 (exit $ac_status); } &&
4238742384 { ac_try='test -s conftest.$ac_objext'
42388 { (eval echo "$as_me:42389: \"$ac_try\"") >&5
42385 { (eval echo "$as_me:42386: \"$ac_try\"") >&5
4238942386 (eval $ac_try) 2>&5
4239042387 ac_status=$?
42391 echo "$as_me:42392: \$? = $ac_status" >&5
42388 echo "$as_me:42389: \$? = $ac_status" >&5
4239242389 (exit $ac_status); }; }; then
4239342390 cf_cv_term_header=$cf_header
4239442391 break
4240342400 esac
4240442401
4240542402 fi
42406 echo "$as_me:42407: result: $cf_cv_term_header" >&5
42403 echo "$as_me:42404: result: $cf_cv_term_header" >&5
4240742404 echo "${ECHO_T}$cf_cv_term_header" >&6
4240842405
4240942406 case $cf_cv_term_header in #(vi
4243042427 ;;
4243142428 esac
4243242429
42433 echo "$as_me:42434: checking for unctrl.h" >&5
42430 echo "$as_me:42431: checking for unctrl.h" >&5
4243442431 echo $ECHO_N "checking for unctrl.h... $ECHO_C" >&6
4243542432 if test "${cf_cv_unctrl_header+set}" = set; then
4243642433 echo $ECHO_N "(cached) $ECHO_C" >&6
4245142448 for cf_header in $cf_header_list
4245242449 do
4245342450 cat >conftest.$ac_ext <<_ACEOF
42454 #line 42455 "configure"
42451 #line 42452 "configure"
4245542452 #include "confdefs.h"
4245642453
4245742454 #include <${cf_cv_ncurses_header:-curses.h}>
4246542462 }
4246642463 _ACEOF
4246742464 rm -f conftest.$ac_objext
42468 if { (eval echo "$as_me:42469: \"$ac_compile\"") >&5
42465 if { (eval echo "$as_me:42466: \"$ac_compile\"") >&5
4246942466 (eval $ac_compile) 2>&5
4247042467 ac_status=$?
42471 echo "$as_me:42472: \$? = $ac_status" >&5
42468 echo "$as_me:42469: \$? = $ac_status" >&5
4247242469 (exit $ac_status); } &&
4247342470 { ac_try='test -s conftest.$ac_objext'
42474 { (eval echo "$as_me:42475: \"$ac_try\"") >&5
42471 { (eval echo "$as_me:42472: \"$ac_try\"") >&5
4247542472 (eval $ac_try) 2>&5
4247642473 ac_status=$?
42477 echo "$as_me:42478: \$? = $ac_status" >&5
42474 echo "$as_me:42475: \$? = $ac_status" >&5
4247842475 (exit $ac_status); }; }; then
4247942476 cf_cv_unctrl_header=$cf_header
4248042477 break
4248742484 done
4248842485
4248942486 fi
42490 echo "$as_me:42491: result: $cf_cv_unctrl_header" >&5
42487 echo "$as_me:42488: result: $cf_cv_unctrl_header" >&5
4249142488 echo "${ECHO_T}$cf_cv_unctrl_header" >&6
4249242489
4249342490 case $cf_cv_unctrl_header in #(vi
4249442491 no)
42495 { echo "$as_me:42496: WARNING: unctrl.h header not found" >&5
42492 { echo "$as_me:42493: WARNING: unctrl.h header not found" >&5
4249642493 echo "$as_me: WARNING: unctrl.h header not found" >&2;}
4249742494 ;;
4249842495 esac
4254842545
4254942546 cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
4255042547
42551 echo "$as_me:42552: checking for ${cf_func}" >&5
42548 echo "$as_me:42549: checking for ${cf_func}" >&5
4255242549 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6
4255342550
42554 echo "${as_me:-configure}:42555: testing ${cf_func} ..." 1>&5
42551 echo "${as_me:-configure}:42552: testing ${cf_func} ..." 1>&5
4255542552
4255642553 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then
4255742554 echo $ECHO_N "(cached) $ECHO_C" >&6
4256042557 eval cf_result='$ac_cv_func_'$cf_func
4256142558 if test ".$cf_result" != ".no"; then
4256242559 cat >conftest.$ac_ext <<_ACEOF
42563 #line 42564 "configure"
42560 #line 42561 "configure"
4256442561 #include "confdefs.h"
4256542562
4256642563 #ifdef HAVE_XCURSES
4259242589 }
4259342590 _ACEOF
4259442591 rm -f conftest.$ac_objext conftest$ac_exeext
42595 if { (eval echo "$as_me:42596: \"$ac_link\"") >&5
42592 if { (eval echo "$as_me:42593: \"$ac_link\"") >&5
4259642593 (eval $ac_link) 2>&5
4259742594 ac_status=$?
42598 echo "$as_me:42599: \$? = $ac_status" >&5
42595 echo "$as_me:42596: \$? = $ac_status" >&5
4259942596 (exit $ac_status); } &&
4260042597 { ac_try='test -s conftest$ac_exeext'
42601 { (eval echo "$as_me:42602: \"$ac_try\"") >&5
42598 { (eval echo "$as_me:42599: \"$ac_try\"") >&5
4260242599 (eval $ac_try) 2>&5
4260342600 ac_status=$?
42604 echo "$as_me:42605: \$? = $ac_status" >&5
42601 echo "$as_me:42602: \$? = $ac_status" >&5
4260542602 (exit $ac_status); }; }; then
4260642603 cf_result=yes
4260742604 else
4261742614
4261842615 # use the computed/retrieved cache-value:
4261942616 eval 'cf_result=$cf_cv_func_'$cf_func
42620 echo "$as_me:42621: result: $cf_result" >&5
42617 echo "$as_me:42618: result: $cf_result" >&5
4262142618 echo "${ECHO_T}$cf_result" >&6
4262242619 if test $cf_result != no; then
4262342620 cat >>confdefs.h <<EOF
4263342630
4263442631 do
4263542632 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
42636 echo "$as_me:42637: checking for $ac_func" >&5
42633 echo "$as_me:42634: checking for $ac_func" >&5
4263742634 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
4263842635 if eval "test \"\${$as_ac_var+set}\" = set"; then
4263942636 echo $ECHO_N "(cached) $ECHO_C" >&6
4264042637 else
4264142638 cat >conftest.$ac_ext <<_ACEOF
42642 #line 42643 "configure"
42639 #line 42640 "configure"
4264342640 #include "confdefs.h"
4264442641 /* System header to define __stub macros and hopefully few prototypes,
4264542642 which can conflict with char $ac_func (); below. */
4267042667 }
4267142668 _ACEOF
4267242669 rm -f conftest.$ac_objext conftest$ac_exeext
42673 if { (eval echo "$as_me:42674: \"$ac_link\"") >&5
42670 if { (eval echo "$as_me:42671: \"$ac_link\"") >&5
4267442671 (eval $ac_link) 2>&5
4267542672 ac_status=$?
42676 echo "$as_me:42677: \$? = $ac_status" >&5
42673 echo "$as_me:42674: \$? = $ac_status" >&5
4267742674 (exit $ac_status); } &&
4267842675 { ac_try='test -s conftest$ac_exeext'
42679 { (eval echo "$as_me:42680: \"$ac_try\"") >&5
42676 { (eval echo "$as_me:42677: \"$ac_try\"") >&5
4268042677 (eval $ac_try) 2>&5
4268142678 ac_status=$?
42682 echo "$as_me:42683: \$? = $ac_status" >&5
42679 echo "$as_me:42680: \$? = $ac_status" >&5
4268342680 (exit $ac_status); }; }; then
4268442681 eval "$as_ac_var=yes"
4268542682 else
4268942686 fi
4269042687 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4269142688 fi
42692 echo "$as_me:42693: result: `eval echo '${'$as_ac_var'}'`" >&5
42689 echo "$as_me:42690: result: `eval echo '${'$as_ac_var'}'`" >&5
4269342690 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
4269442691 if test `eval echo '${'$as_ac_var'}'` = yes; then
4269542692 cat >>confdefs.h <<EOF
4270342700
4270442701 if test $use_color_style != no ; then
4270542702 if test .$cf_cv_color_curses != .yes ; then
42706 { { echo "$as_me:42707: error: Configuration does not support color-styles" >&5
42703 { { echo "$as_me:42704: error: Configuration does not support color-styles" >&5
4270742704 echo "$as_me: error: Configuration does not support color-styles" >&2;}
4270842705 { (exit 1); exit 1; }; }
4270942706 fi
4271042707 if test $cf_cv_screen = slang ; then
42711 { { echo "$as_me:42712: error: Configuration does not support color-styles" >&5
42708 { { echo "$as_me:42709: error: Configuration does not support color-styles" >&5
4271242709 echo "$as_me: error: Configuration does not support color-styles" >&2;}
4271342710 { (exit 1); exit 1; }; }
4271442711 fi
4271642713
4271742714 if test $use_scrollbar != no ; then
4271842715 if test .$cf_cv_fancy_curses != .yes ; then
42719 { echo "$as_me:42720: WARNING: Configuration does not support ACS_xxx definitions" >&5
42716 { echo "$as_me:42717: WARNING: Configuration does not support ACS_xxx definitions" >&5
4272042717 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;}
4272142718 else
4272242719
4273042727 # use rpath for libraries in unusual places
4273142728
4273242729 LD_RPATH_OPT=
42733 echo "$as_me:42734: checking for an rpath option" >&5
42730 echo "$as_me:42731: checking for an rpath option" >&5
4273442731 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6
4273542732 case $cf_cv_system_name in #(vi
4273642733 irix*) #(vi
4276142758 *)
4276242759 ;;
4276342760 esac
42764 echo "$as_me:42765: result: $LD_RPATH_OPT" >&5
42761 echo "$as_me:42762: result: $LD_RPATH_OPT" >&5
4276542762 echo "${ECHO_T}$LD_RPATH_OPT" >&6
4276642763
4276742764 case "x$LD_RPATH_OPT" in #(vi
4276842765 x-R*)
42769 echo "$as_me:42770: checking if we need a space after rpath option" >&5
42766 echo "$as_me:42767: checking if we need a space after rpath option" >&5
4277042767 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
4277142768 cf_save_LIBS="$LIBS"
4277242769 LIBS="${LD_RPATH_OPT}$libdir $LIBS"
4277342770 cat >conftest.$ac_ext <<_ACEOF
42774 #line 42775 "configure"
42771 #line 42772 "configure"
4277542772 #include "confdefs.h"
4277642773
4277742774 int
4278342780 }
4278442781 _ACEOF
4278542782 rm -f conftest.$ac_objext conftest$ac_exeext
42786 if { (eval echo "$as_me:42787: \"$ac_link\"") >&5
42783 if { (eval echo "$as_me:42784: \"$ac_link\"") >&5
4278742784 (eval $ac_link) 2>&5
4278842785 ac_status=$?
42789 echo "$as_me:42790: \$? = $ac_status" >&5
42786 echo "$as_me:42787: \$? = $ac_status" >&5
4279042787 (exit $ac_status); } &&
4279142788 { ac_try='test -s conftest$ac_exeext'
42792 { (eval echo "$as_me:42793: \"$ac_try\"") >&5
42789 { (eval echo "$as_me:42790: \"$ac_try\"") >&5
4279342790 (eval $ac_try) 2>&5
4279442791 ac_status=$?
42795 echo "$as_me:42796: \$? = $ac_status" >&5
42792 echo "$as_me:42793: \$? = $ac_status" >&5
4279642793 (exit $ac_status); }; }; then
4279742794 cf_rpath_space=no
4279842795 else
4280242799 fi
4280342800 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4280442801 LIBS="$cf_save_LIBS"
42805 echo "$as_me:42806: result: $cf_rpath_space" >&5
42802 echo "$as_me:42803: result: $cf_rpath_space" >&5
4280642803 echo "${ECHO_T}$cf_rpath_space" >&6
4280742804 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
4280842805 ;;
4280942806 esac
4281042807
42811 echo "$as_me:42812: checking if rpath-hack should be disabled" >&5
42808 echo "$as_me:42809: checking if rpath-hack should be disabled" >&5
4281242809 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6
4281342810
4281442811 # Check whether --enable-rpath-hack or --disable-rpath-hack was given.
4282542822 cf_disable_rpath_hack=no
4282642823
4282742824 fi;
42828 echo "$as_me:42829: result: $cf_disable_rpath_hack" >&5
42825 echo "$as_me:42826: result: $cf_disable_rpath_hack" >&5
4282942826 echo "${ECHO_T}$cf_disable_rpath_hack" >&6
4283042827 if test "$cf_disable_rpath_hack" = no ; then
4283142828
42832 echo "$as_me:42833: checking for updated LDFLAGS" >&5
42829 echo "$as_me:42830: checking for updated LDFLAGS" >&5
4283342830 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6
4283442831 if test -n "$LD_RPATH_OPT" ; then
42835 echo "$as_me:42836: result: maybe" >&5
42832 echo "$as_me:42833: result: maybe" >&5
4283642833 echo "${ECHO_T}maybe" >&6
4283742834
4283842835 for ac_prog in ldd
4283942836 do
4284042837 # Extract the first word of "$ac_prog", so it can be a program name with args.
4284142838 set dummy $ac_prog; ac_word=$2
42842 echo "$as_me:42843: checking for $ac_word" >&5
42839 echo "$as_me:42840: checking for $ac_word" >&5
4284342840 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4284442841 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then
4284542842 echo $ECHO_N "(cached) $ECHO_C" >&6
4285442851 test -z "$ac_dir" && ac_dir=.
4285542852 $as_executable_p "$ac_dir/$ac_word" || continue
4285642853 ac_cv_prog_cf_ldd_prog="$ac_prog"
42857 echo "$as_me:42858: found $ac_dir/$ac_word" >&5
42854 echo "$as_me:42855: found $ac_dir/$ac_word" >&5
4285842855 break
4285942856 done
4286042857
4286242859 fi
4286342860 cf_ldd_prog=$ac_cv_prog_cf_ldd_prog
4286442861 if test -n "$cf_ldd_prog"; then
42865 echo "$as_me:42866: result: $cf_ldd_prog" >&5
42862 echo "$as_me:42863: result: $cf_ldd_prog" >&5
4286642863 echo "${ECHO_T}$cf_ldd_prog" >&6
4286742864 else
42868 echo "$as_me:42869: result: no" >&5
42865 echo "$as_me:42866: result: no" >&5
4286942866 echo "${ECHO_T}no" >&6
4287042867 fi
4287142868
4287942876 cf_rpath_oops=
4288042877
4288142878 cat >conftest.$ac_ext <<_ACEOF
42882 #line 42883 "configure"
42879 #line 42880 "configure"
4288342880 #include "confdefs.h"
4288442881 #include <stdio.h>
4288542882 int
4289142888 }
4289242889 _ACEOF
4289342890 rm -f conftest.$ac_objext conftest$ac_exeext
42894 if { (eval echo "$as_me:42895: \"$ac_link\"") >&5
42891 if { (eval echo "$as_me:42892: \"$ac_link\"") >&5
4289542892 (eval $ac_link) 2>&5
4289642893 ac_status=$?
42897 echo "$as_me:42898: \$? = $ac_status" >&5
42894 echo "$as_me:42895: \$? = $ac_status" >&5
4289842895 (exit $ac_status); } &&
4289942896 { ac_try='test -s conftest$ac_exeext'
42900 { (eval echo "$as_me:42901: \"$ac_try\"") >&5
42897 { (eval echo "$as_me:42898: \"$ac_try\"") >&5
4290142898 (eval $ac_try) 2>&5
4290242899 ac_status=$?
42903 echo "$as_me:42904: \$? = $ac_status" >&5
42900 echo "$as_me:42901: \$? = $ac_status" >&5
4290442901 (exit $ac_status); }; }; then
4290542902 cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq`
4290642903 cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq`
4292842925 then
4292942926 test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6
4293042927
42931 echo "${as_me:-configure}:42932: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
42928 echo "${as_me:-configure}:42929: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
4293242929
4293342930 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
4293442931 break
4294042937
4294142938 test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
4294242939
42943 echo "${as_me:-configure}:42944: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
42940 echo "${as_me:-configure}:42941: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
4294442941
4294542942 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6
4294642943
42947 echo "${as_me:-configure}:42948: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
42944 echo "${as_me:-configure}:42945: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
4294842945
4294942946 cf_rpath_dst=
4295042947 for cf_rpath_src in $LDFLAGS
4298142978 then
4298242979 test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
4298342980
42984 echo "${as_me:-configure}:42985: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
42981 echo "${as_me:-configure}:42982: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
4298542982
4298642983 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
4298742984 fi
4299442991
4299542992 test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6
4299642993
42997 echo "${as_me:-configure}:42998: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
42994 echo "${as_me:-configure}:42995: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
4299842995
4299942996 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6
4300042997
43001 echo "${as_me:-configure}:43002: testing ...checking LIBS $LIBS ..." 1>&5
42998 echo "${as_me:-configure}:42999: testing ...checking LIBS $LIBS ..." 1>&5
4300242999
4300343000 cf_rpath_dst=
4300443001 for cf_rpath_src in $LIBS
4303543032 then
4303643033 test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
4303743034
43038 echo "${as_me:-configure}:43039: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
43035 echo "${as_me:-configure}:43036: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
4303943036
4304043037 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
4304143038 fi
4304843045
4304943046 test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6
4305043047
43051 echo "${as_me:-configure}:43052: testing ...checked LIBS $LIBS ..." 1>&5
43048 echo "${as_me:-configure}:43049: testing ...checked LIBS $LIBS ..." 1>&5
4305243049
4305343050 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
4305443051
43055 echo "${as_me:-configure}:43056: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
43056
43057 else
43058 echo "$as_me:43059: result: no" >&5
43052 echo "${as_me:-configure}:43053: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
43053
43054 else
43055 echo "$as_me:43056: result: no" >&5
4305943056 echo "${ECHO_T}no" >&6
4306043057 fi
4306143058
4315643153 : ${CONFIG_STATUS=./config.status}
4315743154 ac_clean_files_save=$ac_clean_files
4315843155 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
43159 { echo "$as_me:43160: creating $CONFIG_STATUS" >&5
43156 { echo "$as_me:43157: creating $CONFIG_STATUS" >&5
4316043157 echo "$as_me: creating $CONFIG_STATUS" >&6;}
4316143158 cat >$CONFIG_STATUS <<_ACEOF
4316243159 #! $SHELL
4333243329 echo "$ac_cs_version"; exit 0 ;;
4333343330 --he | --h)
4333443331 # Conflict between --help and --header
43335 { { echo "$as_me:43336: error: ambiguous option: $1
43332 { { echo "$as_me:43333: error: ambiguous option: $1
4333643333 Try \`$0 --help' for more information." >&5
4333743334 echo "$as_me: error: ambiguous option: $1
4333843335 Try \`$0 --help' for more information." >&2;}
4335143348 ac_need_defaults=false;;
4335243349
4335343350 # This is an error.
43354 -*) { { echo "$as_me:43355: error: unrecognized option: $1
43351 -*) { { echo "$as_me:43352: error: unrecognized option: $1
4335543352 Try \`$0 --help' for more information." >&5
4335643353 echo "$as_me: error: unrecognized option: $1
4335743354 Try \`$0 --help' for more information." >&2;}
4340443401 "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
4340543402 "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
4340643403 "$CONFIG_H" ) CONFIG_HEADERS="$CONFIG_HEADERS $CONFIG_H:config.hin" ;;
43407 *) { { echo "$as_me:43408: error: invalid argument: $ac_config_target" >&5
43404 *) { { echo "$as_me:43405: error: invalid argument: $ac_config_target" >&5
4340843405 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
4340943406 { (exit 1); exit 1; }; };;
4341043407 esac
4373843735 esac
4373943736
4374043737 if test x"$ac_file" != x-; then
43741 { echo "$as_me:43742: creating $ac_file" >&5
43738 { echo "$as_me:43739: creating $ac_file" >&5
4374243739 echo "$as_me: creating $ac_file" >&6;}
4374343740 rm -f "$ac_file"
4374443741 fi
4375643753 -) echo $tmp/stdin ;;
4375743754 [\\/$]*)
4375843755 # Absolute (can't be DOS-style, as IFS=:)
43759 test -f "$f" || { { echo "$as_me:43760: error: cannot find input file: $f" >&5
43756 test -f "$f" || { { echo "$as_me:43757: error: cannot find input file: $f" >&5
4376043757 echo "$as_me: error: cannot find input file: $f" >&2;}
4376143758 { (exit 1); exit 1; }; }
4376243759 echo $f;;
4376943766 echo $srcdir/$f
4377043767 else
4377143768 # /dev/null tree
43772 { { echo "$as_me:43773: error: cannot find input file: $f" >&5
43769 { { echo "$as_me:43770: error: cannot find input file: $f" >&5
4377343770 echo "$as_me: error: cannot find input file: $f" >&2;}
4377443771 { (exit 1); exit 1; }; }
4377543772 fi;;
4378543782 if test -n "$ac_seen"; then
4378643783 ac_used=`grep '@datarootdir@' $ac_item`
4378743784 if test -z "$ac_used"; then
43788 { echo "$as_me:43789: WARNING: datarootdir was used implicitly but not set:
43785 { echo "$as_me:43786: WARNING: datarootdir was used implicitly but not set:
4378943786 $ac_seen" >&5
4379043787 echo "$as_me: WARNING: datarootdir was used implicitly but not set:
4379143788 $ac_seen" >&2;}
4379443791 fi
4379543792 ac_seen=`grep '${datarootdir}' $ac_item`
4379643793 if test -n "$ac_seen"; then
43797 { echo "$as_me:43798: WARNING: datarootdir was used explicitly but not set:
43794 { echo "$as_me:43795: WARNING: datarootdir was used explicitly but not set:
4379843795 $ac_seen" >&5
4379943796 echo "$as_me: WARNING: datarootdir was used explicitly but not set:
4380043797 $ac_seen" >&2;}
4383143828 ac_init=`egrep '[ ]*'$ac_name'[ ]*=' $ac_file`
4383243829 if test -z "$ac_init"; then
4383343830 ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'`
43834 { echo "$as_me:43835: WARNING: Variable $ac_name is used but was not set:
43831 { echo "$as_me:43832: WARNING: Variable $ac_name is used but was not set:
4383543832 $ac_seen" >&5
4383643833 echo "$as_me: WARNING: Variable $ac_name is used but was not set:
4383743834 $ac_seen" >&2;}
4384243839 egrep -n '@[A-Z_][A-Z_0-9]+@' $ac_file >>$tmp/out
4384343840 if test -s $tmp/out; then
4384443841 ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out`
43845 { echo "$as_me:43846: WARNING: Some variables may not be substituted:
43842 { echo "$as_me:43843: WARNING: Some variables may not be substituted:
4384643843 $ac_seen" >&5
4384743844 echo "$as_me: WARNING: Some variables may not be substituted:
4384843845 $ac_seen" >&2;}
4389143888 * ) ac_file_in=$ac_file.in ;;
4389243889 esac
4389343890
43894 test x"$ac_file" != x- && { echo "$as_me:43895: creating $ac_file" >&5
43891 test x"$ac_file" != x- && { echo "$as_me:43892: creating $ac_file" >&5
4389543892 echo "$as_me: creating $ac_file" >&6;}
4389643893
4389743894 # First look for the input files in the build tree, otherwise in the
4390243899 -) echo $tmp/stdin ;;
4390343900 [\\/$]*)
4390443901 # Absolute (can't be DOS-style, as IFS=:)
43905 test -f "$f" || { { echo "$as_me:43906: error: cannot find input file: $f" >&5
43902 test -f "$f" || { { echo "$as_me:43903: error: cannot find input file: $f" >&5
4390643903 echo "$as_me: error: cannot find input file: $f" >&2;}
4390743904 { (exit 1); exit 1; }; }
4390843905 echo $f;;
4391543912 echo $srcdir/$f
4391643913 else
4391743914 # /dev/null tree
43918 { { echo "$as_me:43919: error: cannot find input file: $f" >&5
43915 { { echo "$as_me:43916: error: cannot find input file: $f" >&5
4391943916 echo "$as_me: error: cannot find input file: $f" >&2;}
4392043917 { (exit 1); exit 1; }; }
4392143918 fi;;
4403344030 rm -f $tmp/in
4403444031 if test x"$ac_file" != x-; then
4403544032 if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
44036 { echo "$as_me:44037: $ac_file is unchanged" >&5
44033 { echo "$as_me:44034: $ac_file is unchanged" >&5
4403744034 echo "$as_me: $ac_file is unchanged" >&6;}
4403844035 else
4403944036 ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
0 dnl $LynxId: configure.in,v 1.252 2013/10/23 22:31:51 tom Exp $
0 dnl $LynxId: configure.in,v 1.255 2013/12/02 22:56:08 tom Exp $
11 dnl
22 dnl Process this file with autoconf to produce a configure script.
33 dnl
2828 dnl
2929 dnl ask PRCS to plug-in the project-version for the configure-script.
3030 dnl $Format: "AC_REVISION($ProjectVersion$)"$
31 AC_REVISION(2.8.8pre.1)
31 AC_REVISION(2.8.8pre.2)
3232
3333 # Save the original $CFLAGS so we can distinguish whether the user set those
3434 # in the environment, or whether autoconf added -O and -g options:
6363 PACKAGE=lynx
6464 dnl ask PRCS to plug-in the project-version for the packages.
6565 # $Format: "VERSION=$ProjectVersion$"$
66 VERSION=2.8.8pre.1
66 VERSION=2.8.8pre.2
6767
6868 AC_SUBST(PACKAGE)
6969 AC_SUBST(VERSION)
289289 ;;
290290 next*)
291291 TRY_CFLAGS="$TRY_CFLAGS -DNEXT"
292 ;;
293 openbsd* | ekkobsd* | mirbsd*)
294 LIBS="$LIBS -lcompat"
295292 ;;
296293 osf4*)
297294 # The -Olimit flag (see below) is no longer available with
0 -- $LynxId: README.metrics,v 1.6 2013/11/28 20:01:44 tom Exp $
0 -- $LynxId: README.metrics,v 1.8 2013/12/16 00:14:10 tom Exp $
11
22 This is a short summary of code metrics showing how lynx has grown from
33 release to release. It also shows how the original codebase has
2222 15573 13587 3.9 8.0
2323 2.8.7 441453 180674 25064 23101 5.7 12.8
2424 15436 13473 3.5 7.5
25 2.8.8dev.17 464771 184804 24028 22288 5.2 12.1
26 14604 12864 3.1 7.0
25 2.8.8pre.2 464871 184810 24027 22288 5.2 12.1
26 14603 12864 3.1 7.0
2727
2828 Beginning with 2.8.6, the percentage of the remaining original codebase is
2929 shown on two lines (i.e., comparing against 2.4.2 indented to use the current
6565 1 Chris Adams
6666 1 Christian Hudon
6767 1 Christian Jensen
68 2.5 Christian Weisgerber
68 3 Christian Weisgerber
6969 1 Christoph J Gartmann
7070 1 Chuck Houpt
7171 1 Crouton
8989 1 Frederick P Herrmann
9090 1 Georg Drenkhahn
9191 1 George Lindholm
92 21 Gisle Vanem
92 22 Gisle Vanem
9393 1 Glenn Nielsen
9494 1 Hans Wurst
9595 26.5 Hataguchi Takeshi
173173 1 Tadayoshi Okuma
174174 1 Takao Fujiwara
175175 1 Thomas Braun
176 2027.3 Thomas E Dickey
176 2030.3 Thomas E Dickey
177177 0.5 Thomas Klausner
178178 1 Thomas Viehmann
179 16.5 Thorsten Glaser
179 17 Thorsten Glaser
180180 1 Tim Chase
181181 4 Tim Larson
182182 1 Timur Birsh
189189 1 Wesley Morgan
190190 1 Zdenek Prikryl
191191 1.5 nsh@horae.dti.ne.jp
192 4349 Total
192 4355 Total
193193
194194 -------------------------------------------------------------------------------
195195
00 /*
1 * $LynxId: dirent.c,v 1.5 2012/02/10 11:35:49 tom Exp $
1 * $LynxId: dirent.c,v 1.6 2013/12/07 13:46:58 tom Exp $
22 *
33 * dir.c for MS-DOS by Samuel Lam <skl@van-bc.UUCP>, June/87
44 */
2727 #endif
2828
2929 #ifndef __GNUC__
30 #pragma warning (disable : 4100) /* unreferenced formal parameter */
31 #pragma warning (disable : 4127) /* conditional expression is constant */
32 #pragma warning (disable : 4201) /* nameless struct/union */
33 #pragma warning (disable : 4214) /* bit field types other than int */
34 #pragma warning (disable : 4310) /* cast truncates constant value */
35 #pragma warning (disable : 4514) /* unreferenced inline function has been removed */
36 #pragma warning (disable : 4996) /* This function or variable may be unsafe. ... */
30 #pragma warning (disable : 4100) /* unreferenced formal parameter */
31 #pragma warning (disable : 4127) /* conditional expression is constant */
32 #pragma warning (disable : 4201) /* nameless struct/union */
33 #pragma warning (disable : 4214) /* bit field types other than int */
34 #pragma warning (disable : 4310) /* cast truncates constant value */
35 #pragma warning (disable : 4514) /* unreferenced inline function has been removed */
36 #pragma warning (disable : 4996) /* This function or variable may be unsafe. ... */
3737 #endif
3838
3939 #include <windows.h>
0 # $LynxId: lynx.cfg,v 1.229 2013/10/21 09:11:04 tom Exp $
0 # $LynxId: lynx.cfg,v 1.233 2013/12/17 00:44:11 tom Exp $
11 # lynx.cfg file.
22 # The default placement for this file is /usr/local/lib/lynx.cfg (Unix)
33 # or Lynx_Dir:lynx.cfg (VMS)
44 #
55 # $Format: "#PRCS LYNX_VERSION \"$ProjectVersion$\""$
6 #PRCS LYNX_VERSION "2.8.8pre.1"
6 #PRCS LYNX_VERSION "2.8.8pre.2"
77 #
88 # $Format: "#PRCS LYNX_DATE \"$ProjectDate$\""$
9 #PRCS LYNX_DATE "Thu, 28 Nov 2013 17:17:12 -0800"
9 #PRCS LYNX_DATE "Tue, 17 Dec 2013 17:56:13 -0800"
1010 #
1111 # Definition pairs are of the form VARIABLE:DEFINITION
1212 # NO spaces are allowed between the pair items.
2222
2323 # An HTML'ized description of all settings (based on comments in this file,
2424 # with alphabetical table of settings and with table of settings by category)
25 # is available at http://lynx.isc.org/release/lynx2-8-7/lynx_help/cattoc.html
25 # is available at http://lynx.isc.org/release/breakout/lynx_help/cattoc.html
2626 #
2727 ### The conversion is done via the scripts/cfg2html.pl script.
2828 ### Several directives beginning with '.' are used for this purpose.
108108 # for this distribution (use SHELL syntax including the device
109109 # on VMS systems).
110110 # The default HELPFILE is:
111 .url http://lynx.isc.org/release/lynx2-8-7/lynx_help/lynx_help_main.html
111 .url http://lynx.isc.org/release/breakout/lynx_help/lynx_help_main.html
112112 # This should be changed to the local path.
113113 # This definition will be overridden if the "LYNX_HELPFILE" environment
114114 # variable has been set.
115115 #
116 HELPFILE:http://lynx.isc.org/release/lynx2-8-7/lynx_help/lynx_help_main.html
116 HELPFILE:http://lynx.isc.org/release/breakout/lynx_help/lynx_help_main.html
117117 .ex
118118 #HELPFILE:file://localhost/PATH_TO/lynx_help/lynx_help_main.html
119119
0 .\" $LynxId: lynx.man,v 1.108 2013/10/23 22:49:39 tom Exp $
0 .\" $LynxId: lynx.man,v 1.109 2013/12/15 23:20:40 Bjarni.I.Gislason Exp $
11 .\" **************************************************************************
22 .\" Escape single quotes in literal strings from groff's Unicode transform.
33 .ie \n(.g .ds AQ \(aq
209209 .TP
210210 .B set
211211 followed by a \*(``name=value\*('' allows one to override values set in the
212 lynx.cfg or .lynxrc files.
212 lynx.cfg or \&.lynxrc files.
213213 \fILynx\fP tries the cfg-file setting first.
214214 .RE
215215 .TP
224224 library like \fBncurses\fR, \fILynx\fP relies completely on the terminal
225225 description to determine whether color mode is possible, and
226226 this flag is not needed and thus unavailable.)
227 A saved show_color=always setting found in a .lynxrc file at
227 A saved show_color=always setting found in a \&.lynxrc file at
228228 startup has the same effect.
229229 A saved show_color=never found
230 in .lynxrc on startup is overridden by this flag.
230 in \&.lynxrc on startup is overridden by this flag.
231231 .TP
232232 .B \-connect_timeout\fR=\fIN
233233 Sets the connection timeout, where N is given in seconds.
240240 .B \-cookie_save_file\fR=\fIFILENAME
241241 specifies a file to use to store cookies.
242242 If none is specified, the value given by
243 \fB-cookie_file\fR is used.
243 \fB\-cookie_file\fR is used.
244244 .TP
245245 .B \-cookies
246246 toggles handling of Set-Cookie headers.
466466 .TP
467467 .B \-nocolor
468468 force color mode off, overriding terminal capabilities and any
469 -color flags, COLORTERM variable, and saved .lynxrc settings.
469 \-color flags, COLORTERM variable, and saved \&.lynxrc settings.
470470 .TP
471471 .B \-noexec
472472 disable local program execution.
689689 disallow USENET News posting.
690690 .TP
691691 .B options_save
692 disallow saving options in .lynxrc.
692 disallow saving options in \&.lynxrc.
693693 .TP
694694 .B outside_ftp
695695 disallow ftps for people coming from outside your
741741 toggles showing arrows at ends of the scrollbar.
742742 .TP
743743 .B \-selective
744 require .www_browsable files to browse directories.
744 require \&.www_browsable files to browse directories.
745745 .TP
746746 .B \-session\fR=\fIFILENAME
747747 resumes from specified file on startup and saves session to that file on exit.
859859 TRST (table layout)
860860 .TP
861861 .B 8
862 configuration (lynx.cfg, .lynxrc, .lynx-keymaps, mime.types and mailcap contents)
862 configuration (lynx.cfg, \&.lynxrc, \&.lynx-keymaps, mime.types and mailcap contents)
863863 .TP
864864 .B 16
865865 binary string copy/append, used in form data construction.
12961296 .br
12971297 Shrewsbury, Massachusetts 01545
12981298 .PP
1299 Thomas E. Dickey
1299 Thomas E.\& Dickey
13001300 .br
13011301 <dickey@invisible-island.net>
0 <!-- $LynxId: Lynx_users_guide.html,v 1.118 2013/05/22 00:56:39 tom Exp $ -->
0 <!-- $LynxId: Lynx_users_guide.html,v 1.121 2013/12/17 00:47:51 tom Exp $ -->
11 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
22
33 <html>
680680 generated at runtime, in which the user fills in choices as in
681681 any ordinary HTML form.</p>
682682 <pre>
683 Options Menu (Lynx Version 2.8.7rel.1)
684
685 Accept Changes - Reset Changes Left Arrow cancels changes <a href="keystrokes/option_help.html">HELP!</a>
686
687 Save options to disk: [_]
683 Options Menu (Lynx Version 2.8.8pre.2)
684
685 Accept Changes - Reset Changes - Left Arrow cancels changes - HELP!
686
687 Save options to disk: [ ]
688688 (options marked with (!) will not be saved)
689689
690690 General Preferences
691 User mode : [Advanced....]
692 Editor : __________________________________________
691 User mode : [Advanced____]
692 Editor : vile______________________________________
693693 Type of Search : [Case insensitive]
694694
695695 Security and Privacy
696 Cookies (!) : [ask user..]
696 Cookies : [ask user__]
697697 Invalid-Cookie Prompting (!) : [prompt normally___]
698698 SSL Prompting (!) : [prompt normally___]
699699
700700 Keyboard Input
701 Keypad mode : [Links are numbered................]
701 Keypad mode : [Numbers act as arrows_____________]
702702 Emacs keys : [OFF]
703703 VI keys : [OFF]
704704 Line edit style : [Bash-like Bindings]
705 Keyboard layout : [YAWERTY Cyrillic, for DEC LK201 kbd]
706
707 Display and Character Sets
708 Use locale-based character set(!): [OFF]
705
706 Display and Character Set
707 Use locale-based character set : [ON_]
709708 Use HTML5 charset replacements(!): [OFF]
710 Display character set : [Cyrillic (ISO-8859-5)..........]
711 Assumed document character set(!): [iso-8859-1......]
712 Raw 8-bit (!) : [OFF]
713 X Display (!) : __________________________________________
709 Display character set : [UNICODE (UTF-8)________________]
710 Assumed document character set(!): [iso-8859-1______]
711 Raw 8-bit : [OFF]
712 X Display : localhost:0.0_____________________________
714713
715714 Document Appearance
716 Show color : [ON....]
715 Show color : [ON____]
716 Color style (!) : [lynx.lss___________]
717 Default colors (!) : [ON_]
717718 Show cursor : [OFF]
718719 Underline links (!) : [OFF]
719 Show scrollbar : [OFF]
720 Popups for select fields : [ON.]
721 HTML error recovery (!) : [strict (SortaSGML mode)]
720 Show scrollbar : [ON_]
721 Popups for select fields : [ON_]
722 HTML error recovery : [strict (SortaSGML mode)]
722723 Bad HTML messages (!) : [Warn, point to trace-file]
723 Show images (!) : [as labels]
724 Verbose images : [OFF..........]
724 Show images : [ignore___]
725 Verbose images : [OFF__________]
725726
726727 Headers Transferred to Remote Servers
727728 Personal mail address : __________________________________________
728 Personal mail name : __________________________________________
729 Personal name for mail : __________________________________________
729730 Password for anonymous ftp : __________________________________________
730731 Preferred media type (!) : [Accept lynx's internal types]
731732 Preferred encoding (!) : [All_____]
732733 Preferred document character set : _________________________________
733 Preferred document language : _________________________________
734 Send User-Agent header (!) : [ ]
735 User-Agent header (!) : __________________________________________
734 Preferred document language : en_______________________________
735 Send User-Agent header (!) : [X]
736 User-Agent header (!) : Lynx/2.8.8pre.2 libwww-FM/2.14 SSL-MM/1.4.
736737
737738 Listing and Accessing Files
738739 Use Passive FTP (!) : [ON_]
739 FTP sort criteria : [By Name]
740 Local directory sort criteria : [Mixed style......]
741 Local directory sort order : [By name..........]
742 Show dot files : [ON.]
743 Execution links : [FOR LOCAL FILES ONLY]
740 FTP sort criteria : [By Date]
741 Local directory sort criteria : [Directories first]
742 Local directory sort order : [By Date_]
743 Show dot files : [OFF]
744744 Pause when showing message (!) : [ON_]
745 Show transfer rate : [Show progressbar___]
745 Show transfer rate : [Show KiB/sec (2-digits), ETA__]
746746
747747 Special Files and Screens
748748 Multi-bookmarks : [ADVANCED]
749749 Review/edit Bookmarks files : Goto multi-bookmark menu
750750 Auto Session (!) : [OFF]
751 Session file (!) : ___________________________________________
752 Visited Pages : [As Visit Tree..........]
753
754 View the file lynx.cfg
755
756 Accept Changes - Reset Changes Left Arrow cancels changes
751 Session file (!) : __________________________________________
752 Visited Pages : [By Last Visit Reversed_]
753
754 View the file lynx.cfg.
755
756
757 Accept Changes - Reset Changes - Left Arrow cancels changes
757758
758759 </pre>
759760
762763 accessed by setting FORMS_OPTIONS to TRUE in <a href=
763764 "#lynx.cfg">lynx.cfg</a>.</p>
764765 <pre>
765 Options Menu (Lynx Version 2.8.7rel.1)
766 Options Menu (Lynx Version 2.8.8pre.2)
766767
767768 (E)ditor : emacs
768769 (D)ISPLAY variable : aixtest.cc.ukans.edu:0.0
42914292 comments for hundreds of options, most of them commented out
42924293 because they are built-in defaults. You may visit an index of
42934294 options: <a href=
4294 "http://lynx.isc.org/release/lynx2-8-7/lynx_help/cattoc.html">by
4295 "http://lynx.isc.org/release/breakout/lynx_help/cattoc.html">by
42954296 category</a> or <a href=
4296 "http://lynx.isc.org/release/lynx2-8-7/lynx_help/alphatoc.html">by
4297 "http://lynx.isc.org/release/breakout/lynx_help/alphatoc.html">by
42974298 alphabet</a>.</p>
42984299
42994300 <p>To view your current configuration derived from lynx.cfg and
0 <!-- $LynxId: lynx_help_main.html,v 1.46 2013/10/20 18:42:32 tom Exp $ -->
0 <!-- $LynxId: lynx_help_main.html,v 1.47 2013/12/17 00:45:35 tom Exp $ -->
11 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
22
33 <html>
3838
3939 <ul>
4040 <li><a href=
41 "http://lynx.isc.org/release/lynx2-8-7/lynx_help/cattoc.html">lynx.cfg
41 "http://lynx.isc.org/release/breakout/lynx_help/cattoc.html">lynx.cfg
4242 options</a> &mdash; a reference for advanced
4343 configurations</li>
4444
45 <li><a href="http://lynx.isc.org/release/lynx2-8-7/docs/">lynx
45 <li><a href="http://lynx.isc.org/release/breakout/docs/">lynx
4646 documentation</a> &mdash; supplementary documentation</li>
4747
4848 <li><a href=
0 # $LynxId: makefile.in,v 1.132 2013/10/16 10:45:19 tom Exp $
0 # $LynxId: makefile.in,v 1.135 2013/12/17 00:45:35 tom Exp $
11 ##makefile for lynx
22
33 SHELL = @CONFIG_SHELL@
3737 TAR_DOWN = $(TAR) @TAR_DOWN_OPTIONS@ @TAR_PIPE_OPTIONS@
3838
3939 # $Format: "LYNX_VERSION = $ProjectVersion$"$
40 LYNX_VERSION = 2.8.8pre.1
40 LYNX_VERSION = 2.8.8pre.2
4141
4242 ## This is the version which we are developing (or, upon release, make this
4343 ## the same). Use no dots in the name, since it must work on VMS and MS-DOS.
349349 # So we limit sed delimiters to '!' and '%', depending on the expected text.
350350 FIX_SED = tr '=' '"'
351351
352 LYNX_URL='http://lynx.isc.org/release/lynx2-8-7'
352 LYNX_URL='http://lynx.isc.org/release/breakout'
353353 LYNXDOCS_URL='$(LYNX_URL)/docs/'
354354 LYNXHELP_URL='$(LYNX_URL)/lynx_help/'
355355
0 # $LynxId: makefile.msc,v 1.28 2012/07/12 09:16:02 tom Exp $
0 # $LynxId: makefile.msc,v 1.29 2013/12/17 23:01:31 tom Exp $
11 #
22 # Makefile for `Lynx' browser for Microsoft Visual C++ 4.2 or later
33 #
5555 SCREEN_DEFS = /D "PDCURSES" /D "COLOR_CURSES" /D "FANCY_CURSES" /D "WIDE_CURSES"
5656 SCREEN_LIB = pdcurses
5757 !else
58 SCREEN_DEFS = /D "USE_SLANG"
58 SCREEN_DEFS = /D "USE_SLANG" /D "SLANG_DLL"
5959 SCREEN_LIB = wslang32
6060 !endif
6161
0 /* $LynxId: LYForms.c,v 1.110 2013/10/13 18:39:48 tom Exp $ */
0 /* $LynxId: LYForms.c,v 1.111 2013/12/07 13:46:58 tom Exp $ */
11 #include <HTUtils.h>
22 #include <HTCJK.h>
33 #include <HTTP.h>
2222 #if defined(VMS) && !defined(USE_SLANG)
2323 #define RepaintKey() 12 /* CTRL-L for repaint */
2424 #else
25 #define RepaintKey() ((!enable_scrollback) ? 23 : 12) /* CTRL-W or CTRL-L */
25 #define RepaintKey() ((!enable_scrollback) ? 23 : 12) /* CTRL-W or CTRL-L */
2626 #endif /* VMS && !USE_SLANG */
2727
2828 static int form_getstr(int cur,
0 // $LynxId: LYIcon.rc,v 1.4 2013/10/14 23:34:13 tom Exp $
0 // $LynxId: LYIcon.rc,v 1.5 2013/12/01 01:12:55 tom Exp $
11
22 #include <windows.h>
33
44 100 ICON "../samples/lynx.ico"
55
66 VS_VERSION_INFO VERSIONINFO
7 FILEVERSION 2,8,8,1017
8 PRODUCTVERSION 2,8,8,1017
7 FILEVERSION 2,8,8,2002
8 PRODUCTVERSION 2,8,8,2002
99 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
1010 FILEFLAGS 0
1111 FILEOS VOS_NT_WINDOWS32
1818 BEGIN
1919 VALUE "CompanyName", "http://lynx.isc.org"
2020 VALUE "FileDescription", "Lynx - web browser"
21 VALUE "FileVersion", "2.8.8.1017"
21 VALUE "FileVersion", "2.8.8.2002"
2222 VALUE "InternalName", "Lynx"
2323 VALUE "LegalCopyright", "©1997-2013 Thomas E. Dickey"
2424 VALUE "OriginalFilename", "lynx.exe"
2525 VALUE "ProductName", "Lynx - web browser"
26 VALUE "ProductVersion", "2.8.8.1017"
26 VALUE "ProductVersion", "2.8.8.2002"
2727 END
2828 END
2929 BLOCK "VarFileInfo"
0 /* $LynxId: LYKeymap.c,v 1.109 2013/11/28 11:19:31 tom Exp $ */
0 /* $LynxId: LYKeymap.c,v 1.110 2013/12/17 00:27:55 tom Exp $ */
11 #include <HTUtils.h>
22 #include <LYUtils.h>
33 #include <LYGlobalDefs.h>
7979 {23, LYK_SWITCH_DTD}, /* ^W */
8080 {24, LYK_REFRESH}, /* ^X */
8181 {25, LYK_CACHE_JAR}, /* ^Y */
82 {27, LYK_MAXSCREEN_TOGGLE}, /* ^Z */
8283 {33, LYK_NEXT_PAGE}, /* */
8384 {34, LYK_SHELL}, /* ! */
8485 {35, LYK_SOFT_DQUOTES}, /* " */
00 /*
1 * $LynxId: LYLeaks.c,v 1.36 2012/02/10 00:33:39 tom Exp $
1 * $LynxId: LYLeaks.c,v 1.37 2013/12/07 13:46:58 tom Exp $
22 *
33 * Copyright (c) 1994, University of Kansas, All Rights Reserved
44 * (this file was rewritten twice - 1998/1999 and 2003/2004)
911911 t->str = (char *) LYLeakRealloc(t->str, length, cp_File, ssi_Line);
912912 } else {
913913 if ((t = (bstring *) LYLeakCalloc(1, sizeof(bstring), cp_File,
914 ssi_Line)) == NULL)
914 ssi_Line)) == NULL)
915915 outofmem(__FILE__, "HTSACat");
916916
917917 assert(t != NULL);
00 /*
1 * $LynxId: LYStyle.c,v 1.94 2013/11/28 11:37:02 tom Exp $
1 * $LynxId: LYStyle.c,v 1.95 2013/12/01 19:22:44 tom Exp $
22 *
33 * character level styles for Lynx
44 * (c) 1996 Rob Partington -- donated to the Lyncei (if they want it :-)
940940 */
941941 style_readFromFile(lynx_lss_file);
942942 add_to_lss_list(LYPathLeaf(lynx_lss_file), lynx_lss_file);
943 #ifndef NO_OPTION_FORMS
943944 build_lss_enum(list_of_lss_files);
945 #endif
944946 }
945947
946948 void reinit_color_styles(void)
00 /*
1 * $LynxId: LYUtils.c,v 1.262 2013/11/29 00:04:25 tom Exp $
1 * $LynxId: LYUtils.c,v 1.263 2013/12/09 11:21:42 tom Exp $
22 */
33 #include <HTUtils.h>
44 #include <HTTCP.h>
45824582 return FALSE;
45834583 }
45844584
4585 #if !defined(__MINGW32__)
4585 #if !defined(sleep)
45864586 void sleep(unsigned sec)
45874587 {
45884588 unsigned int i, j;
00 /*
1 * $LynxId: userdefs.h,v 1.278 2013/10/23 22:26:08 tom Exp $
1 * $LynxId: userdefs.h,v 1.282 2013/12/17 00:45:35 tom Exp $
22 *
33 * Lynx - Hypertext navigation system
44 *
456456 * -lss command line switch will override these definitions.
457457 */
458458 #ifndef LYNX_LSS_FILE
459 #ifdef DOSPATH
460 #define LYNX_LSS_FILE "lynx.lss"
461 #else
459462 #define LYNX_LSS_FILE "/usr/local/lib/lynx.lss"
463 #endif
460464 #endif /* LYNX_LSS_FILE */
461465
462466 #endif /* VMS OR UNIX */
497501 * for this distribution (use SHELL syntax including the device
498502 * on VMS systems).
499503 * The default HELPFILE is:
500 * http://lynx.isc.org/release/lynx2-8-7/lynx_help/lynx_help_main.html
504 * http://lynx.isc.org/release/breakout/lynx_help/lynx_help_main.html
501505 * This should be changed here or in lynx.cfg to the local path.
502506 * The definition here can be overridden at run time by defining a
503507 * "LYNX_HELPFILE" environment variable.
504508 */
505 #define HELPFILE "http://lynx.isc.org/release/lynx2-8-7/lynx_help/lynx_help_main.html"
509 #define HELPFILE "http://lynx.isc.org/release/breakout/lynx_help/lynx_help_main.html"
506510 /* #define HELPFILE "file://localhost/PATH_TO/lynx_help/lynx_help_main.html" */
507511
508512 /*****************************
14371441 * the version definition with the Project Version on checkout. Just
14381442 * ignore it. - kw */
14391443 /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */
1440 #define LYNX_VERSION "2.8.8pre.1"
1444 #define LYNX_VERSION "2.8.8pre.2"
14411445 #define LYNX_WWW_HOME "http://lynx.isc.org/"
14421446 #define LYNX_WWW_DIST "http://lynx.isc.org/current/"
14431447 /* $Format: "#define LYNX_DATE \"$ProjectDate$\""$ */
1444 #define LYNX_DATE "Thu, 28 Nov 2013 17:17:12 -0800"
1448 #define LYNX_DATE "Tue, 17 Dec 2013 17:56:13 -0800"
14451449 #define LYNX_DATE_OFF 5 /* truncate the automatically-generated date */
14461450 #define LYNX_DATE_LEN 11 /* truncate the automatically-generated date */
14471451