aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Raeburn2001-10-24 22:54:38 +0000
committerKen Raeburn2001-10-24 22:54:38 +0000
commit84e70f78690c02e12704751941824325920923ea (patch)
tree354d71352b7c7b31cec7cf574dd5c2ebdc907113
parent7d8177cf90333a55b126757e931ae0f5c9db35f6 (diff)
downloademacs-84e70f78690c02e12704751941824325920923ea.tar.gz
emacs-84e70f78690c02e12704751941824325920923ea.zip
fix build problems with krb5 and hesiod support
-rw-r--r--ChangeLog7
-rwxr-xr-xconfigure789
-rw-r--r--configure.in17
-rw-r--r--lib-src/ChangeLog7
-rw-r--r--lib-src/Makefile.in14
-rw-r--r--src/config.in2
6 files changed, 624 insertions, 212 deletions
diff --git a/ChangeLog b/ChangeLog
index f5989ce23fc..05b2e96a4a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
12001-10-24 Ken Raeburn <raeburn@gnu.org>
2
3 * configure.in: If --with-hesiod is given, look for
4 hes_getmailhost and res_send or __res_send; check hesiod and
5 resolv libraries respectively if system libraries don't supply
6 them.
7
12001-10-24 Gerd Moellmann <gerd@gnu.org> 82001-10-24 Gerd Moellmann <gerd@gnu.org>
2 9
3 * configure.in: Use $MAKE for `make' if set. 10 * configure.in: Use $MAKE for `make' if set.
diff --git a/configure b/configure
index 16268d1c658..60c4ccf50fd 100755
--- a/configure
+++ b/configure
@@ -9964,10 +9964,379 @@ EOF
9964 9964
9965fi 9965fi
9966 9966
9967# Do we need the Hesiod library to provide the support routines?
9968if test "$with_hesiod" = yes ; then
9969 # Don't set $LIBS here -- see comments above.
9970 resolv=no
9971 echo "$as_me:9971: checking for res_send" >&5
9972echo $ECHO_N "checking for res_send... $ECHO_C" >&6
9973if test "${ac_cv_func_res_send+set}" = set; then
9974 echo $ECHO_N "(cached) $ECHO_C" >&6
9975else
9976 cat >conftest.$ac_ext <<_ACEOF
9977#line 9977 "configure"
9978#include "confdefs.h"
9979/* System header to define __stub macros and hopefully few prototypes,
9980 which can conflict with char res_send (); below. */
9981#include <assert.h>
9982/* Override any gcc2 internal prototype to avoid an error. */
9983#ifdef __cplusplus
9984extern "C"
9985#endif
9986/* We use char because int might match the return type of a gcc2
9987 builtin and then its argument prototype would still apply. */
9988char res_send ();
9989char (*f) ();
9990
9991int
9992main ()
9993{
9994/* The GNU C library defines this for functions which it implements
9995 to always fail with ENOSYS. Some functions are actually named
9996 something starting with __ and the normal name is an alias. */
9997#if defined (__stub_res_send) || defined (__stub___res_send)
9998choke me
9999#else
10000f = res_send;
10001#endif
10002
10003 ;
10004 return 0;
10005}
10006_ACEOF
10007rm -f conftest.$ac_objext conftest$ac_exeext
10008if { (eval echo "$as_me:10008: \"$ac_link\"") >&5
10009 (eval $ac_link) 2>&5
10010 ac_status=$?
10011 echo "$as_me:10011: \$? = $ac_status" >&5
10012 (exit $ac_status); } &&
10013 { ac_try='test -s conftest$ac_exeext'
10014 { (eval echo "$as_me:10014: \"$ac_try\"") >&5
10015 (eval $ac_try) 2>&5
10016 ac_status=$?
10017 echo "$as_me:10017: \$? = $ac_status" >&5
10018 (exit $ac_status); }; }; then
10019 ac_cv_func_res_send=yes
10020else
10021 echo "$as_me: failed program was:" >&5
10022cat conftest.$ac_ext >&5
10023ac_cv_func_res_send=no
10024fi
10025rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10026fi
10027echo "$as_me:10027: result: $ac_cv_func_res_send" >&5
10028echo "${ECHO_T}$ac_cv_func_res_send" >&6
10029if test $ac_cv_func_res_send = yes; then
10030 :
10031else
10032 echo "$as_me:10032: checking for __res_send" >&5
10033echo $ECHO_N "checking for __res_send... $ECHO_C" >&6
10034if test "${ac_cv_func___res_send+set}" = set; then
10035 echo $ECHO_N "(cached) $ECHO_C" >&6
10036else
10037 cat >conftest.$ac_ext <<_ACEOF
10038#line 10038 "configure"
10039#include "confdefs.h"
10040/* System header to define __stub macros and hopefully few prototypes,
10041 which can conflict with char __res_send (); below. */
10042#include <assert.h>
10043/* Override any gcc2 internal prototype to avoid an error. */
10044#ifdef __cplusplus
10045extern "C"
10046#endif
10047/* We use char because int might match the return type of a gcc2
10048 builtin and then its argument prototype would still apply. */
10049char __res_send ();
10050char (*f) ();
10051
10052int
10053main ()
10054{
10055/* The GNU C library defines this for functions which it implements
10056 to always fail with ENOSYS. Some functions are actually named
10057 something starting with __ and the normal name is an alias. */
10058#if defined (__stub___res_send) || defined (__stub_____res_send)
10059choke me
10060#else
10061f = __res_send;
10062#endif
10063
10064 ;
10065 return 0;
10066}
10067_ACEOF
10068rm -f conftest.$ac_objext conftest$ac_exeext
10069if { (eval echo "$as_me:10069: \"$ac_link\"") >&5
10070 (eval $ac_link) 2>&5
10071 ac_status=$?
10072 echo "$as_me:10072: \$? = $ac_status" >&5
10073 (exit $ac_status); } &&
10074 { ac_try='test -s conftest$ac_exeext'
10075 { (eval echo "$as_me:10075: \"$ac_try\"") >&5
10076 (eval $ac_try) 2>&5
10077 ac_status=$?
10078 echo "$as_me:10078: \$? = $ac_status" >&5
10079 (exit $ac_status); }; }; then
10080 ac_cv_func___res_send=yes
10081else
10082 echo "$as_me: failed program was:" >&5
10083cat conftest.$ac_ext >&5
10084ac_cv_func___res_send=no
10085fi
10086rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10087fi
10088echo "$as_me:10088: result: $ac_cv_func___res_send" >&5
10089echo "${ECHO_T}$ac_cv_func___res_send" >&6
10090if test $ac_cv_func___res_send = yes; then
10091 :
10092else
10093 echo "$as_me:10093: checking for res_send in -lresolv" >&5
10094echo $ECHO_N "checking for res_send in -lresolv... $ECHO_C" >&6
10095if test "${ac_cv_lib_resolv_res_send+set}" = set; then
10096 echo $ECHO_N "(cached) $ECHO_C" >&6
10097else
10098 ac_check_lib_save_LIBS=$LIBS
10099LIBS="-lresolv $LIBS"
10100cat >conftest.$ac_ext <<_ACEOF
10101#line 10101 "configure"
10102#include "confdefs.h"
10103
10104/* Override any gcc2 internal prototype to avoid an error. */
10105#ifdef __cplusplus
10106extern "C"
10107#endif
10108/* We use char because int might match the return type of a gcc2
10109 builtin and then its argument prototype would still apply. */
10110char res_send ();
10111int
10112main ()
10113{
10114res_send ();
10115 ;
10116 return 0;
10117}
10118_ACEOF
10119rm -f conftest.$ac_objext conftest$ac_exeext
10120if { (eval echo "$as_me:10120: \"$ac_link\"") >&5
10121 (eval $ac_link) 2>&5
10122 ac_status=$?
10123 echo "$as_me:10123: \$? = $ac_status" >&5
10124 (exit $ac_status); } &&
10125 { ac_try='test -s conftest$ac_exeext'
10126 { (eval echo "$as_me:10126: \"$ac_try\"") >&5
10127 (eval $ac_try) 2>&5
10128 ac_status=$?
10129 echo "$as_me:10129: \$? = $ac_status" >&5
10130 (exit $ac_status); }; }; then
10131 ac_cv_lib_resolv_res_send=yes
10132else
10133 echo "$as_me: failed program was:" >&5
10134cat conftest.$ac_ext >&5
10135ac_cv_lib_resolv_res_send=no
10136fi
10137rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10138LIBS=$ac_check_lib_save_LIBS
10139fi
10140echo "$as_me:10140: result: $ac_cv_lib_resolv_res_send" >&5
10141echo "${ECHO_T}$ac_cv_lib_resolv_res_send" >&6
10142if test $ac_cv_lib_resolv_res_send = yes; then
10143 resolv=yes
10144else
10145 echo "$as_me:10145: checking for __res_send in -lresolv" >&5
10146echo $ECHO_N "checking for __res_send in -lresolv... $ECHO_C" >&6
10147if test "${ac_cv_lib_resolv___res_send+set}" = set; then
10148 echo $ECHO_N "(cached) $ECHO_C" >&6
10149else
10150 ac_check_lib_save_LIBS=$LIBS
10151LIBS="-lresolv $LIBS"
10152cat >conftest.$ac_ext <<_ACEOF
10153#line 10153 "configure"
10154#include "confdefs.h"
10155
10156/* Override any gcc2 internal prototype to avoid an error. */
10157#ifdef __cplusplus
10158extern "C"
10159#endif
10160/* We use char because int might match the return type of a gcc2
10161 builtin and then its argument prototype would still apply. */
10162char __res_send ();
10163int
10164main ()
10165{
10166__res_send ();
10167 ;
10168 return 0;
10169}
10170_ACEOF
10171rm -f conftest.$ac_objext conftest$ac_exeext
10172if { (eval echo "$as_me:10172: \"$ac_link\"") >&5
10173 (eval $ac_link) 2>&5
10174 ac_status=$?
10175 echo "$as_me:10175: \$? = $ac_status" >&5
10176 (exit $ac_status); } &&
10177 { ac_try='test -s conftest$ac_exeext'
10178 { (eval echo "$as_me:10178: \"$ac_try\"") >&5
10179 (eval $ac_try) 2>&5
10180 ac_status=$?
10181 echo "$as_me:10181: \$? = $ac_status" >&5
10182 (exit $ac_status); }; }; then
10183 ac_cv_lib_resolv___res_send=yes
10184else
10185 echo "$as_me: failed program was:" >&5
10186cat conftest.$ac_ext >&5
10187ac_cv_lib_resolv___res_send=no
10188fi
10189rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10190LIBS=$ac_check_lib_save_LIBS
10191fi
10192echo "$as_me:10192: result: $ac_cv_lib_resolv___res_send" >&5
10193echo "${ECHO_T}$ac_cv_lib_resolv___res_send" >&6
10194if test $ac_cv_lib_resolv___res_send = yes; then
10195 resolv=yes
10196fi
10197
10198fi
10199
10200fi
10201
10202fi
10203
10204 if test "$resolv" = yes ; then
10205 RESOLVLIB=-lresolv
10206 cat >>confdefs.h <<\EOF
10207#define HAVE_LIBRESOLV 1
10208EOF
10209
10210 else
10211 RESOLVLIB=
10212 fi
10213 echo "$as_me:10213: checking for hes_getmailhost" >&5
10214echo $ECHO_N "checking for hes_getmailhost... $ECHO_C" >&6
10215if test "${ac_cv_func_hes_getmailhost+set}" = set; then
10216 echo $ECHO_N "(cached) $ECHO_C" >&6
10217else
10218 cat >conftest.$ac_ext <<_ACEOF
10219#line 10219 "configure"
10220#include "confdefs.h"
10221/* System header to define __stub macros and hopefully few prototypes,
10222 which can conflict with char hes_getmailhost (); below. */
10223#include <assert.h>
10224/* Override any gcc2 internal prototype to avoid an error. */
10225#ifdef __cplusplus
10226extern "C"
10227#endif
10228/* We use char because int might match the return type of a gcc2
10229 builtin and then its argument prototype would still apply. */
10230char hes_getmailhost ();
10231char (*f) ();
10232
10233int
10234main ()
10235{
10236/* The GNU C library defines this for functions which it implements
10237 to always fail with ENOSYS. Some functions are actually named
10238 something starting with __ and the normal name is an alias. */
10239#if defined (__stub_hes_getmailhost) || defined (__stub___hes_getmailhost)
10240choke me
10241#else
10242f = hes_getmailhost;
10243#endif
10244
10245 ;
10246 return 0;
10247}
10248_ACEOF
10249rm -f conftest.$ac_objext conftest$ac_exeext
10250if { (eval echo "$as_me:10250: \"$ac_link\"") >&5
10251 (eval $ac_link) 2>&5
10252 ac_status=$?
10253 echo "$as_me:10253: \$? = $ac_status" >&5
10254 (exit $ac_status); } &&
10255 { ac_try='test -s conftest$ac_exeext'
10256 { (eval echo "$as_me:10256: \"$ac_try\"") >&5
10257 (eval $ac_try) 2>&5
10258 ac_status=$?
10259 echo "$as_me:10259: \$? = $ac_status" >&5
10260 (exit $ac_status); }; }; then
10261 ac_cv_func_hes_getmailhost=yes
10262else
10263 echo "$as_me: failed program was:" >&5
10264cat conftest.$ac_ext >&5
10265ac_cv_func_hes_getmailhost=no
10266fi
10267rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10268fi
10269echo "$as_me:10269: result: $ac_cv_func_hes_getmailhost" >&5
10270echo "${ECHO_T}$ac_cv_func_hes_getmailhost" >&6
10271if test $ac_cv_func_hes_getmailhost = yes; then
10272 :
10273else
10274 echo "$as_me:10274: checking for hes_getmailhost in -lhesiod" >&5
10275echo $ECHO_N "checking for hes_getmailhost in -lhesiod... $ECHO_C" >&6
10276if test "${ac_cv_lib_hesiod_hes_getmailhost+set}" = set; then
10277 echo $ECHO_N "(cached) $ECHO_C" >&6
10278else
10279 ac_check_lib_save_LIBS=$LIBS
10280LIBS="-lhesiod $RESOLVLIB $LIBS"
10281cat >conftest.$ac_ext <<_ACEOF
10282#line 10282 "configure"
10283#include "confdefs.h"
10284
10285/* Override any gcc2 internal prototype to avoid an error. */
10286#ifdef __cplusplus
10287extern "C"
10288#endif
10289/* We use char because int might match the return type of a gcc2
10290 builtin and then its argument prototype would still apply. */
10291char hes_getmailhost ();
10292int
10293main ()
10294{
10295hes_getmailhost ();
10296 ;
10297 return 0;
10298}
10299_ACEOF
10300rm -f conftest.$ac_objext conftest$ac_exeext
10301if { (eval echo "$as_me:10301: \"$ac_link\"") >&5
10302 (eval $ac_link) 2>&5
10303 ac_status=$?
10304 echo "$as_me:10304: \$? = $ac_status" >&5
10305 (exit $ac_status); } &&
10306 { ac_try='test -s conftest$ac_exeext'
10307 { (eval echo "$as_me:10307: \"$ac_try\"") >&5
10308 (eval $ac_try) 2>&5
10309 ac_status=$?
10310 echo "$as_me:10310: \$? = $ac_status" >&5
10311 (exit $ac_status); }; }; then
10312 ac_cv_lib_hesiod_hes_getmailhost=yes
10313else
10314 echo "$as_me: failed program was:" >&5
10315cat conftest.$ac_ext >&5
10316ac_cv_lib_hesiod_hes_getmailhost=no
10317fi
10318rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10319LIBS=$ac_check_lib_save_LIBS
10320fi
10321echo "$as_me:10321: result: $ac_cv_lib_hesiod_hes_getmailhost" >&5
10322echo "${ECHO_T}$ac_cv_lib_hesiod_hes_getmailhost" >&6
10323if test $ac_cv_lib_hesiod_hes_getmailhost = yes; then
10324 cat >>confdefs.h <<\EOF
10325#define HAVE_LIBHESIOD 1
10326EOF
10327
10328else
10329 :
10330fi
10331
10332fi
10333
10334fi
10335
9967# These tell us which Kerberos-related libraries to use. 10336# These tell us which Kerberos-related libraries to use.
9968if test "${with_kerberos+set}" = set; then 10337if test "${with_kerberos+set}" = set; then
9969 10338
9970echo "$as_me:9970: checking for com_err in -lcom_err" >&5 10339echo "$as_me:10339: checking for com_err in -lcom_err" >&5
9971echo $ECHO_N "checking for com_err in -lcom_err... $ECHO_C" >&6 10340echo $ECHO_N "checking for com_err in -lcom_err... $ECHO_C" >&6
9972if test "${ac_cv_lib_com_err_com_err+set}" = set; then 10341if test "${ac_cv_lib_com_err_com_err+set}" = set; then
9973 echo $ECHO_N "(cached) $ECHO_C" >&6 10342 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9975,7 +10344,7 @@ else
9975 ac_check_lib_save_LIBS=$LIBS 10344 ac_check_lib_save_LIBS=$LIBS
9976LIBS="-lcom_err $LIBS" 10345LIBS="-lcom_err $LIBS"
9977cat >conftest.$ac_ext <<_ACEOF 10346cat >conftest.$ac_ext <<_ACEOF
9978#line 9978 "configure" 10347#line 10347 "configure"
9979#include "confdefs.h" 10348#include "confdefs.h"
9980 10349
9981/* Override any gcc2 internal prototype to avoid an error. */ 10350/* Override any gcc2 internal prototype to avoid an error. */
@@ -9994,16 +10363,16 @@ com_err ();
9994} 10363}
9995_ACEOF 10364_ACEOF
9996rm -f conftest.$ac_objext conftest$ac_exeext 10365rm -f conftest.$ac_objext conftest$ac_exeext
9997if { (eval echo "$as_me:9997: \"$ac_link\"") >&5 10366if { (eval echo "$as_me:10366: \"$ac_link\"") >&5
9998 (eval $ac_link) 2>&5 10367 (eval $ac_link) 2>&5
9999 ac_status=$? 10368 ac_status=$?
10000 echo "$as_me:10000: \$? = $ac_status" >&5 10369 echo "$as_me:10369: \$? = $ac_status" >&5
10001 (exit $ac_status); } && 10370 (exit $ac_status); } &&
10002 { ac_try='test -s conftest$ac_exeext' 10371 { ac_try='test -s conftest$ac_exeext'
10003 { (eval echo "$as_me:10003: \"$ac_try\"") >&5 10372 { (eval echo "$as_me:10372: \"$ac_try\"") >&5
10004 (eval $ac_try) 2>&5 10373 (eval $ac_try) 2>&5
10005 ac_status=$? 10374 ac_status=$?
10006 echo "$as_me:10006: \$? = $ac_status" >&5 10375 echo "$as_me:10375: \$? = $ac_status" >&5
10007 (exit $ac_status); }; }; then 10376 (exit $ac_status); }; }; then
10008 ac_cv_lib_com_err_com_err=yes 10377 ac_cv_lib_com_err_com_err=yes
10009else 10378else
@@ -10014,7 +10383,7 @@ fi
10014rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10383rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10015LIBS=$ac_check_lib_save_LIBS 10384LIBS=$ac_check_lib_save_LIBS
10016fi 10385fi
10017echo "$as_me:10017: result: $ac_cv_lib_com_err_com_err" >&5 10386echo "$as_me:10386: result: $ac_cv_lib_com_err_com_err" >&5
10018echo "${ECHO_T}$ac_cv_lib_com_err_com_err" >&6 10387echo "${ECHO_T}$ac_cv_lib_com_err_com_err" >&6
10019if test $ac_cv_lib_com_err_com_err = yes; then 10388if test $ac_cv_lib_com_err_com_err = yes; then
10020 cat >>confdefs.h <<EOF 10389 cat >>confdefs.h <<EOF
@@ -10025,7 +10394,7 @@ EOF
10025 10394
10026fi 10395fi
10027 10396
10028echo "$as_me:10028: checking for mit_des_cbc_encrypt in -lk5crypto" >&5 10397echo "$as_me:10397: checking for mit_des_cbc_encrypt in -lk5crypto" >&5
10029echo $ECHO_N "checking for mit_des_cbc_encrypt in -lk5crypto... $ECHO_C" >&6 10398echo $ECHO_N "checking for mit_des_cbc_encrypt in -lk5crypto... $ECHO_C" >&6
10030if test "${ac_cv_lib_k5crypto_mit_des_cbc_encrypt+set}" = set; then 10399if test "${ac_cv_lib_k5crypto_mit_des_cbc_encrypt+set}" = set; then
10031 echo $ECHO_N "(cached) $ECHO_C" >&6 10400 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10033,7 +10402,7 @@ else
10033 ac_check_lib_save_LIBS=$LIBS 10402 ac_check_lib_save_LIBS=$LIBS
10034LIBS="-lk5crypto $LIBS" 10403LIBS="-lk5crypto $LIBS"
10035cat >conftest.$ac_ext <<_ACEOF 10404cat >conftest.$ac_ext <<_ACEOF
10036#line 10036 "configure" 10405#line 10405 "configure"
10037#include "confdefs.h" 10406#include "confdefs.h"
10038 10407
10039/* Override any gcc2 internal prototype to avoid an error. */ 10408/* Override any gcc2 internal prototype to avoid an error. */
@@ -10052,16 +10421,16 @@ mit_des_cbc_encrypt ();
10052} 10421}
10053_ACEOF 10422_ACEOF
10054rm -f conftest.$ac_objext conftest$ac_exeext 10423rm -f conftest.$ac_objext conftest$ac_exeext
10055if { (eval echo "$as_me:10055: \"$ac_link\"") >&5 10424if { (eval echo "$as_me:10424: \"$ac_link\"") >&5
10056 (eval $ac_link) 2>&5 10425 (eval $ac_link) 2>&5
10057 ac_status=$? 10426 ac_status=$?
10058 echo "$as_me:10058: \$? = $ac_status" >&5 10427 echo "$as_me:10427: \$? = $ac_status" >&5
10059 (exit $ac_status); } && 10428 (exit $ac_status); } &&
10060 { ac_try='test -s conftest$ac_exeext' 10429 { ac_try='test -s conftest$ac_exeext'
10061 { (eval echo "$as_me:10061: \"$ac_try\"") >&5 10430 { (eval echo "$as_me:10430: \"$ac_try\"") >&5
10062 (eval $ac_try) 2>&5 10431 (eval $ac_try) 2>&5
10063 ac_status=$? 10432 ac_status=$?
10064 echo "$as_me:10064: \$? = $ac_status" >&5 10433 echo "$as_me:10433: \$? = $ac_status" >&5
10065 (exit $ac_status); }; }; then 10434 (exit $ac_status); }; }; then
10066 ac_cv_lib_k5crypto_mit_des_cbc_encrypt=yes 10435 ac_cv_lib_k5crypto_mit_des_cbc_encrypt=yes
10067else 10436else
@@ -10072,7 +10441,7 @@ fi
10072rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10441rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10073LIBS=$ac_check_lib_save_LIBS 10442LIBS=$ac_check_lib_save_LIBS
10074fi 10443fi
10075echo "$as_me:10075: result: $ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&5 10444echo "$as_me:10444: result: $ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&5
10076echo "${ECHO_T}$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&6 10445echo "${ECHO_T}$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&6
10077if test $ac_cv_lib_k5crypto_mit_des_cbc_encrypt = yes; then 10446if test $ac_cv_lib_k5crypto_mit_des_cbc_encrypt = yes; then
10078 cat >>confdefs.h <<EOF 10447 cat >>confdefs.h <<EOF
@@ -10083,7 +10452,7 @@ EOF
10083 10452
10084fi 10453fi
10085 10454
10086echo "$as_me:10086: checking for mit_des_cbc_encrypt in -lcrypto" >&5 10455echo "$as_me:10455: checking for mit_des_cbc_encrypt in -lcrypto" >&5
10087echo $ECHO_N "checking for mit_des_cbc_encrypt in -lcrypto... $ECHO_C" >&6 10456echo $ECHO_N "checking for mit_des_cbc_encrypt in -lcrypto... $ECHO_C" >&6
10088if test "${ac_cv_lib_crypto_mit_des_cbc_encrypt+set}" = set; then 10457if test "${ac_cv_lib_crypto_mit_des_cbc_encrypt+set}" = set; then
10089 echo $ECHO_N "(cached) $ECHO_C" >&6 10458 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10091,7 +10460,7 @@ else
10091 ac_check_lib_save_LIBS=$LIBS 10460 ac_check_lib_save_LIBS=$LIBS
10092LIBS="-lcrypto $LIBS" 10461LIBS="-lcrypto $LIBS"
10093cat >conftest.$ac_ext <<_ACEOF 10462cat >conftest.$ac_ext <<_ACEOF
10094#line 10094 "configure" 10463#line 10463 "configure"
10095#include "confdefs.h" 10464#include "confdefs.h"
10096 10465
10097/* Override any gcc2 internal prototype to avoid an error. */ 10466/* Override any gcc2 internal prototype to avoid an error. */
@@ -10110,16 +10479,16 @@ mit_des_cbc_encrypt ();
10110} 10479}
10111_ACEOF 10480_ACEOF
10112rm -f conftest.$ac_objext conftest$ac_exeext 10481rm -f conftest.$ac_objext conftest$ac_exeext
10113if { (eval echo "$as_me:10113: \"$ac_link\"") >&5 10482if { (eval echo "$as_me:10482: \"$ac_link\"") >&5
10114 (eval $ac_link) 2>&5 10483 (eval $ac_link) 2>&5
10115 ac_status=$? 10484 ac_status=$?
10116 echo "$as_me:10116: \$? = $ac_status" >&5 10485 echo "$as_me:10485: \$? = $ac_status" >&5
10117 (exit $ac_status); } && 10486 (exit $ac_status); } &&
10118 { ac_try='test -s conftest$ac_exeext' 10487 { ac_try='test -s conftest$ac_exeext'
10119 { (eval echo "$as_me:10119: \"$ac_try\"") >&5 10488 { (eval echo "$as_me:10488: \"$ac_try\"") >&5
10120 (eval $ac_try) 2>&5 10489 (eval $ac_try) 2>&5
10121 ac_status=$? 10490 ac_status=$?
10122 echo "$as_me:10122: \$? = $ac_status" >&5 10491 echo "$as_me:10491: \$? = $ac_status" >&5
10123 (exit $ac_status); }; }; then 10492 (exit $ac_status); }; }; then
10124 ac_cv_lib_crypto_mit_des_cbc_encrypt=yes 10493 ac_cv_lib_crypto_mit_des_cbc_encrypt=yes
10125else 10494else
@@ -10130,7 +10499,7 @@ fi
10130rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10499rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10131LIBS=$ac_check_lib_save_LIBS 10500LIBS=$ac_check_lib_save_LIBS
10132fi 10501fi
10133echo "$as_me:10133: result: $ac_cv_lib_crypto_mit_des_cbc_encrypt" >&5 10502echo "$as_me:10502: result: $ac_cv_lib_crypto_mit_des_cbc_encrypt" >&5
10134echo "${ECHO_T}$ac_cv_lib_crypto_mit_des_cbc_encrypt" >&6 10503echo "${ECHO_T}$ac_cv_lib_crypto_mit_des_cbc_encrypt" >&6
10135if test $ac_cv_lib_crypto_mit_des_cbc_encrypt = yes; then 10504if test $ac_cv_lib_crypto_mit_des_cbc_encrypt = yes; then
10136 cat >>confdefs.h <<EOF 10505 cat >>confdefs.h <<EOF
@@ -10141,7 +10510,7 @@ EOF
10141 10510
10142fi 10511fi
10143 10512
10144echo "$as_me:10144: checking for krb5_init_context in -lkrb5" >&5 10513echo "$as_me:10513: checking for krb5_init_context in -lkrb5" >&5
10145echo $ECHO_N "checking for krb5_init_context in -lkrb5... $ECHO_C" >&6 10514echo $ECHO_N "checking for krb5_init_context in -lkrb5... $ECHO_C" >&6
10146if test "${ac_cv_lib_krb5_krb5_init_context+set}" = set; then 10515if test "${ac_cv_lib_krb5_krb5_init_context+set}" = set; then
10147 echo $ECHO_N "(cached) $ECHO_C" >&6 10516 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10149,7 +10518,7 @@ else
10149 ac_check_lib_save_LIBS=$LIBS 10518 ac_check_lib_save_LIBS=$LIBS
10150LIBS="-lkrb5 $LIBS" 10519LIBS="-lkrb5 $LIBS"
10151cat >conftest.$ac_ext <<_ACEOF 10520cat >conftest.$ac_ext <<_ACEOF
10152#line 10152 "configure" 10521#line 10521 "configure"
10153#include "confdefs.h" 10522#include "confdefs.h"
10154 10523
10155/* Override any gcc2 internal prototype to avoid an error. */ 10524/* Override any gcc2 internal prototype to avoid an error. */
@@ -10168,16 +10537,16 @@ krb5_init_context ();
10168} 10537}
10169_ACEOF 10538_ACEOF
10170rm -f conftest.$ac_objext conftest$ac_exeext 10539rm -f conftest.$ac_objext conftest$ac_exeext
10171if { (eval echo "$as_me:10171: \"$ac_link\"") >&5 10540if { (eval echo "$as_me:10540: \"$ac_link\"") >&5
10172 (eval $ac_link) 2>&5 10541 (eval $ac_link) 2>&5
10173 ac_status=$? 10542 ac_status=$?
10174 echo "$as_me:10174: \$? = $ac_status" >&5 10543 echo "$as_me:10543: \$? = $ac_status" >&5
10175 (exit $ac_status); } && 10544 (exit $ac_status); } &&
10176 { ac_try='test -s conftest$ac_exeext' 10545 { ac_try='test -s conftest$ac_exeext'
10177 { (eval echo "$as_me:10177: \"$ac_try\"") >&5 10546 { (eval echo "$as_me:10546: \"$ac_try\"") >&5
10178 (eval $ac_try) 2>&5 10547 (eval $ac_try) 2>&5
10179 ac_status=$? 10548 ac_status=$?
10180 echo "$as_me:10180: \$? = $ac_status" >&5 10549 echo "$as_me:10549: \$? = $ac_status" >&5
10181 (exit $ac_status); }; }; then 10550 (exit $ac_status); }; }; then
10182 ac_cv_lib_krb5_krb5_init_context=yes 10551 ac_cv_lib_krb5_krb5_init_context=yes
10183else 10552else
@@ -10188,7 +10557,7 @@ fi
10188rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10557rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10189LIBS=$ac_check_lib_save_LIBS 10558LIBS=$ac_check_lib_save_LIBS
10190fi 10559fi
10191echo "$as_me:10191: result: $ac_cv_lib_krb5_krb5_init_context" >&5 10560echo "$as_me:10560: result: $ac_cv_lib_krb5_krb5_init_context" >&5
10192echo "${ECHO_T}$ac_cv_lib_krb5_krb5_init_context" >&6 10561echo "${ECHO_T}$ac_cv_lib_krb5_krb5_init_context" >&6
10193if test $ac_cv_lib_krb5_krb5_init_context = yes; then 10562if test $ac_cv_lib_krb5_krb5_init_context = yes; then
10194 cat >>confdefs.h <<EOF 10563 cat >>confdefs.h <<EOF
@@ -10201,7 +10570,7 @@ fi
10201 10570
10202 if test "${with_kerberos5+set}" != set; then 10571 if test "${with_kerberos5+set}" != set; then
10203 10572
10204echo "$as_me:10204: checking for des_cbc_encrypt in -ldes425" >&5 10573echo "$as_me:10573: checking for des_cbc_encrypt in -ldes425" >&5
10205echo $ECHO_N "checking for des_cbc_encrypt in -ldes425... $ECHO_C" >&6 10574echo $ECHO_N "checking for des_cbc_encrypt in -ldes425... $ECHO_C" >&6
10206if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then 10575if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then
10207 echo $ECHO_N "(cached) $ECHO_C" >&6 10576 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10209,7 +10578,7 @@ else
10209 ac_check_lib_save_LIBS=$LIBS 10578 ac_check_lib_save_LIBS=$LIBS
10210LIBS="-ldes425 $LIBS" 10579LIBS="-ldes425 $LIBS"
10211cat >conftest.$ac_ext <<_ACEOF 10580cat >conftest.$ac_ext <<_ACEOF
10212#line 10212 "configure" 10581#line 10581 "configure"
10213#include "confdefs.h" 10582#include "confdefs.h"
10214 10583
10215/* Override any gcc2 internal prototype to avoid an error. */ 10584/* Override any gcc2 internal prototype to avoid an error. */
@@ -10228,16 +10597,16 @@ des_cbc_encrypt ();
10228} 10597}
10229_ACEOF 10598_ACEOF
10230rm -f conftest.$ac_objext conftest$ac_exeext 10599rm -f conftest.$ac_objext conftest$ac_exeext
10231if { (eval echo "$as_me:10231: \"$ac_link\"") >&5 10600if { (eval echo "$as_me:10600: \"$ac_link\"") >&5
10232 (eval $ac_link) 2>&5 10601 (eval $ac_link) 2>&5
10233 ac_status=$? 10602 ac_status=$?
10234 echo "$as_me:10234: \$? = $ac_status" >&5 10603 echo "$as_me:10603: \$? = $ac_status" >&5
10235 (exit $ac_status); } && 10604 (exit $ac_status); } &&
10236 { ac_try='test -s conftest$ac_exeext' 10605 { ac_try='test -s conftest$ac_exeext'
10237 { (eval echo "$as_me:10237: \"$ac_try\"") >&5 10606 { (eval echo "$as_me:10606: \"$ac_try\"") >&5
10238 (eval $ac_try) 2>&5 10607 (eval $ac_try) 2>&5
10239 ac_status=$? 10608 ac_status=$?
10240 echo "$as_me:10240: \$? = $ac_status" >&5 10609 echo "$as_me:10609: \$? = $ac_status" >&5
10241 (exit $ac_status); }; }; then 10610 (exit $ac_status); }; }; then
10242 ac_cv_lib_des425_des_cbc_encrypt=yes 10611 ac_cv_lib_des425_des_cbc_encrypt=yes
10243else 10612else
@@ -10248,7 +10617,7 @@ fi
10248rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10617rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10249LIBS=$ac_check_lib_save_LIBS 10618LIBS=$ac_check_lib_save_LIBS
10250fi 10619fi
10251echo "$as_me:10251: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5 10620echo "$as_me:10620: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5
10252echo "${ECHO_T}$ac_cv_lib_des425_des_cbc_encrypt" >&6 10621echo "${ECHO_T}$ac_cv_lib_des425_des_cbc_encrypt" >&6
10253if test $ac_cv_lib_des425_des_cbc_encrypt = yes; then 10622if test $ac_cv_lib_des425_des_cbc_encrypt = yes; then
10254 cat >>confdefs.h <<EOF 10623 cat >>confdefs.h <<EOF
@@ -10259,7 +10628,7 @@ EOF
10259 10628
10260else 10629else
10261 10630
10262echo "$as_me:10262: checking for des_cbc_encrypt in -ldes" >&5 10631echo "$as_me:10631: checking for des_cbc_encrypt in -ldes" >&5
10263echo $ECHO_N "checking for des_cbc_encrypt in -ldes... $ECHO_C" >&6 10632echo $ECHO_N "checking for des_cbc_encrypt in -ldes... $ECHO_C" >&6
10264if test "${ac_cv_lib_des_des_cbc_encrypt+set}" = set; then 10633if test "${ac_cv_lib_des_des_cbc_encrypt+set}" = set; then
10265 echo $ECHO_N "(cached) $ECHO_C" >&6 10634 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10267,7 +10636,7 @@ else
10267 ac_check_lib_save_LIBS=$LIBS 10636 ac_check_lib_save_LIBS=$LIBS
10268LIBS="-ldes $LIBS" 10637LIBS="-ldes $LIBS"
10269cat >conftest.$ac_ext <<_ACEOF 10638cat >conftest.$ac_ext <<_ACEOF
10270#line 10270 "configure" 10639#line 10639 "configure"
10271#include "confdefs.h" 10640#include "confdefs.h"
10272 10641
10273/* Override any gcc2 internal prototype to avoid an error. */ 10642/* Override any gcc2 internal prototype to avoid an error. */
@@ -10286,16 +10655,16 @@ des_cbc_encrypt ();
10286} 10655}
10287_ACEOF 10656_ACEOF
10288rm -f conftest.$ac_objext conftest$ac_exeext 10657rm -f conftest.$ac_objext conftest$ac_exeext
10289if { (eval echo "$as_me:10289: \"$ac_link\"") >&5 10658if { (eval echo "$as_me:10658: \"$ac_link\"") >&5
10290 (eval $ac_link) 2>&5 10659 (eval $ac_link) 2>&5
10291 ac_status=$? 10660 ac_status=$?
10292 echo "$as_me:10292: \$? = $ac_status" >&5 10661 echo "$as_me:10661: \$? = $ac_status" >&5
10293 (exit $ac_status); } && 10662 (exit $ac_status); } &&
10294 { ac_try='test -s conftest$ac_exeext' 10663 { ac_try='test -s conftest$ac_exeext'
10295 { (eval echo "$as_me:10295: \"$ac_try\"") >&5 10664 { (eval echo "$as_me:10664: \"$ac_try\"") >&5
10296 (eval $ac_try) 2>&5 10665 (eval $ac_try) 2>&5
10297 ac_status=$? 10666 ac_status=$?
10298 echo "$as_me:10298: \$? = $ac_status" >&5 10667 echo "$as_me:10667: \$? = $ac_status" >&5
10299 (exit $ac_status); }; }; then 10668 (exit $ac_status); }; }; then
10300 ac_cv_lib_des_des_cbc_encrypt=yes 10669 ac_cv_lib_des_des_cbc_encrypt=yes
10301else 10670else
@@ -10306,7 +10675,7 @@ fi
10306rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10675rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10307LIBS=$ac_check_lib_save_LIBS 10676LIBS=$ac_check_lib_save_LIBS
10308fi 10677fi
10309echo "$as_me:10309: result: $ac_cv_lib_des_des_cbc_encrypt" >&5 10678echo "$as_me:10678: result: $ac_cv_lib_des_des_cbc_encrypt" >&5
10310echo "${ECHO_T}$ac_cv_lib_des_des_cbc_encrypt" >&6 10679echo "${ECHO_T}$ac_cv_lib_des_des_cbc_encrypt" >&6
10311if test $ac_cv_lib_des_des_cbc_encrypt = yes; then 10680if test $ac_cv_lib_des_des_cbc_encrypt = yes; then
10312 cat >>confdefs.h <<EOF 10681 cat >>confdefs.h <<EOF
@@ -10319,7 +10688,7 @@ fi
10319 10688
10320fi 10689fi
10321 10690
10322echo "$as_me:10322: checking for krb_get_cred in -lkrb4" >&5 10691echo "$as_me:10691: checking for krb_get_cred in -lkrb4" >&5
10323echo $ECHO_N "checking for krb_get_cred in -lkrb4... $ECHO_C" >&6 10692echo $ECHO_N "checking for krb_get_cred in -lkrb4... $ECHO_C" >&6
10324if test "${ac_cv_lib_krb4_krb_get_cred+set}" = set; then 10693if test "${ac_cv_lib_krb4_krb_get_cred+set}" = set; then
10325 echo $ECHO_N "(cached) $ECHO_C" >&6 10694 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10327,7 +10696,7 @@ else
10327 ac_check_lib_save_LIBS=$LIBS 10696 ac_check_lib_save_LIBS=$LIBS
10328LIBS="-lkrb4 $LIBS" 10697LIBS="-lkrb4 $LIBS"
10329cat >conftest.$ac_ext <<_ACEOF 10698cat >conftest.$ac_ext <<_ACEOF
10330#line 10330 "configure" 10699#line 10699 "configure"
10331#include "confdefs.h" 10700#include "confdefs.h"
10332 10701
10333/* Override any gcc2 internal prototype to avoid an error. */ 10702/* Override any gcc2 internal prototype to avoid an error. */
@@ -10346,16 +10715,16 @@ krb_get_cred ();
10346} 10715}
10347_ACEOF 10716_ACEOF
10348rm -f conftest.$ac_objext conftest$ac_exeext 10717rm -f conftest.$ac_objext conftest$ac_exeext
10349if { (eval echo "$as_me:10349: \"$ac_link\"") >&5 10718if { (eval echo "$as_me:10718: \"$ac_link\"") >&5
10350 (eval $ac_link) 2>&5 10719 (eval $ac_link) 2>&5
10351 ac_status=$? 10720 ac_status=$?
10352 echo "$as_me:10352: \$? = $ac_status" >&5 10721 echo "$as_me:10721: \$? = $ac_status" >&5
10353 (exit $ac_status); } && 10722 (exit $ac_status); } &&
10354 { ac_try='test -s conftest$ac_exeext' 10723 { ac_try='test -s conftest$ac_exeext'
10355 { (eval echo "$as_me:10355: \"$ac_try\"") >&5 10724 { (eval echo "$as_me:10724: \"$ac_try\"") >&5
10356 (eval $ac_try) 2>&5 10725 (eval $ac_try) 2>&5
10357 ac_status=$? 10726 ac_status=$?
10358 echo "$as_me:10358: \$? = $ac_status" >&5 10727 echo "$as_me:10727: \$? = $ac_status" >&5
10359 (exit $ac_status); }; }; then 10728 (exit $ac_status); }; }; then
10360 ac_cv_lib_krb4_krb_get_cred=yes 10729 ac_cv_lib_krb4_krb_get_cred=yes
10361else 10730else
@@ -10366,7 +10735,7 @@ fi
10366rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10735rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10367LIBS=$ac_check_lib_save_LIBS 10736LIBS=$ac_check_lib_save_LIBS
10368fi 10737fi
10369echo "$as_me:10369: result: $ac_cv_lib_krb4_krb_get_cred" >&5 10738echo "$as_me:10738: result: $ac_cv_lib_krb4_krb_get_cred" >&5
10370echo "${ECHO_T}$ac_cv_lib_krb4_krb_get_cred" >&6 10739echo "${ECHO_T}$ac_cv_lib_krb4_krb_get_cred" >&6
10371if test $ac_cv_lib_krb4_krb_get_cred = yes; then 10740if test $ac_cv_lib_krb4_krb_get_cred = yes; then
10372 cat >>confdefs.h <<EOF 10741 cat >>confdefs.h <<EOF
@@ -10377,7 +10746,7 @@ EOF
10377 10746
10378else 10747else
10379 10748
10380echo "$as_me:10380: checking for krb_get_cred in -lkrb" >&5 10749echo "$as_me:10749: checking for krb_get_cred in -lkrb" >&5
10381echo $ECHO_N "checking for krb_get_cred in -lkrb... $ECHO_C" >&6 10750echo $ECHO_N "checking for krb_get_cred in -lkrb... $ECHO_C" >&6
10382if test "${ac_cv_lib_krb_krb_get_cred+set}" = set; then 10751if test "${ac_cv_lib_krb_krb_get_cred+set}" = set; then
10383 echo $ECHO_N "(cached) $ECHO_C" >&6 10752 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10385,7 +10754,7 @@ else
10385 ac_check_lib_save_LIBS=$LIBS 10754 ac_check_lib_save_LIBS=$LIBS
10386LIBS="-lkrb $LIBS" 10755LIBS="-lkrb $LIBS"
10387cat >conftest.$ac_ext <<_ACEOF 10756cat >conftest.$ac_ext <<_ACEOF
10388#line 10388 "configure" 10757#line 10757 "configure"
10389#include "confdefs.h" 10758#include "confdefs.h"
10390 10759
10391/* Override any gcc2 internal prototype to avoid an error. */ 10760/* Override any gcc2 internal prototype to avoid an error. */
@@ -10404,16 +10773,16 @@ krb_get_cred ();
10404} 10773}
10405_ACEOF 10774_ACEOF
10406rm -f conftest.$ac_objext conftest$ac_exeext 10775rm -f conftest.$ac_objext conftest$ac_exeext
10407if { (eval echo "$as_me:10407: \"$ac_link\"") >&5 10776if { (eval echo "$as_me:10776: \"$ac_link\"") >&5
10408 (eval $ac_link) 2>&5 10777 (eval $ac_link) 2>&5
10409 ac_status=$? 10778 ac_status=$?
10410 echo "$as_me:10410: \$? = $ac_status" >&5 10779 echo "$as_me:10779: \$? = $ac_status" >&5
10411 (exit $ac_status); } && 10780 (exit $ac_status); } &&
10412 { ac_try='test -s conftest$ac_exeext' 10781 { ac_try='test -s conftest$ac_exeext'
10413 { (eval echo "$as_me:10413: \"$ac_try\"") >&5 10782 { (eval echo "$as_me:10782: \"$ac_try\"") >&5
10414 (eval $ac_try) 2>&5 10783 (eval $ac_try) 2>&5
10415 ac_status=$? 10784 ac_status=$?
10416 echo "$as_me:10416: \$? = $ac_status" >&5 10785 echo "$as_me:10785: \$? = $ac_status" >&5
10417 (exit $ac_status); }; }; then 10786 (exit $ac_status); }; }; then
10418 ac_cv_lib_krb_krb_get_cred=yes 10787 ac_cv_lib_krb_krb_get_cred=yes
10419else 10788else
@@ -10424,7 +10793,7 @@ fi
10424rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 10793rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10425LIBS=$ac_check_lib_save_LIBS 10794LIBS=$ac_check_lib_save_LIBS
10426fi 10795fi
10427echo "$as_me:10427: result: $ac_cv_lib_krb_krb_get_cred" >&5 10796echo "$as_me:10796: result: $ac_cv_lib_krb_krb_get_cred" >&5
10428echo "${ECHO_T}$ac_cv_lib_krb_krb_get_cred" >&6 10797echo "${ECHO_T}$ac_cv_lib_krb_krb_get_cred" >&6
10429if test $ac_cv_lib_krb_krb_get_cred = yes; then 10798if test $ac_cv_lib_krb_krb_get_cred = yes; then
10430 cat >>confdefs.h <<EOF 10799 cat >>confdefs.h <<EOF
@@ -10444,23 +10813,23 @@ fi
10444for ac_header in krb5.h 10813for ac_header in krb5.h
10445do 10814do
10446as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 10815as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10447echo "$as_me:10447: checking for $ac_header" >&5 10816echo "$as_me:10816: checking for $ac_header" >&5
10448echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 10817echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10449if eval "test \"\${$as_ac_Header+set}\" = set"; then 10818if eval "test \"\${$as_ac_Header+set}\" = set"; then
10450 echo $ECHO_N "(cached) $ECHO_C" >&6 10819 echo $ECHO_N "(cached) $ECHO_C" >&6
10451else 10820else
10452 cat >conftest.$ac_ext <<_ACEOF 10821 cat >conftest.$ac_ext <<_ACEOF
10453#line 10453 "configure" 10822#line 10822 "configure"
10454#include "confdefs.h" 10823#include "confdefs.h"
10455#include <$ac_header> 10824#include <$ac_header>
10456_ACEOF 10825_ACEOF
10457if { (eval echo "$as_me:10457: \"$ac_cpp conftest.$ac_ext\"") >&5 10826if { (eval echo "$as_me:10826: \"$ac_cpp conftest.$ac_ext\"") >&5
10458 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 10827 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10459 ac_status=$? 10828 ac_status=$?
10460 egrep -v '^ *\+' conftest.er1 >conftest.err 10829 egrep -v '^ *\+' conftest.er1 >conftest.err
10461 rm -f conftest.er1 10830 rm -f conftest.er1
10462 cat conftest.err >&5 10831 cat conftest.err >&5
10463 echo "$as_me:10463: \$? = $ac_status" >&5 10832 echo "$as_me:10832: \$? = $ac_status" >&5
10464 (exit $ac_status); } >/dev/null; then 10833 (exit $ac_status); } >/dev/null; then
10465 if test -s conftest.err; then 10834 if test -s conftest.err; then
10466 ac_cpp_err=$ac_c_preproc_warn_flag 10835 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10479,7 +10848,7 @@ else
10479fi 10848fi
10480rm -f conftest.err conftest.$ac_ext 10849rm -f conftest.err conftest.$ac_ext
10481fi 10850fi
10482echo "$as_me:10482: result: `eval echo '${'$as_ac_Header'}'`" >&5 10851echo "$as_me:10851: result: `eval echo '${'$as_ac_Header'}'`" >&5
10483echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 10852echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10484if test `eval echo '${'$as_ac_Header'}'` = yes; then 10853if test `eval echo '${'$as_ac_Header'}'` = yes; then
10485 cat >>confdefs.h <<EOF 10854 cat >>confdefs.h <<EOF
@@ -10494,23 +10863,23 @@ done
10494for ac_header in des.h 10863for ac_header in des.h
10495do 10864do
10496as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 10865as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10497echo "$as_me:10497: checking for $ac_header" >&5 10866echo "$as_me:10866: checking for $ac_header" >&5
10498echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 10867echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10499if eval "test \"\${$as_ac_Header+set}\" = set"; then 10868if eval "test \"\${$as_ac_Header+set}\" = set"; then
10500 echo $ECHO_N "(cached) $ECHO_C" >&6 10869 echo $ECHO_N "(cached) $ECHO_C" >&6
10501else 10870else
10502 cat >conftest.$ac_ext <<_ACEOF 10871 cat >conftest.$ac_ext <<_ACEOF
10503#line 10503 "configure" 10872#line 10872 "configure"
10504#include "confdefs.h" 10873#include "confdefs.h"
10505#include <$ac_header> 10874#include <$ac_header>
10506_ACEOF 10875_ACEOF
10507if { (eval echo "$as_me:10507: \"$ac_cpp conftest.$ac_ext\"") >&5 10876if { (eval echo "$as_me:10876: \"$ac_cpp conftest.$ac_ext\"") >&5
10508 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 10877 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10509 ac_status=$? 10878 ac_status=$?
10510 egrep -v '^ *\+' conftest.er1 >conftest.err 10879 egrep -v '^ *\+' conftest.er1 >conftest.err
10511 rm -f conftest.er1 10880 rm -f conftest.er1
10512 cat conftest.err >&5 10881 cat conftest.err >&5
10513 echo "$as_me:10513: \$? = $ac_status" >&5 10882 echo "$as_me:10882: \$? = $ac_status" >&5
10514 (exit $ac_status); } >/dev/null; then 10883 (exit $ac_status); } >/dev/null; then
10515 if test -s conftest.err; then 10884 if test -s conftest.err; then
10516 ac_cpp_err=$ac_c_preproc_warn_flag 10885 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10529,7 +10898,7 @@ else
10529fi 10898fi
10530rm -f conftest.err conftest.$ac_ext 10899rm -f conftest.err conftest.$ac_ext
10531fi 10900fi
10532echo "$as_me:10532: result: `eval echo '${'$as_ac_Header'}'`" >&5 10901echo "$as_me:10901: result: `eval echo '${'$as_ac_Header'}'`" >&5
10533echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 10902echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10534if test `eval echo '${'$as_ac_Header'}'` = yes; then 10903if test `eval echo '${'$as_ac_Header'}'` = yes; then
10535 cat >>confdefs.h <<EOF 10904 cat >>confdefs.h <<EOF
@@ -10541,23 +10910,23 @@ else
10541for ac_header in kerberosIV/des.h 10910for ac_header in kerberosIV/des.h
10542do 10911do
10543as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 10912as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10544echo "$as_me:10544: checking for $ac_header" >&5 10913echo "$as_me:10913: checking for $ac_header" >&5
10545echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 10914echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10546if eval "test \"\${$as_ac_Header+set}\" = set"; then 10915if eval "test \"\${$as_ac_Header+set}\" = set"; then
10547 echo $ECHO_N "(cached) $ECHO_C" >&6 10916 echo $ECHO_N "(cached) $ECHO_C" >&6
10548else 10917else
10549 cat >conftest.$ac_ext <<_ACEOF 10918 cat >conftest.$ac_ext <<_ACEOF
10550#line 10550 "configure" 10919#line 10919 "configure"
10551#include "confdefs.h" 10920#include "confdefs.h"
10552#include <$ac_header> 10921#include <$ac_header>
10553_ACEOF 10922_ACEOF
10554if { (eval echo "$as_me:10554: \"$ac_cpp conftest.$ac_ext\"") >&5 10923if { (eval echo "$as_me:10923: \"$ac_cpp conftest.$ac_ext\"") >&5
10555 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 10924 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10556 ac_status=$? 10925 ac_status=$?
10557 egrep -v '^ *\+' conftest.er1 >conftest.err 10926 egrep -v '^ *\+' conftest.er1 >conftest.err
10558 rm -f conftest.er1 10927 rm -f conftest.er1
10559 cat conftest.err >&5 10928 cat conftest.err >&5
10560 echo "$as_me:10560: \$? = $ac_status" >&5 10929 echo "$as_me:10929: \$? = $ac_status" >&5
10561 (exit $ac_status); } >/dev/null; then 10930 (exit $ac_status); } >/dev/null; then
10562 if test -s conftest.err; then 10931 if test -s conftest.err; then
10563 ac_cpp_err=$ac_c_preproc_warn_flag 10932 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10576,7 +10945,7 @@ else
10576fi 10945fi
10577rm -f conftest.err conftest.$ac_ext 10946rm -f conftest.err conftest.$ac_ext
10578fi 10947fi
10579echo "$as_me:10579: result: `eval echo '${'$as_ac_Header'}'`" >&5 10948echo "$as_me:10948: result: `eval echo '${'$as_ac_Header'}'`" >&5
10580echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 10949echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10581if test `eval echo '${'$as_ac_Header'}'` = yes; then 10950if test `eval echo '${'$as_ac_Header'}'` = yes; then
10582 cat >>confdefs.h <<EOF 10951 cat >>confdefs.h <<EOF
@@ -10588,23 +10957,23 @@ else
10588for ac_header in kerberos/des.h 10957for ac_header in kerberos/des.h
10589do 10958do
10590as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 10959as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10591echo "$as_me:10591: checking for $ac_header" >&5 10960echo "$as_me:10960: checking for $ac_header" >&5
10592echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 10961echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10593if eval "test \"\${$as_ac_Header+set}\" = set"; then 10962if eval "test \"\${$as_ac_Header+set}\" = set"; then
10594 echo $ECHO_N "(cached) $ECHO_C" >&6 10963 echo $ECHO_N "(cached) $ECHO_C" >&6
10595else 10964else
10596 cat >conftest.$ac_ext <<_ACEOF 10965 cat >conftest.$ac_ext <<_ACEOF
10597#line 10597 "configure" 10966#line 10966 "configure"
10598#include "confdefs.h" 10967#include "confdefs.h"
10599#include <$ac_header> 10968#include <$ac_header>
10600_ACEOF 10969_ACEOF
10601if { (eval echo "$as_me:10601: \"$ac_cpp conftest.$ac_ext\"") >&5 10970if { (eval echo "$as_me:10970: \"$ac_cpp conftest.$ac_ext\"") >&5
10602 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 10971 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10603 ac_status=$? 10972 ac_status=$?
10604 egrep -v '^ *\+' conftest.er1 >conftest.err 10973 egrep -v '^ *\+' conftest.er1 >conftest.err
10605 rm -f conftest.er1 10974 rm -f conftest.er1
10606 cat conftest.err >&5 10975 cat conftest.err >&5
10607 echo "$as_me:10607: \$? = $ac_status" >&5 10976 echo "$as_me:10976: \$? = $ac_status" >&5
10608 (exit $ac_status); } >/dev/null; then 10977 (exit $ac_status); } >/dev/null; then
10609 if test -s conftest.err; then 10978 if test -s conftest.err; then
10610 ac_cpp_err=$ac_c_preproc_warn_flag 10979 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10623,7 +10992,7 @@ else
10623fi 10992fi
10624rm -f conftest.err conftest.$ac_ext 10993rm -f conftest.err conftest.$ac_ext
10625fi 10994fi
10626echo "$as_me:10626: result: `eval echo '${'$as_ac_Header'}'`" >&5 10995echo "$as_me:10995: result: `eval echo '${'$as_ac_Header'}'`" >&5
10627echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 10996echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10628if test `eval echo '${'$as_ac_Header'}'` = yes; then 10997if test `eval echo '${'$as_ac_Header'}'` = yes; then
10629 cat >>confdefs.h <<EOF 10998 cat >>confdefs.h <<EOF
@@ -10642,23 +11011,23 @@ done
10642for ac_header in krb.h 11011for ac_header in krb.h
10643do 11012do
10644as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 11013as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10645echo "$as_me:10645: checking for $ac_header" >&5 11014echo "$as_me:11014: checking for $ac_header" >&5
10646echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 11015echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10647if eval "test \"\${$as_ac_Header+set}\" = set"; then 11016if eval "test \"\${$as_ac_Header+set}\" = set"; then
10648 echo $ECHO_N "(cached) $ECHO_C" >&6 11017 echo $ECHO_N "(cached) $ECHO_C" >&6
10649else 11018else
10650 cat >conftest.$ac_ext <<_ACEOF 11019 cat >conftest.$ac_ext <<_ACEOF
10651#line 10651 "configure" 11020#line 11020 "configure"
10652#include "confdefs.h" 11021#include "confdefs.h"
10653#include <$ac_header> 11022#include <$ac_header>
10654_ACEOF 11023_ACEOF
10655if { (eval echo "$as_me:10655: \"$ac_cpp conftest.$ac_ext\"") >&5 11024if { (eval echo "$as_me:11024: \"$ac_cpp conftest.$ac_ext\"") >&5
10656 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11025 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10657 ac_status=$? 11026 ac_status=$?
10658 egrep -v '^ *\+' conftest.er1 >conftest.err 11027 egrep -v '^ *\+' conftest.er1 >conftest.err
10659 rm -f conftest.er1 11028 rm -f conftest.er1
10660 cat conftest.err >&5 11029 cat conftest.err >&5
10661 echo "$as_me:10661: \$? = $ac_status" >&5 11030 echo "$as_me:11030: \$? = $ac_status" >&5
10662 (exit $ac_status); } >/dev/null; then 11031 (exit $ac_status); } >/dev/null; then
10663 if test -s conftest.err; then 11032 if test -s conftest.err; then
10664 ac_cpp_err=$ac_c_preproc_warn_flag 11033 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10677,7 +11046,7 @@ else
10677fi 11046fi
10678rm -f conftest.err conftest.$ac_ext 11047rm -f conftest.err conftest.$ac_ext
10679fi 11048fi
10680echo "$as_me:10680: result: `eval echo '${'$as_ac_Header'}'`" >&5 11049echo "$as_me:11049: result: `eval echo '${'$as_ac_Header'}'`" >&5
10681echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 11050echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10682if test `eval echo '${'$as_ac_Header'}'` = yes; then 11051if test `eval echo '${'$as_ac_Header'}'` = yes; then
10683 cat >>confdefs.h <<EOF 11052 cat >>confdefs.h <<EOF
@@ -10689,23 +11058,23 @@ else
10689for ac_header in kerberosIV/krb.h 11058for ac_header in kerberosIV/krb.h
10690do 11059do
10691as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 11060as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10692echo "$as_me:10692: checking for $ac_header" >&5 11061echo "$as_me:11061: checking for $ac_header" >&5
10693echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 11062echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10694if eval "test \"\${$as_ac_Header+set}\" = set"; then 11063if eval "test \"\${$as_ac_Header+set}\" = set"; then
10695 echo $ECHO_N "(cached) $ECHO_C" >&6 11064 echo $ECHO_N "(cached) $ECHO_C" >&6
10696else 11065else
10697 cat >conftest.$ac_ext <<_ACEOF 11066 cat >conftest.$ac_ext <<_ACEOF
10698#line 10698 "configure" 11067#line 11067 "configure"
10699#include "confdefs.h" 11068#include "confdefs.h"
10700#include <$ac_header> 11069#include <$ac_header>
10701_ACEOF 11070_ACEOF
10702if { (eval echo "$as_me:10702: \"$ac_cpp conftest.$ac_ext\"") >&5 11071if { (eval echo "$as_me:11071: \"$ac_cpp conftest.$ac_ext\"") >&5
10703 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11072 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10704 ac_status=$? 11073 ac_status=$?
10705 egrep -v '^ *\+' conftest.er1 >conftest.err 11074 egrep -v '^ *\+' conftest.er1 >conftest.err
10706 rm -f conftest.er1 11075 rm -f conftest.er1
10707 cat conftest.err >&5 11076 cat conftest.err >&5
10708 echo "$as_me:10708: \$? = $ac_status" >&5 11077 echo "$as_me:11077: \$? = $ac_status" >&5
10709 (exit $ac_status); } >/dev/null; then 11078 (exit $ac_status); } >/dev/null; then
10710 if test -s conftest.err; then 11079 if test -s conftest.err; then
10711 ac_cpp_err=$ac_c_preproc_warn_flag 11080 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10724,7 +11093,7 @@ else
10724fi 11093fi
10725rm -f conftest.err conftest.$ac_ext 11094rm -f conftest.err conftest.$ac_ext
10726fi 11095fi
10727echo "$as_me:10727: result: `eval echo '${'$as_ac_Header'}'`" >&5 11096echo "$as_me:11096: result: `eval echo '${'$as_ac_Header'}'`" >&5
10728echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 11097echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10729if test `eval echo '${'$as_ac_Header'}'` = yes; then 11098if test `eval echo '${'$as_ac_Header'}'` = yes; then
10730 cat >>confdefs.h <<EOF 11099 cat >>confdefs.h <<EOF
@@ -10736,23 +11105,23 @@ else
10736for ac_header in kerberos/krb.h 11105for ac_header in kerberos/krb.h
10737do 11106do
10738as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 11107as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10739echo "$as_me:10739: checking for $ac_header" >&5 11108echo "$as_me:11108: checking for $ac_header" >&5
10740echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 11109echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10741if eval "test \"\${$as_ac_Header+set}\" = set"; then 11110if eval "test \"\${$as_ac_Header+set}\" = set"; then
10742 echo $ECHO_N "(cached) $ECHO_C" >&6 11111 echo $ECHO_N "(cached) $ECHO_C" >&6
10743else 11112else
10744 cat >conftest.$ac_ext <<_ACEOF 11113 cat >conftest.$ac_ext <<_ACEOF
10745#line 10745 "configure" 11114#line 11114 "configure"
10746#include "confdefs.h" 11115#include "confdefs.h"
10747#include <$ac_header> 11116#include <$ac_header>
10748_ACEOF 11117_ACEOF
10749if { (eval echo "$as_me:10749: \"$ac_cpp conftest.$ac_ext\"") >&5 11118if { (eval echo "$as_me:11118: \"$ac_cpp conftest.$ac_ext\"") >&5
10750 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11119 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10751 ac_status=$? 11120 ac_status=$?
10752 egrep -v '^ *\+' conftest.er1 >conftest.err 11121 egrep -v '^ *\+' conftest.er1 >conftest.err
10753 rm -f conftest.er1 11122 rm -f conftest.er1
10754 cat conftest.err >&5 11123 cat conftest.err >&5
10755 echo "$as_me:10755: \$? = $ac_status" >&5 11124 echo "$as_me:11124: \$? = $ac_status" >&5
10756 (exit $ac_status); } >/dev/null; then 11125 (exit $ac_status); } >/dev/null; then
10757 if test -s conftest.err; then 11126 if test -s conftest.err; then
10758 ac_cpp_err=$ac_c_preproc_warn_flag 11127 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10771,7 +11140,7 @@ else
10771fi 11140fi
10772rm -f conftest.err conftest.$ac_ext 11141rm -f conftest.err conftest.$ac_ext
10773fi 11142fi
10774echo "$as_me:10774: result: `eval echo '${'$as_ac_Header'}'`" >&5 11143echo "$as_me:11143: result: `eval echo '${'$as_ac_Header'}'`" >&5
10775echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 11144echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10776if test `eval echo '${'$as_ac_Header'}'` = yes; then 11145if test `eval echo '${'$as_ac_Header'}'` = yes; then
10777 cat >>confdefs.h <<EOF 11146 cat >>confdefs.h <<EOF
@@ -10792,23 +11161,23 @@ done
10792for ac_header in com_err.h 11161for ac_header in com_err.h
10793do 11162do
10794as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 11163as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
10795echo "$as_me:10795: checking for $ac_header" >&5 11164echo "$as_me:11164: checking for $ac_header" >&5
10796echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 11165echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
10797if eval "test \"\${$as_ac_Header+set}\" = set"; then 11166if eval "test \"\${$as_ac_Header+set}\" = set"; then
10798 echo $ECHO_N "(cached) $ECHO_C" >&6 11167 echo $ECHO_N "(cached) $ECHO_C" >&6
10799else 11168else
10800 cat >conftest.$ac_ext <<_ACEOF 11169 cat >conftest.$ac_ext <<_ACEOF
10801#line 10801 "configure" 11170#line 11170 "configure"
10802#include "confdefs.h" 11171#include "confdefs.h"
10803#include <$ac_header> 11172#include <$ac_header>
10804_ACEOF 11173_ACEOF
10805if { (eval echo "$as_me:10805: \"$ac_cpp conftest.$ac_ext\"") >&5 11174if { (eval echo "$as_me:11174: \"$ac_cpp conftest.$ac_ext\"") >&5
10806 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11175 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
10807 ac_status=$? 11176 ac_status=$?
10808 egrep -v '^ *\+' conftest.er1 >conftest.err 11177 egrep -v '^ *\+' conftest.er1 >conftest.err
10809 rm -f conftest.er1 11178 rm -f conftest.er1
10810 cat conftest.err >&5 11179 cat conftest.err >&5
10811 echo "$as_me:10811: \$? = $ac_status" >&5 11180 echo "$as_me:11180: \$? = $ac_status" >&5
10812 (exit $ac_status); } >/dev/null; then 11181 (exit $ac_status); } >/dev/null; then
10813 if test -s conftest.err; then 11182 if test -s conftest.err; then
10814 ac_cpp_err=$ac_c_preproc_warn_flag 11183 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -10827,7 +11196,7 @@ else
10827fi 11196fi
10828rm -f conftest.err conftest.$ac_ext 11197rm -f conftest.err conftest.$ac_ext
10829fi 11198fi
10830echo "$as_me:10830: result: `eval echo '${'$as_ac_Header'}'`" >&5 11199echo "$as_me:11199: result: `eval echo '${'$as_ac_Header'}'`" >&5
10831echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 11200echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
10832if test `eval echo '${'$as_ac_Header'}'` = yes; then 11201if test `eval echo '${'$as_ac_Header'}'` = yes; then
10833 cat >>confdefs.h <<EOF 11202 cat >>confdefs.h <<EOF
@@ -10842,7 +11211,7 @@ fi
10842# Solaris requires -lintl if you want strerror (which calls dgettext) 11211# Solaris requires -lintl if you want strerror (which calls dgettext)
10843# to return localized messages. 11212# to return localized messages.
10844 11213
10845echo "$as_me:10845: checking for dgettext in -lintl" >&5 11214echo "$as_me:11214: checking for dgettext in -lintl" >&5
10846echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6 11215echo $ECHO_N "checking for dgettext in -lintl... $ECHO_C" >&6
10847if test "${ac_cv_lib_intl_dgettext+set}" = set; then 11216if test "${ac_cv_lib_intl_dgettext+set}" = set; then
10848 echo $ECHO_N "(cached) $ECHO_C" >&6 11217 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10850,7 +11219,7 @@ else
10850 ac_check_lib_save_LIBS=$LIBS 11219 ac_check_lib_save_LIBS=$LIBS
10851LIBS="-lintl $LIBS" 11220LIBS="-lintl $LIBS"
10852cat >conftest.$ac_ext <<_ACEOF 11221cat >conftest.$ac_ext <<_ACEOF
10853#line 10853 "configure" 11222#line 11222 "configure"
10854#include "confdefs.h" 11223#include "confdefs.h"
10855 11224
10856/* Override any gcc2 internal prototype to avoid an error. */ 11225/* Override any gcc2 internal prototype to avoid an error. */
@@ -10869,16 +11238,16 @@ dgettext ();
10869} 11238}
10870_ACEOF 11239_ACEOF
10871rm -f conftest.$ac_objext conftest$ac_exeext 11240rm -f conftest.$ac_objext conftest$ac_exeext
10872if { (eval echo "$as_me:10872: \"$ac_link\"") >&5 11241if { (eval echo "$as_me:11241: \"$ac_link\"") >&5
10873 (eval $ac_link) 2>&5 11242 (eval $ac_link) 2>&5
10874 ac_status=$? 11243 ac_status=$?
10875 echo "$as_me:10875: \$? = $ac_status" >&5 11244 echo "$as_me:11244: \$? = $ac_status" >&5
10876 (exit $ac_status); } && 11245 (exit $ac_status); } &&
10877 { ac_try='test -s conftest$ac_exeext' 11246 { ac_try='test -s conftest$ac_exeext'
10878 { (eval echo "$as_me:10878: \"$ac_try\"") >&5 11247 { (eval echo "$as_me:11247: \"$ac_try\"") >&5
10879 (eval $ac_try) 2>&5 11248 (eval $ac_try) 2>&5
10880 ac_status=$? 11249 ac_status=$?
10881 echo "$as_me:10881: \$? = $ac_status" >&5 11250 echo "$as_me:11250: \$? = $ac_status" >&5
10882 (exit $ac_status); }; }; then 11251 (exit $ac_status); }; }; then
10883 ac_cv_lib_intl_dgettext=yes 11252 ac_cv_lib_intl_dgettext=yes
10884else 11253else
@@ -10889,7 +11258,7 @@ fi
10889rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 11258rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
10890LIBS=$ac_check_lib_save_LIBS 11259LIBS=$ac_check_lib_save_LIBS
10891fi 11260fi
10892echo "$as_me:10892: result: $ac_cv_lib_intl_dgettext" >&5 11261echo "$as_me:11261: result: $ac_cv_lib_intl_dgettext" >&5
10893echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6 11262echo "${ECHO_T}$ac_cv_lib_intl_dgettext" >&6
10894if test $ac_cv_lib_intl_dgettext = yes; then 11263if test $ac_cv_lib_intl_dgettext = yes; then
10895 cat >>confdefs.h <<EOF 11264 cat >>confdefs.h <<EOF
@@ -10900,7 +11269,7 @@ EOF
10900 11269
10901fi 11270fi
10902 11271
10903echo "$as_me:10903: checking whether localtime caches TZ" >&5 11272echo "$as_me:11272: checking whether localtime caches TZ" >&5
10904echo $ECHO_N "checking whether localtime caches TZ... $ECHO_C" >&6 11273echo $ECHO_N "checking whether localtime caches TZ... $ECHO_C" >&6
10905if test "${emacs_cv_localtime_cache+set}" = set; then 11274if test "${emacs_cv_localtime_cache+set}" = set; then
10906 echo $ECHO_N "(cached) $ECHO_C" >&6 11275 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10911,7 +11280,7 @@ if test "$cross_compiling" = yes; then
10911emacs_cv_localtime_cache=yes 11280emacs_cv_localtime_cache=yes
10912else 11281else
10913 cat >conftest.$ac_ext <<_ACEOF 11282 cat >conftest.$ac_ext <<_ACEOF
10914#line 10914 "configure" 11283#line 11283 "configure"
10915#include "confdefs.h" 11284#include "confdefs.h"
10916#include <time.h> 11285#include <time.h>
10917extern char **environ; 11286extern char **environ;
@@ -10944,15 +11313,15 @@ main()
10944} 11313}
10945_ACEOF 11314_ACEOF
10946rm -f conftest$ac_exeext 11315rm -f conftest$ac_exeext
10947if { (eval echo "$as_me:10947: \"$ac_link\"") >&5 11316if { (eval echo "$as_me:11316: \"$ac_link\"") >&5
10948 (eval $ac_link) 2>&5 11317 (eval $ac_link) 2>&5
10949 ac_status=$? 11318 ac_status=$?
10950 echo "$as_me:10950: \$? = $ac_status" >&5 11319 echo "$as_me:11319: \$? = $ac_status" >&5
10951 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 11320 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
10952 { (eval echo "$as_me:10952: \"$ac_try\"") >&5 11321 { (eval echo "$as_me:11321: \"$ac_try\"") >&5
10953 (eval $ac_try) 2>&5 11322 (eval $ac_try) 2>&5
10954 ac_status=$? 11323 ac_status=$?
10955 echo "$as_me:10955: \$? = $ac_status" >&5 11324 echo "$as_me:11324: \$? = $ac_status" >&5
10956 (exit $ac_status); }; }; then 11325 (exit $ac_status); }; }; then
10957 emacs_cv_localtime_cache=no 11326 emacs_cv_localtime_cache=no
10958else 11327else
@@ -10969,7 +11338,7 @@ else
10969 emacs_cv_localtime_cache=no 11338 emacs_cv_localtime_cache=no
10970fi 11339fi
10971fi 11340fi
10972echo "$as_me:10972: result: $emacs_cv_localtime_cache" >&5 11341echo "$as_me:11341: result: $emacs_cv_localtime_cache" >&5
10973echo "${ECHO_T}$emacs_cv_localtime_cache" >&6 11342echo "${ECHO_T}$emacs_cv_localtime_cache" >&6
10974if test $emacs_cv_localtime_cache = yes; then 11343if test $emacs_cv_localtime_cache = yes; then
10975 cat >>confdefs.h <<\EOF 11344 cat >>confdefs.h <<\EOF
@@ -10983,13 +11352,13 @@ if test "x$HAVE_TIMEVAL" = xyes; then
10983for ac_func in gettimeofday 11352for ac_func in gettimeofday
10984do 11353do
10985as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 11354as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
10986echo "$as_me:10986: checking for $ac_func" >&5 11355echo "$as_me:11355: checking for $ac_func" >&5
10987echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 11356echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
10988if eval "test \"\${$as_ac_var+set}\" = set"; then 11357if eval "test \"\${$as_ac_var+set}\" = set"; then
10989 echo $ECHO_N "(cached) $ECHO_C" >&6 11358 echo $ECHO_N "(cached) $ECHO_C" >&6
10990else 11359else
10991 cat >conftest.$ac_ext <<_ACEOF 11360 cat >conftest.$ac_ext <<_ACEOF
10992#line 10992 "configure" 11361#line 11361 "configure"
10993#include "confdefs.h" 11362#include "confdefs.h"
10994/* System header to define __stub macros and hopefully few prototypes, 11363/* System header to define __stub macros and hopefully few prototypes,
10995 which can conflict with char $ac_func (); below. */ 11364 which can conflict with char $ac_func (); below. */
@@ -11020,16 +11389,16 @@ f = $ac_func;
11020} 11389}
11021_ACEOF 11390_ACEOF
11022rm -f conftest.$ac_objext conftest$ac_exeext 11391rm -f conftest.$ac_objext conftest$ac_exeext
11023if { (eval echo "$as_me:11023: \"$ac_link\"") >&5 11392if { (eval echo "$as_me:11392: \"$ac_link\"") >&5
11024 (eval $ac_link) 2>&5 11393 (eval $ac_link) 2>&5
11025 ac_status=$? 11394 ac_status=$?
11026 echo "$as_me:11026: \$? = $ac_status" >&5 11395 echo "$as_me:11395: \$? = $ac_status" >&5
11027 (exit $ac_status); } && 11396 (exit $ac_status); } &&
11028 { ac_try='test -s conftest$ac_exeext' 11397 { ac_try='test -s conftest$ac_exeext'
11029 { (eval echo "$as_me:11029: \"$ac_try\"") >&5 11398 { (eval echo "$as_me:11398: \"$ac_try\"") >&5
11030 (eval $ac_try) 2>&5 11399 (eval $ac_try) 2>&5
11031 ac_status=$? 11400 ac_status=$?
11032 echo "$as_me:11032: \$? = $ac_status" >&5 11401 echo "$as_me:11401: \$? = $ac_status" >&5
11033 (exit $ac_status); }; }; then 11402 (exit $ac_status); }; }; then
11034 eval "$as_ac_var=yes" 11403 eval "$as_ac_var=yes"
11035else 11404else
@@ -11039,7 +11408,7 @@ eval "$as_ac_var=no"
11039fi 11408fi
11040rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 11409rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
11041fi 11410fi
11042echo "$as_me:11042: result: `eval echo '${'$as_ac_var'}'`" >&5 11411echo "$as_me:11411: result: `eval echo '${'$as_ac_var'}'`" >&5
11043echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 11412echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
11044if test `eval echo '${'$as_ac_var'}'` = yes; then 11413if test `eval echo '${'$as_ac_var'}'` = yes; then
11045 cat >>confdefs.h <<EOF 11414 cat >>confdefs.h <<EOF
@@ -11049,13 +11418,13 @@ EOF
11049fi 11418fi
11050done 11419done
11051 11420
11052 echo "$as_me:11052: checking whether gettimeofday can accept two arguments" >&5 11421 echo "$as_me:11421: checking whether gettimeofday can accept two arguments" >&5
11053echo $ECHO_N "checking whether gettimeofday can accept two arguments... $ECHO_C" >&6 11422echo $ECHO_N "checking whether gettimeofday can accept two arguments... $ECHO_C" >&6
11054if test "${emacs_cv_gettimeofday_two_arguments+set}" = set; then 11423if test "${emacs_cv_gettimeofday_two_arguments+set}" = set; then
11055 echo $ECHO_N "(cached) $ECHO_C" >&6 11424 echo $ECHO_N "(cached) $ECHO_C" >&6
11056else 11425else
11057 cat >conftest.$ac_ext <<_ACEOF 11426 cat >conftest.$ac_ext <<_ACEOF
11058#line 11058 "configure" 11427#line 11427 "configure"
11059#include "confdefs.h" 11428#include "confdefs.h"
11060 11429
11061#ifdef TIME_WITH_SYS_TIME 11430#ifdef TIME_WITH_SYS_TIME
@@ -11078,16 +11447,16 @@ struct timeval time;
11078} 11447}
11079_ACEOF 11448_ACEOF
11080rm -f conftest.$ac_objext 11449rm -f conftest.$ac_objext
11081if { (eval echo "$as_me:11081: \"$ac_compile\"") >&5 11450if { (eval echo "$as_me:11450: \"$ac_compile\"") >&5
11082 (eval $ac_compile) 2>&5 11451 (eval $ac_compile) 2>&5
11083 ac_status=$? 11452 ac_status=$?
11084 echo "$as_me:11084: \$? = $ac_status" >&5 11453 echo "$as_me:11453: \$? = $ac_status" >&5
11085 (exit $ac_status); } && 11454 (exit $ac_status); } &&
11086 { ac_try='test -s conftest.$ac_objext' 11455 { ac_try='test -s conftest.$ac_objext'
11087 { (eval echo "$as_me:11087: \"$ac_try\"") >&5 11456 { (eval echo "$as_me:11456: \"$ac_try\"") >&5
11088 (eval $ac_try) 2>&5 11457 (eval $ac_try) 2>&5
11089 ac_status=$? 11458 ac_status=$?
11090 echo "$as_me:11090: \$? = $ac_status" >&5 11459 echo "$as_me:11459: \$? = $ac_status" >&5
11091 (exit $ac_status); }; }; then 11460 (exit $ac_status); }; }; then
11092 emacs_cv_gettimeofday_two_arguments=yes 11461 emacs_cv_gettimeofday_two_arguments=yes
11093else 11462else
@@ -11097,7 +11466,7 @@ emacs_cv_gettimeofday_two_arguments=no
11097fi 11466fi
11098rm -f conftest.$ac_objext conftest.$ac_ext 11467rm -f conftest.$ac_objext conftest.$ac_ext
11099fi 11468fi
11100echo "$as_me:11100: result: $emacs_cv_gettimeofday_two_arguments" >&5 11469echo "$as_me:11469: result: $emacs_cv_gettimeofday_two_arguments" >&5
11101echo "${ECHO_T}$emacs_cv_gettimeofday_two_arguments" >&6 11470echo "${ECHO_T}$emacs_cv_gettimeofday_two_arguments" >&6
11102 if test $emacs_cv_gettimeofday_two_arguments = no; then 11471 if test $emacs_cv_gettimeofday_two_arguments = no; then
11103 cat >>confdefs.h <<\EOF 11472 cat >>confdefs.h <<\EOF
@@ -11108,13 +11477,13 @@ EOF
11108fi 11477fi
11109 11478
11110if test "$ac_cv_func_gettimeofday" = yes; then 11479if test "$ac_cv_func_gettimeofday" = yes; then
11111 echo "$as_me:11111: checking for struct timezone" >&5 11480 echo "$as_me:11480: checking for struct timezone" >&5
11112echo $ECHO_N "checking for struct timezone... $ECHO_C" >&6 11481echo $ECHO_N "checking for struct timezone... $ECHO_C" >&6
11113if test "${emacs_cv_struct_timezone+set}" = set; then 11482if test "${emacs_cv_struct_timezone+set}" = set; then
11114 echo $ECHO_N "(cached) $ECHO_C" >&6 11483 echo $ECHO_N "(cached) $ECHO_C" >&6
11115else 11484else
11116 cat >conftest.$ac_ext <<_ACEOF 11485 cat >conftest.$ac_ext <<_ACEOF
11117#line 11117 "configure" 11486#line 11486 "configure"
11118#include "confdefs.h" 11487#include "confdefs.h"
11119#include <sys/time.h> 11488#include <sys/time.h>
11120int 11489int
@@ -11126,22 +11495,22 @@ struct timezone tz;
11126} 11495}
11127_ACEOF 11496_ACEOF
11128rm -f conftest.$ac_objext 11497rm -f conftest.$ac_objext
11129if { (eval echo "$as_me:11129: \"$ac_compile\"") >&5 11498if { (eval echo "$as_me:11498: \"$ac_compile\"") >&5
11130 (eval $ac_compile) 2>&5 11499 (eval $ac_compile) 2>&5
11131 ac_status=$? 11500 ac_status=$?
11132 echo "$as_me:11132: \$? = $ac_status" >&5 11501 echo "$as_me:11501: \$? = $ac_status" >&5
11133 (exit $ac_status); } && 11502 (exit $ac_status); } &&
11134 { ac_try='test -s conftest.$ac_objext' 11503 { ac_try='test -s conftest.$ac_objext'
11135 { (eval echo "$as_me:11135: \"$ac_try\"") >&5 11504 { (eval echo "$as_me:11504: \"$ac_try\"") >&5
11136 (eval $ac_try) 2>&5 11505 (eval $ac_try) 2>&5
11137 ac_status=$? 11506 ac_status=$?
11138 echo "$as_me:11138: \$? = $ac_status" >&5 11507 echo "$as_me:11507: \$? = $ac_status" >&5
11139 (exit $ac_status); }; }; then 11508 (exit $ac_status); }; }; then
11140 if test "$cross_compiling" = yes; then 11509 if test "$cross_compiling" = yes; then
11141 emacs_cv_struct_timezone=yes 11510 emacs_cv_struct_timezone=yes
11142else 11511else
11143 cat >conftest.$ac_ext <<_ACEOF 11512 cat >conftest.$ac_ext <<_ACEOF
11144#line 11144 "configure" 11513#line 11513 "configure"
11145#include "confdefs.h" 11514#include "confdefs.h"
11146 11515
11147#ifdef TIME_WITH_SYS_TIME 11516#ifdef TIME_WITH_SYS_TIME
@@ -11161,15 +11530,15 @@ main () {
11161} 11530}
11162_ACEOF 11531_ACEOF
11163rm -f conftest$ac_exeext 11532rm -f conftest$ac_exeext
11164if { (eval echo "$as_me:11164: \"$ac_link\"") >&5 11533if { (eval echo "$as_me:11533: \"$ac_link\"") >&5
11165 (eval $ac_link) 2>&5 11534 (eval $ac_link) 2>&5
11166 ac_status=$? 11535 ac_status=$?
11167 echo "$as_me:11167: \$? = $ac_status" >&5 11536 echo "$as_me:11536: \$? = $ac_status" >&5
11168 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 11537 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
11169 { (eval echo "$as_me:11169: \"$ac_try\"") >&5 11538 { (eval echo "$as_me:11538: \"$ac_try\"") >&5
11170 (eval $ac_try) 2>&5 11539 (eval $ac_try) 2>&5
11171 ac_status=$? 11540 ac_status=$?
11172 echo "$as_me:11172: \$? = $ac_status" >&5 11541 echo "$as_me:11541: \$? = $ac_status" >&5
11173 (exit $ac_status); }; }; then 11542 (exit $ac_status); }; }; then
11174 emacs_cv_struct_timezone=yes 11543 emacs_cv_struct_timezone=yes
11175else 11544else
@@ -11187,18 +11556,18 @@ emacs_cv_struct_timezone=no
11187fi 11556fi
11188rm -f conftest.$ac_objext conftest.$ac_ext 11557rm -f conftest.$ac_objext conftest.$ac_ext
11189fi 11558fi
11190echo "$as_me:11190: result: $emacs_cv_struct_timezone" >&5 11559echo "$as_me:11559: result: $emacs_cv_struct_timezone" >&5
11191echo "${ECHO_T}$emacs_cv_struct_timezone" >&6 11560echo "${ECHO_T}$emacs_cv_struct_timezone" >&6
11192fi 11561fi
11193 11562
11194ok_so_far=yes 11563ok_so_far=yes
11195echo "$as_me:11195: checking for socket" >&5 11564echo "$as_me:11564: checking for socket" >&5
11196echo $ECHO_N "checking for socket... $ECHO_C" >&6 11565echo $ECHO_N "checking for socket... $ECHO_C" >&6
11197if test "${ac_cv_func_socket+set}" = set; then 11566if test "${ac_cv_func_socket+set}" = set; then
11198 echo $ECHO_N "(cached) $ECHO_C" >&6 11567 echo $ECHO_N "(cached) $ECHO_C" >&6
11199else 11568else
11200 cat >conftest.$ac_ext <<_ACEOF 11569 cat >conftest.$ac_ext <<_ACEOF
11201#line 11201 "configure" 11570#line 11570 "configure"
11202#include "confdefs.h" 11571#include "confdefs.h"
11203/* System header to define __stub macros and hopefully few prototypes, 11572/* System header to define __stub macros and hopefully few prototypes,
11204 which can conflict with char socket (); below. */ 11573 which can conflict with char socket (); below. */
@@ -11229,16 +11598,16 @@ f = socket;
11229} 11598}
11230_ACEOF 11599_ACEOF
11231rm -f conftest.$ac_objext conftest$ac_exeext 11600rm -f conftest.$ac_objext conftest$ac_exeext
11232if { (eval echo "$as_me:11232: \"$ac_link\"") >&5 11601if { (eval echo "$as_me:11601: \"$ac_link\"") >&5
11233 (eval $ac_link) 2>&5 11602 (eval $ac_link) 2>&5
11234 ac_status=$? 11603 ac_status=$?
11235 echo "$as_me:11235: \$? = $ac_status" >&5 11604 echo "$as_me:11604: \$? = $ac_status" >&5
11236 (exit $ac_status); } && 11605 (exit $ac_status); } &&
11237 { ac_try='test -s conftest$ac_exeext' 11606 { ac_try='test -s conftest$ac_exeext'
11238 { (eval echo "$as_me:11238: \"$ac_try\"") >&5 11607 { (eval echo "$as_me:11607: \"$ac_try\"") >&5
11239 (eval $ac_try) 2>&5 11608 (eval $ac_try) 2>&5
11240 ac_status=$? 11609 ac_status=$?
11241 echo "$as_me:11241: \$? = $ac_status" >&5 11610 echo "$as_me:11610: \$? = $ac_status" >&5
11242 (exit $ac_status); }; }; then 11611 (exit $ac_status); }; }; then
11243 ac_cv_func_socket=yes 11612 ac_cv_func_socket=yes
11244else 11613else
@@ -11248,7 +11617,7 @@ ac_cv_func_socket=no
11248fi 11617fi
11249rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 11618rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
11250fi 11619fi
11251echo "$as_me:11251: result: $ac_cv_func_socket" >&5 11620echo "$as_me:11620: result: $ac_cv_func_socket" >&5
11252echo "${ECHO_T}$ac_cv_func_socket" >&6 11621echo "${ECHO_T}$ac_cv_func_socket" >&6
11253if test $ac_cv_func_socket = yes; then 11622if test $ac_cv_func_socket = yes; then
11254 : 11623 :
@@ -11257,23 +11626,23 @@ else
11257fi 11626fi
11258 11627
11259if test $ok_so_far = yes; then 11628if test $ok_so_far = yes; then
11260 echo "$as_me:11260: checking for netinet/in.h" >&5 11629 echo "$as_me:11629: checking for netinet/in.h" >&5
11261echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6 11630echo $ECHO_N "checking for netinet/in.h... $ECHO_C" >&6
11262if test "${ac_cv_header_netinet_in_h+set}" = set; then 11631if test "${ac_cv_header_netinet_in_h+set}" = set; then
11263 echo $ECHO_N "(cached) $ECHO_C" >&6 11632 echo $ECHO_N "(cached) $ECHO_C" >&6
11264else 11633else
11265 cat >conftest.$ac_ext <<_ACEOF 11634 cat >conftest.$ac_ext <<_ACEOF
11266#line 11266 "configure" 11635#line 11635 "configure"
11267#include "confdefs.h" 11636#include "confdefs.h"
11268#include <netinet/in.h> 11637#include <netinet/in.h>
11269_ACEOF 11638_ACEOF
11270if { (eval echo "$as_me:11270: \"$ac_cpp conftest.$ac_ext\"") >&5 11639if { (eval echo "$as_me:11639: \"$ac_cpp conftest.$ac_ext\"") >&5
11271 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11640 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
11272 ac_status=$? 11641 ac_status=$?
11273 egrep -v '^ *\+' conftest.er1 >conftest.err 11642 egrep -v '^ *\+' conftest.er1 >conftest.err
11274 rm -f conftest.er1 11643 rm -f conftest.er1
11275 cat conftest.err >&5 11644 cat conftest.err >&5
11276 echo "$as_me:11276: \$? = $ac_status" >&5 11645 echo "$as_me:11645: \$? = $ac_status" >&5
11277 (exit $ac_status); } >/dev/null; then 11646 (exit $ac_status); } >/dev/null; then
11278 if test -s conftest.err; then 11647 if test -s conftest.err; then
11279 ac_cpp_err=$ac_c_preproc_warn_flag 11648 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -11292,7 +11661,7 @@ else
11292fi 11661fi
11293rm -f conftest.err conftest.$ac_ext 11662rm -f conftest.err conftest.$ac_ext
11294fi 11663fi
11295echo "$as_me:11295: result: $ac_cv_header_netinet_in_h" >&5 11664echo "$as_me:11664: result: $ac_cv_header_netinet_in_h" >&5
11296echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6 11665echo "${ECHO_T}$ac_cv_header_netinet_in_h" >&6
11297if test $ac_cv_header_netinet_in_h = yes; then 11666if test $ac_cv_header_netinet_in_h = yes; then
11298 : 11667 :
@@ -11302,23 +11671,23 @@ fi
11302 11671
11303fi 11672fi
11304if test $ok_so_far = yes; then 11673if test $ok_so_far = yes; then
11305 echo "$as_me:11305: checking for arpa/inet.h" >&5 11674 echo "$as_me:11674: checking for arpa/inet.h" >&5
11306echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6 11675echo $ECHO_N "checking for arpa/inet.h... $ECHO_C" >&6
11307if test "${ac_cv_header_arpa_inet_h+set}" = set; then 11676if test "${ac_cv_header_arpa_inet_h+set}" = set; then
11308 echo $ECHO_N "(cached) $ECHO_C" >&6 11677 echo $ECHO_N "(cached) $ECHO_C" >&6
11309else 11678else
11310 cat >conftest.$ac_ext <<_ACEOF 11679 cat >conftest.$ac_ext <<_ACEOF
11311#line 11311 "configure" 11680#line 11680 "configure"
11312#include "confdefs.h" 11681#include "confdefs.h"
11313#include <arpa/inet.h> 11682#include <arpa/inet.h>
11314_ACEOF 11683_ACEOF
11315if { (eval echo "$as_me:11315: \"$ac_cpp conftest.$ac_ext\"") >&5 11684if { (eval echo "$as_me:11684: \"$ac_cpp conftest.$ac_ext\"") >&5
11316 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11685 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
11317 ac_status=$? 11686 ac_status=$?
11318 egrep -v '^ *\+' conftest.er1 >conftest.err 11687 egrep -v '^ *\+' conftest.er1 >conftest.err
11319 rm -f conftest.er1 11688 rm -f conftest.er1
11320 cat conftest.err >&5 11689 cat conftest.err >&5
11321 echo "$as_me:11321: \$? = $ac_status" >&5 11690 echo "$as_me:11690: \$? = $ac_status" >&5
11322 (exit $ac_status); } >/dev/null; then 11691 (exit $ac_status); } >/dev/null; then
11323 if test -s conftest.err; then 11692 if test -s conftest.err; then
11324 ac_cpp_err=$ac_c_preproc_warn_flag 11693 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -11337,7 +11706,7 @@ else
11337fi 11706fi
11338rm -f conftest.err conftest.$ac_ext 11707rm -f conftest.err conftest.$ac_ext
11339fi 11708fi
11340echo "$as_me:11340: result: $ac_cv_header_arpa_inet_h" >&5 11709echo "$as_me:11709: result: $ac_cv_header_arpa_inet_h" >&5
11341echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6 11710echo "${ECHO_T}$ac_cv_header_arpa_inet_h" >&6
11342if test $ac_cv_header_arpa_inet_h = yes; then 11711if test $ac_cv_header_arpa_inet_h = yes; then
11343 : 11712 :
@@ -11360,27 +11729,27 @@ EOF
11360 11729
11361fi 11730fi
11362 11731
11363echo "$as_me:11363: checking whether system supports dynamic ptys" >&5 11732echo "$as_me:11732: checking whether system supports dynamic ptys" >&5
11364echo $ECHO_N "checking whether system supports dynamic ptys... $ECHO_C" >&6 11733echo $ECHO_N "checking whether system supports dynamic ptys... $ECHO_C" >&6
11365if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then 11734if test -d /dev/pts && ls -d /dev/ptmx > /dev/null 2>&1 ; then
11366 echo "$as_me:11366: result: yes" >&5 11735 echo "$as_me:11735: result: yes" >&5
11367echo "${ECHO_T}yes" >&6 11736echo "${ECHO_T}yes" >&6
11368 cat >>confdefs.h <<\EOF 11737 cat >>confdefs.h <<\EOF
11369#define HAVE_DEV_PTMX 1 11738#define HAVE_DEV_PTMX 1
11370EOF 11739EOF
11371 11740
11372else 11741else
11373 echo "$as_me:11373: result: no" >&5 11742 echo "$as_me:11742: result: no" >&5
11374echo "${ECHO_T}no" >&6 11743echo "${ECHO_T}no" >&6
11375fi 11744fi
11376 11745
11377echo "$as_me:11377: checking for pid_t" >&5 11746echo "$as_me:11746: checking for pid_t" >&5
11378echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 11747echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
11379if test "${ac_cv_type_pid_t+set}" = set; then 11748if test "${ac_cv_type_pid_t+set}" = set; then
11380 echo $ECHO_N "(cached) $ECHO_C" >&6 11749 echo $ECHO_N "(cached) $ECHO_C" >&6
11381else 11750else
11382 cat >conftest.$ac_ext <<_ACEOF 11751 cat >conftest.$ac_ext <<_ACEOF
11383#line 11383 "configure" 11752#line 11752 "configure"
11384#include "confdefs.h" 11753#include "confdefs.h"
11385$ac_includes_default 11754$ac_includes_default
11386int 11755int
@@ -11395,16 +11764,16 @@ if (sizeof (pid_t))
11395} 11764}
11396_ACEOF 11765_ACEOF
11397rm -f conftest.$ac_objext 11766rm -f conftest.$ac_objext
11398if { (eval echo "$as_me:11398: \"$ac_compile\"") >&5 11767if { (eval echo "$as_me:11767: \"$ac_compile\"") >&5
11399 (eval $ac_compile) 2>&5 11768 (eval $ac_compile) 2>&5
11400 ac_status=$? 11769 ac_status=$?
11401 echo "$as_me:11401: \$? = $ac_status" >&5 11770 echo "$as_me:11770: \$? = $ac_status" >&5
11402 (exit $ac_status); } && 11771 (exit $ac_status); } &&
11403 { ac_try='test -s conftest.$ac_objext' 11772 { ac_try='test -s conftest.$ac_objext'
11404 { (eval echo "$as_me:11404: \"$ac_try\"") >&5 11773 { (eval echo "$as_me:11773: \"$ac_try\"") >&5
11405 (eval $ac_try) 2>&5 11774 (eval $ac_try) 2>&5
11406 ac_status=$? 11775 ac_status=$?
11407 echo "$as_me:11407: \$? = $ac_status" >&5 11776 echo "$as_me:11776: \$? = $ac_status" >&5
11408 (exit $ac_status); }; }; then 11777 (exit $ac_status); }; }; then
11409 ac_cv_type_pid_t=yes 11778 ac_cv_type_pid_t=yes
11410else 11779else
@@ -11414,7 +11783,7 @@ ac_cv_type_pid_t=no
11414fi 11783fi
11415rm -f conftest.$ac_objext conftest.$ac_ext 11784rm -f conftest.$ac_objext conftest.$ac_ext
11416fi 11785fi
11417echo "$as_me:11417: result: $ac_cv_type_pid_t" >&5 11786echo "$as_me:11786: result: $ac_cv_type_pid_t" >&5
11418echo "${ECHO_T}$ac_cv_type_pid_t" >&6 11787echo "${ECHO_T}$ac_cv_type_pid_t" >&6
11419if test $ac_cv_type_pid_t = yes; then 11788if test $ac_cv_type_pid_t = yes; then
11420 : 11789 :
@@ -11429,23 +11798,23 @@ fi
11429for ac_header in unistd.h vfork.h 11798for ac_header in unistd.h vfork.h
11430do 11799do
11431as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 11800as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
11432echo "$as_me:11432: checking for $ac_header" >&5 11801echo "$as_me:11801: checking for $ac_header" >&5
11433echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 11802echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
11434if eval "test \"\${$as_ac_Header+set}\" = set"; then 11803if eval "test \"\${$as_ac_Header+set}\" = set"; then
11435 echo $ECHO_N "(cached) $ECHO_C" >&6 11804 echo $ECHO_N "(cached) $ECHO_C" >&6
11436else 11805else
11437 cat >conftest.$ac_ext <<_ACEOF 11806 cat >conftest.$ac_ext <<_ACEOF
11438#line 11438 "configure" 11807#line 11807 "configure"
11439#include "confdefs.h" 11808#include "confdefs.h"
11440#include <$ac_header> 11809#include <$ac_header>
11441_ACEOF 11810_ACEOF
11442if { (eval echo "$as_me:11442: \"$ac_cpp conftest.$ac_ext\"") >&5 11811if { (eval echo "$as_me:11811: \"$ac_cpp conftest.$ac_ext\"") >&5
11443 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 11812 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
11444 ac_status=$? 11813 ac_status=$?
11445 egrep -v '^ *\+' conftest.er1 >conftest.err 11814 egrep -v '^ *\+' conftest.er1 >conftest.err
11446 rm -f conftest.er1 11815 rm -f conftest.er1
11447 cat conftest.err >&5 11816 cat conftest.err >&5
11448 echo "$as_me:11448: \$? = $ac_status" >&5 11817 echo "$as_me:11817: \$? = $ac_status" >&5
11449 (exit $ac_status); } >/dev/null; then 11818 (exit $ac_status); } >/dev/null; then
11450 if test -s conftest.err; then 11819 if test -s conftest.err; then
11451 ac_cpp_err=$ac_c_preproc_warn_flag 11820 ac_cpp_err=$ac_c_preproc_warn_flag
@@ -11464,7 +11833,7 @@ else
11464fi 11833fi
11465rm -f conftest.err conftest.$ac_ext 11834rm -f conftest.err conftest.$ac_ext
11466fi 11835fi
11467echo "$as_me:11467: result: `eval echo '${'$as_ac_Header'}'`" >&5 11836echo "$as_me:11836: result: `eval echo '${'$as_ac_Header'}'`" >&5
11468echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 11837echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
11469if test `eval echo '${'$as_ac_Header'}'` = yes; then 11838if test `eval echo '${'$as_ac_Header'}'` = yes; then
11470 cat >>confdefs.h <<EOF 11839 cat >>confdefs.h <<EOF
@@ -11477,13 +11846,13 @@ done
11477for ac_func in fork vfork 11846for ac_func in fork vfork
11478do 11847do
11479as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 11848as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
11480echo "$as_me:11480: checking for $ac_func" >&5 11849echo "$as_me:11849: checking for $ac_func" >&5
11481echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 11850echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
11482if eval "test \"\${$as_ac_var+set}\" = set"; then 11851if eval "test \"\${$as_ac_var+set}\" = set"; then
11483 echo $ECHO_N "(cached) $ECHO_C" >&6 11852 echo $ECHO_N "(cached) $ECHO_C" >&6
11484else 11853else
11485 cat >conftest.$ac_ext <<_ACEOF 11854 cat >conftest.$ac_ext <<_ACEOF
11486#line 11486 "configure" 11855#line 11855 "configure"
11487#include "confdefs.h" 11856#include "confdefs.h"
11488/* System header to define __stub macros and hopefully few prototypes, 11857/* System header to define __stub macros and hopefully few prototypes,
11489 which can conflict with char $ac_func (); below. */ 11858 which can conflict with char $ac_func (); below. */
@@ -11514,16 +11883,16 @@ f = $ac_func;
11514} 11883}
11515_ACEOF 11884_ACEOF
11516rm -f conftest.$ac_objext conftest$ac_exeext 11885rm -f conftest.$ac_objext conftest$ac_exeext
11517if { (eval echo "$as_me:11517: \"$ac_link\"") >&5 11886if { (eval echo "$as_me:11886: \"$ac_link\"") >&5
11518 (eval $ac_link) 2>&5 11887 (eval $ac_link) 2>&5
11519 ac_status=$? 11888 ac_status=$?
11520 echo "$as_me:11520: \$? = $ac_status" >&5 11889 echo "$as_me:11889: \$? = $ac_status" >&5
11521 (exit $ac_status); } && 11890 (exit $ac_status); } &&
11522 { ac_try='test -s conftest$ac_exeext' 11891 { ac_try='test -s conftest$ac_exeext'
11523 { (eval echo "$as_me:11523: \"$ac_try\"") >&5 11892 { (eval echo "$as_me:11892: \"$ac_try\"") >&5
11524 (eval $ac_try) 2>&5 11893 (eval $ac_try) 2>&5
11525 ac_status=$? 11894 ac_status=$?
11526 echo "$as_me:11526: \$? = $ac_status" >&5 11895 echo "$as_me:11895: \$? = $ac_status" >&5
11527 (exit $ac_status); }; }; then 11896 (exit $ac_status); }; }; then
11528 eval "$as_ac_var=yes" 11897 eval "$as_ac_var=yes"
11529else 11898else
@@ -11533,7 +11902,7 @@ eval "$as_ac_var=no"
11533fi 11902fi
11534rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 11903rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
11535fi 11904fi
11536echo "$as_me:11536: result: `eval echo '${'$as_ac_var'}'`" >&5 11905echo "$as_me:11905: result: `eval echo '${'$as_ac_var'}'`" >&5
11537echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 11906echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
11538if test `eval echo '${'$as_ac_var'}'` = yes; then 11907if test `eval echo '${'$as_ac_var'}'` = yes; then
11539 cat >>confdefs.h <<EOF 11908 cat >>confdefs.h <<EOF
@@ -11545,7 +11914,7 @@ done
11545 11914
11546ac_cv_func_fork_works=$ac_cv_func_fork 11915ac_cv_func_fork_works=$ac_cv_func_fork
11547if test "x$ac_cv_func_fork" = xyes; then 11916if test "x$ac_cv_func_fork" = xyes; then
11548 echo "$as_me:11548: checking for working fork" >&5 11917 echo "$as_me:11917: checking for working fork" >&5
11549echo $ECHO_N "checking for working fork... $ECHO_C" >&6 11918echo $ECHO_N "checking for working fork... $ECHO_C" >&6
11550if test "${ac_cv_func_fork_works+set}" = set; then 11919if test "${ac_cv_func_fork_works+set}" = set; then
11551 echo $ECHO_N "(cached) $ECHO_C" >&6 11920 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11568,15 +11937,15 @@ else
11568 } 11937 }
11569_ACEOF 11938_ACEOF
11570rm -f conftest$ac_exeext 11939rm -f conftest$ac_exeext
11571if { (eval echo "$as_me:11571: \"$ac_link\"") >&5 11940if { (eval echo "$as_me:11940: \"$ac_link\"") >&5
11572 (eval $ac_link) 2>&5 11941 (eval $ac_link) 2>&5
11573 ac_status=$? 11942 ac_status=$?
11574 echo "$as_me:11574: \$? = $ac_status" >&5 11943 echo "$as_me:11943: \$? = $ac_status" >&5
11575 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 11944 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
11576 { (eval echo "$as_me:11576: \"$ac_try\"") >&5 11945 { (eval echo "$as_me:11945: \"$ac_try\"") >&5
11577 (eval $ac_try) 2>&5 11946 (eval $ac_try) 2>&5
11578 ac_status=$? 11947 ac_status=$?
11579 echo "$as_me:11579: \$? = $ac_status" >&5 11948 echo "$as_me:11948: \$? = $ac_status" >&5
11580 (exit $ac_status); }; }; then 11949 (exit $ac_status); }; }; then
11581 ac_cv_func_fork_works=yes 11950 ac_cv_func_fork_works=yes
11582else 11951else
@@ -11588,7 +11957,7 @@ fi
11588rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 11957rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
11589fi 11958fi
11590fi 11959fi
11591echo "$as_me:11591: result: $ac_cv_func_fork_works" >&5 11960echo "$as_me:11960: result: $ac_cv_func_fork_works" >&5
11592echo "${ECHO_T}$ac_cv_func_fork_works" >&6 11961echo "${ECHO_T}$ac_cv_func_fork_works" >&6
11593 11962
11594fi 11963fi
@@ -11602,12 +11971,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then
11602 ac_cv_func_fork_works=yes 11971 ac_cv_func_fork_works=yes
11603 ;; 11972 ;;
11604 esac 11973 esac
11605 { echo "$as_me:11605: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 11974 { echo "$as_me:11974: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
11606echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;} 11975echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;}
11607fi 11976fi
11608ac_cv_func_vfork_works=$ac_cv_func_vfork 11977ac_cv_func_vfork_works=$ac_cv_func_vfork
11609if test "x$ac_cv_func_vfork" = xyes; then 11978if test "x$ac_cv_func_vfork" = xyes; then
11610 echo "$as_me:11610: checking for working vfork" >&5 11979 echo "$as_me:11979: checking for working vfork" >&5
11611echo $ECHO_N "checking for working vfork... $ECHO_C" >&6 11980echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
11612if test "${ac_cv_func_vfork_works+set}" = set; then 11981if test "${ac_cv_func_vfork_works+set}" = set; then
11613 echo $ECHO_N "(cached) $ECHO_C" >&6 11982 echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11616,7 +11985,7 @@ else
11616 ac_cv_func_vfork_works=cross 11985 ac_cv_func_vfork_works=cross
11617else 11986else
11618 cat >conftest.$ac_ext <<_ACEOF 11987 cat >conftest.$ac_ext <<_ACEOF
11619#line 11619 "configure" 11988#line 11988 "configure"
11620#include "confdefs.h" 11989#include "confdefs.h"
11621/* Thanks to Paul Eggert for this test. */ 11990/* Thanks to Paul Eggert for this test. */
11622#include <stdio.h> 11991#include <stdio.h>
@@ -11713,15 +12082,15 @@ main ()
11713} 12082}
11714_ACEOF 12083_ACEOF
11715rm -f conftest$ac_exeext 12084rm -f conftest$ac_exeext
11716if { (eval echo "$as_me:11716: \"$ac_link\"") >&5 12085if { (eval echo "$as_me:12085: \"$ac_link\"") >&5
11717 (eval $ac_link) 2>&5 12086 (eval $ac_link) 2>&5
11718 ac_status=$? 12087 ac_status=$?
11719 echo "$as_me:11719: \$? = $ac_status" >&5 12088 echo "$as_me:12088: \$? = $ac_status" >&5
11720 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 12089 (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
11721 { (eval echo "$as_me:11721: \"$ac_try\"") >&5 12090 { (eval echo "$as_me:12090: \"$ac_try\"") >&5
11722 (eval $ac_try) 2>&5 12091 (eval $ac_try) 2>&5
11723 ac_status=$? 12092 ac_status=$?
11724 echo "$as_me:11724: \$? = $ac_status" >&5 12093 echo "$as_me:12093: \$? = $ac_status" >&5
11725 (exit $ac_status); }; }; then 12094 (exit $ac_status); }; }; then
11726 ac_cv_func_vfork_works=yes 12095 ac_cv_func_vfork_works=yes
11727else 12096else
@@ -11733,13 +12102,13 @@ fi
11733rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 12102rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
11734fi 12103fi
11735fi 12104fi
11736echo "$as_me:11736: result: $ac_cv_func_vfork_works" >&5 12105echo "$as_me:12105: result: $ac_cv_func_vfork_works" >&5
11737echo "${ECHO_T}$ac_cv_func_vfork_works" >&6 12106echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
11738 12107
11739fi; 12108fi;
11740if test "x$ac_cv_func_fork_works" = xcross; then 12109if test "x$ac_cv_func_fork_works" = xcross; then
11741 ac_cv_func_vfork_works=ac_cv_func_vfork 12110 ac_cv_func_vfork_works=ac_cv_func_vfork
11742 { echo "$as_me:11742: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 12111 { echo "$as_me:12111: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
11743echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;} 12112echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;}
11744fi 12113fi
11745 12114
@@ -11765,13 +12134,13 @@ EOF
11765fi 12134fi
11766 12135
11767# Fixme: This should be replaced when we have autoconf 2.14. 12136# Fixme: This should be replaced when we have autoconf 2.14.
11768echo "$as_me:11768: checking for size_t" >&5 12137echo "$as_me:12137: checking for size_t" >&5
11769echo $ECHO_N "checking for size_t... $ECHO_C" >&6 12138echo $ECHO_N "checking for size_t... $ECHO_C" >&6
11770if test "${ac_cv_type_size_t+set}" = set; then 12139if test "${ac_cv_type_size_t+set}" = set; then
11771 echo $ECHO_N "(cached) $ECHO_C" >&6 12140 echo $ECHO_N "(cached) $ECHO_C" >&6
11772else 12141else
11773 cat >conftest.$ac_ext <<_ACEOF 12142 cat >conftest.$ac_ext <<_ACEOF
11774#line 11774 "configure" 12143#line 12143 "configure"
11775#include "confdefs.h" 12144#include "confdefs.h"
11776$ac_includes_default 12145$ac_includes_default
11777int 12146int
@@ -11786,16 +12155,16 @@ if (sizeof (size_t))
11786} 12155}
11787_ACEOF 12156_ACEOF
11788rm -f conftest.$ac_objext 12157rm -f conftest.$ac_objext
11789if { (eval echo "$as_me:11789: \"$ac_compile\"") >&5 12158if { (eval echo "$as_me:12158: \"$ac_compile\"") >&5
11790 (eval $ac_compile) 2>&5 12159 (eval $ac_compile) 2>&5
11791 ac_status=$? 12160 ac_status=$?
11792 echo "$as_me:11792: \$? = $ac_status" >&5 12161 echo "$as_me:12161: \$? = $ac_status" >&5
11793 (exit $ac_status); } && 12162 (exit $ac_status); } &&
11794 { ac_try='test -s conftest.$ac_objext' 12163 { ac_try='test -s conftest.$ac_objext'
11795 { (eval echo "$as_me:11795: \"$ac_try\"") >&5 12164 { (eval echo "$as_me:12164: \"$ac_try\"") >&5
11796 (eval $ac_try) 2>&5 12165 (eval $ac_try) 2>&5
11797 ac_status=$? 12166 ac_status=$?
11798 echo "$as_me:11798: \$? = $ac_status" >&5 12167 echo "$as_me:12167: \$? = $ac_status" >&5
11799 (exit $ac_status); }; }; then 12168 (exit $ac_status); }; }; then
11800 ac_cv_type_size_t=yes 12169 ac_cv_type_size_t=yes
11801else 12170else
@@ -11805,7 +12174,7 @@ ac_cv_type_size_t=no
11805fi 12174fi
11806rm -f conftest.$ac_objext conftest.$ac_ext 12175rm -f conftest.$ac_objext conftest.$ac_ext
11807fi 12176fi
11808echo "$as_me:11808: result: $ac_cv_type_size_t" >&5 12177echo "$as_me:12177: result: $ac_cv_type_size_t" >&5
11809echo "${ECHO_T}$ac_cv_type_size_t" >&6 12178echo "${ECHO_T}$ac_cv_type_size_t" >&6
11810if test $ac_cv_type_size_t = yes; then 12179if test $ac_cv_type_size_t = yes; then
11811 : 12180 :
@@ -11825,7 +12194,7 @@ CPPFLAGS="$REAL_CPPFLAGS"
11825version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \ 12194version=`grep 'defconst[ ]*emacs-version' ${srcdir}/lisp/version.el \
11826 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'` 12195 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
11827if test x"${version}" = x; then 12196if test x"${version}" = x; then
11828 { { echo "$as_me:11828: error: can't find current emacs version in \`${srcdir}/lisp/version.el'." >&5 12197 { { echo "$as_me:12197: error: can't find current emacs version in \`${srcdir}/lisp/version.el'." >&5
11829echo "$as_me: error: can't find current emacs version in \`${srcdir}/lisp/version.el'." >&2;} 12198echo "$as_me: error: can't find current emacs version in \`${srcdir}/lisp/version.el'." >&2;}
11830 { (exit 1); exit 1; }; } 12199 { (exit 1); exit 1; }; }
11831fi 12200fi
@@ -11954,7 +12323,7 @@ test "${exec_prefix}" != NONE &&
11954## C preprocessor. 12323## C preprocessor.
11955 12324
11956cat >conftest.$ac_ext <<_ACEOF 12325cat >conftest.$ac_ext <<_ACEOF
11957#line 11957 "configure" 12326#line 12326 "configure"
11958#include "confdefs.h" 12327#include "confdefs.h"
11959yes..yes 12328yes..yes
11960_ACEOF 12329_ACEOF
@@ -12047,7 +12416,7 @@ DEFS=-DHAVE_CONFIG_H
12047: ${CONFIG_STATUS=./config.status} 12416: ${CONFIG_STATUS=./config.status}
12048ac_clean_files_save=$ac_clean_files 12417ac_clean_files_save=$ac_clean_files
12049ac_clean_files="$ac_clean_files $CONFIG_STATUS" 12418ac_clean_files="$ac_clean_files $CONFIG_STATUS"
12050{ echo "$as_me:12050: creating $CONFIG_STATUS" >&5 12419{ echo "$as_me:12419: creating $CONFIG_STATUS" >&5
12051echo "$as_me: creating $CONFIG_STATUS" >&6;} 12420echo "$as_me: creating $CONFIG_STATUS" >&6;}
12052cat >$CONFIG_STATUS <<_ACEOF 12421cat >$CONFIG_STATUS <<_ACEOF
12053#! $SHELL 12422#! $SHELL
@@ -12223,7 +12592,7 @@ cat >>$CONFIG_STATUS <<\EOF
12223 echo "$ac_cs_version"; exit 0 ;; 12592 echo "$ac_cs_version"; exit 0 ;;
12224 --he | --h) 12593 --he | --h)
12225 # Conflict between --help and --header 12594 # Conflict between --help and --header
12226 { { echo "$as_me:12226: error: ambiguous option: $1 12595 { { echo "$as_me:12595: error: ambiguous option: $1
12227Try \`$0 --help' for more information." >&5 12596Try \`$0 --help' for more information." >&5
12228echo "$as_me: error: ambiguous option: $1 12597echo "$as_me: error: ambiguous option: $1
12229Try \`$0 --help' for more information." >&2;} 12598Try \`$0 --help' for more information." >&2;}
@@ -12242,7 +12611,7 @@ Try \`$0 --help' for more information." >&2;}
12242 ac_need_defaults=false;; 12611 ac_need_defaults=false;;
12243 12612
12244 # This is an error. 12613 # This is an error.
12245 -*) { { echo "$as_me:12245: error: unrecognized option: $1 12614 -*) { { echo "$as_me:12614: error: unrecognized option: $1
12246Try \`$0 --help' for more information." >&5 12615Try \`$0 --help' for more information." >&5
12247echo "$as_me: error: unrecognized option: $1 12616echo "$as_me: error: unrecognized option: $1
12248Try \`$0 --help' for more information." >&2;} 12617Try \`$0 --help' for more information." >&2;}
@@ -12296,7 +12665,7 @@ do
12296 "leim/Makefile" ) CONFIG_FILES="$CONFIG_FILES leim/Makefile" ;; 12665 "leim/Makefile" ) CONFIG_FILES="$CONFIG_FILES leim/Makefile" ;;
12297 "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; 12666 "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
12298 "src/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS src/config.h:src/config.in" ;; 12667 "src/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS src/config.h:src/config.in" ;;
12299 *) { { echo "$as_me:12299: error: invalid argument: $ac_config_target" >&5 12668 *) { { echo "$as_me:12668: error: invalid argument: $ac_config_target" >&5
12300echo "$as_me: error: invalid argument: $ac_config_target" >&2;} 12669echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
12301 { (exit 1); exit 1; }; };; 12670 { (exit 1); exit 1; }; };;
12302 esac 12671 esac
@@ -12543,7 +12912,7 @@ done; }
12543 esac 12912 esac
12544 12913
12545 if test x"$ac_file" != x-; then 12914 if test x"$ac_file" != x-; then
12546 { echo "$as_me:12546: creating $ac_file" >&5 12915 { echo "$as_me:12915: creating $ac_file" >&5
12547echo "$as_me: creating $ac_file" >&6;} 12916echo "$as_me: creating $ac_file" >&6;}
12548 rm -f "$ac_file" 12917 rm -f "$ac_file"
12549 fi 12918 fi
@@ -12561,7 +12930,7 @@ echo "$as_me: creating $ac_file" >&6;}
12561 -) echo $tmp/stdin ;; 12930 -) echo $tmp/stdin ;;
12562 [\\/$]*) 12931 [\\/$]*)
12563 # Absolute (can't be DOS-style, as IFS=:) 12932 # Absolute (can't be DOS-style, as IFS=:)
12564 test -f "$f" || { { echo "$as_me:12564: error: cannot find input file: $f" >&5 12933 test -f "$f" || { { echo "$as_me:12933: error: cannot find input file: $f" >&5
12565echo "$as_me: error: cannot find input file: $f" >&2;} 12934echo "$as_me: error: cannot find input file: $f" >&2;}
12566 { (exit 1); exit 1; }; } 12935 { (exit 1); exit 1; }; }
12567 echo $f;; 12936 echo $f;;
@@ -12574,7 +12943,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
12574 echo $srcdir/$f 12943 echo $srcdir/$f
12575 else 12944 else
12576 # /dev/null tree 12945 # /dev/null tree
12577 { { echo "$as_me:12577: error: cannot find input file: $f" >&5 12946 { { echo "$as_me:12946: error: cannot find input file: $f" >&5
12578echo "$as_me: error: cannot find input file: $f" >&2;} 12947echo "$as_me: error: cannot find input file: $f" >&2;}
12579 { (exit 1); exit 1; }; } 12948 { (exit 1); exit 1; }; }
12580 fi;; 12949 fi;;
@@ -12635,7 +13004,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
12635 * ) ac_file_in=$ac_file.in ;; 13004 * ) ac_file_in=$ac_file.in ;;
12636 esac 13005 esac
12637 13006
12638 test x"$ac_file" != x- && { echo "$as_me:12638: creating $ac_file" >&5 13007 test x"$ac_file" != x- && { echo "$as_me:13007: creating $ac_file" >&5
12639echo "$as_me: creating $ac_file" >&6;} 13008echo "$as_me: creating $ac_file" >&6;}
12640 13009
12641 # First look for the input files in the build tree, otherwise in the 13010 # First look for the input files in the build tree, otherwise in the
@@ -12646,7 +13015,7 @@ echo "$as_me: creating $ac_file" >&6;}
12646 -) echo $tmp/stdin ;; 13015 -) echo $tmp/stdin ;;
12647 [\\/$]*) 13016 [\\/$]*)
12648 # Absolute (can't be DOS-style, as IFS=:) 13017 # Absolute (can't be DOS-style, as IFS=:)
12649 test -f "$f" || { { echo "$as_me:12649: error: cannot find input file: $f" >&5 13018 test -f "$f" || { { echo "$as_me:13018: error: cannot find input file: $f" >&5
12650echo "$as_me: error: cannot find input file: $f" >&2;} 13019echo "$as_me: error: cannot find input file: $f" >&2;}
12651 { (exit 1); exit 1; }; } 13020 { (exit 1); exit 1; }; }
12652 echo $f;; 13021 echo $f;;
@@ -12659,7 +13028,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
12659 echo $srcdir/$f 13028 echo $srcdir/$f
12660 else 13029 else
12661 # /dev/null tree 13030 # /dev/null tree
12662 { { echo "$as_me:12662: error: cannot find input file: $f" >&5 13031 { { echo "$as_me:13031: error: cannot find input file: $f" >&5
12663echo "$as_me: error: cannot find input file: $f" >&2;} 13032echo "$as_me: error: cannot find input file: $f" >&2;}
12664 { (exit 1); exit 1; }; } 13033 { (exit 1); exit 1; }; }
12665 fi;; 13034 fi;;
@@ -12776,7 +13145,7 @@ cat >>$CONFIG_STATUS <<\EOF
12776 rm -f $tmp/in 13145 rm -f $tmp/in
12777 if test x"$ac_file" != x-; then 13146 if test x"$ac_file" != x-; then
12778 if cmp -s $ac_file $tmp/config.h 2>/dev/null; then 13147 if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
12779 { echo "$as_me:12779: $ac_file is unchanged" >&5 13148 { echo "$as_me:13148: $ac_file is unchanged" >&5
12780echo "$as_me: $ac_file is unchanged" >&6;} 13149echo "$as_me: $ac_file is unchanged" >&6;}
12781 else 13150 else
12782 ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 13151 ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
diff --git a/configure.in b/configure.in
index fcfd53e18c8..ac88c87478f 100644
--- a/configure.in
+++ b/configure.in
@@ -1962,6 +1962,23 @@ AC_CHECK_FUNCS(getpt)
1962# than to expect to find it in ncurses. 1962# than to expect to find it in ncurses.
1963AC_CHECK_LIB(ncurses, tparm) 1963AC_CHECK_LIB(ncurses, tparm)
1964 1964
1965# Do we need the Hesiod library to provide the support routines?
1966if test "$with_hesiod" = yes ; then
1967 # Don't set $LIBS here -- see comments above.
1968 resolv=no
1969 AC_CHECK_FUNC(res_send, , [AC_CHECK_FUNC(__res_send, ,
1970 [AC_CHECK_LIB(resolv, res_send, resolv=yes,
1971 [AC_CHECK_LIB(resolv, __res_send, resolv=yes)])])])
1972 if test "$resolv" = yes ; then
1973 RESOLVLIB=-lresolv
1974 AC_DEFINE(HAVE_LIBRESOLV)
1975 else
1976 RESOLVLIB=
1977 fi
1978 AC_CHECK_FUNC(hes_getmailhost, , [AC_CHECK_LIB(hesiod, hes_getmailhost,
1979 AC_DEFINE(HAVE_LIBHESIOD), :, $RESOLVLIB)])
1980fi
1981
1965# These tell us which Kerberos-related libraries to use. 1982# These tell us which Kerberos-related libraries to use.
1966if test "${with_kerberos+set}" = set; then 1983if test "${with_kerberos+set}" = set; then
1967 AC_CHECK_LIB(com_err, com_err) 1984 AC_CHECK_LIB(com_err, com_err)
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 1b710896ca2..f74b23ac14e 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,10 @@
12001-10-24 Ken Raeburn <raeburn@gnu.org>
2
3 * Makefile.in (HESIODLIB) [HAVE_LIBHESIOD]: Set to include
4 -lhesiod and maybe -lresolv.
5 (CRYPTOLIB) [HAVE_LIBK5CRYPTO]: Use -lk5crypto for Kerberos
6 support if it's available.
7
12001-10-21 Miles Bader <miles@gnu.org> 82001-10-21 Miles Bader <miles@gnu.org>
2 9
3 * make-docfile.c (struct rcsoc_state): New type. 10 * make-docfile.c (struct rcsoc_state): New type.
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 44e8089c4f7..a4b6b07fc41 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -201,8 +201,12 @@ MOVE_FLAGS=
201# ifdef HAVE_LIBKRB5 201# ifdef HAVE_LIBKRB5
202 KRB5LIB = -lkrb5 202 KRB5LIB = -lkrb5
203# endif 203# endif
204# ifdef HAVE_LIBCRYPTO 204# ifdef HAVE_LIBK5CRYPTO
205 CRYPTOLIB = -lk5crypto
206# else
207# ifdef HAVE_LIBCRYPTO
205 CRYPTOLIB = -lcrypto 208 CRYPTOLIB = -lcrypto
209# endif
206# endif 210# endif
207# ifdef HAVE_LIBCOM_ERR 211# ifdef HAVE_LIBCOM_ERR
208 COM_ERRLIB = -lcom_err 212 COM_ERRLIB = -lcom_err
@@ -210,7 +214,13 @@ MOVE_FLAGS=
210#endif /* KERBEROS */ 214#endif /* KERBEROS */
211 215
212/* If HESIOD is defined, set this to "-lhesiod". */ 216/* If HESIOD is defined, set this to "-lhesiod". */
213HESIODLIB= 217#ifdef HAVE_LIBHESIOD
218# ifdef HAVE_LIBRESOLV
219 HESIODLIB= -lhesiod -lresolv
220# else
221 HESIODLIB= -lhesiod
222# endif
223#endif
214 224
215MOVE_LIBS=$(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB) 225MOVE_LIBS=$(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB)
216 226
diff --git a/src/config.in b/src/config.in
index d462b75425b..a0edd520a9f 100644
--- a/src/config.in
+++ b/src/config.in
@@ -132,6 +132,7 @@ Boston, MA 02111-1307, USA. */
132 132
133/* Define to support using a Hesiod database to find the POP server. */ 133/* Define to support using a Hesiod database to find the POP server. */
134#undef HESIOD 134#undef HESIOD
135#undef HAVE_LIBHESIOD
135 136
136/* Header for Voxware or PCM sound card driver. */ 137/* Header for Voxware or PCM sound card driver. */
137#undef HAVE_MACHINE_SOUNDCARD_H 138#undef HAVE_MACHINE_SOUNDCARD_H
@@ -199,6 +200,7 @@ Boston, MA 02111-1307, USA. */
199#undef HAVE_LIBDES425 200#undef HAVE_LIBDES425
200#undef HAVE_LIBKRB5 201#undef HAVE_LIBKRB5
201#undef HAVE_LIBCRYPTO 202#undef HAVE_LIBCRYPTO
203#undef HAVE_LIBK5CRYPTO
202#undef HAVE_LIBCOM_ERR 204#undef HAVE_LIBCOM_ERR
203/* header files */ 205/* header files */
204#undef HAVE_KRB5_H 206#undef HAVE_KRB5_H