diff -ruN openssh-3.7.1p2+x509g4/auth2-pubkey.c openssh-3.7.1p2+x509h/auth2-pubkey.c --- openssh-3.7.1p2+x509g4/auth2-pubkey.c 2003-09-25 09:06:01.000000000 +0300 +++ openssh-3.7.1p2+x509h/auth2-pubkey.c 2004-04-05 09:06:01.000000000 +0300 @@ -244,7 +244,12 @@ found_key = 1; debug("matching key found: file %s, line %lu", file, linenum); - fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX); + /* Variable key always contain public key or + * certificate. In case of X.509 certificate + * x509 attribute of Key structure "found" + * can contain only "Distinguished Name" ! + */ + fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX); verbose("Found matching %s key: %s", key_type(found), fp); if ((key->type == KEY_X509_RSA) || diff -ruN openssh-3.7.1p2+x509g4/config.h.in openssh-3.7.1p2+x509h/config.h.in --- openssh-3.7.1p2+x509g4/config.h.in 2003-09-25 09:06:01.000000000 +0300 +++ openssh-3.7.1p2+x509h/config.h.in 2004-04-05 09:06:01.000000000 +0300 @@ -660,6 +660,9 @@ /* Define if you have the `nsleep' function. */ #undef HAVE_NSLEEP +/* Define if you have the `OCSP_sendreq_bio' function. */ +#undef HAVE_OCSP_SENDREQ_BIO + /* Define if you have the `ogetaddrinfo' function. */ #undef HAVE_OGETADDRINFO @@ -978,6 +981,9 @@ /* Specify location of ssh CA root */ #undef SSHCADIR +/* Define if you don't want to validate X.509 certificates with OCSP */ +#undef SSH_OCSP_ENABLED + /* Define if your openssl library don't support Email in X.509 'Distinguished Name' */ #undef SSH_OPENSSL_DN_WITHOUT_EMAIL diff -ruN openssh-3.7.1p2+x509g4/configure openssh-3.7.1p2+x509h/configure --- openssh-3.7.1p2+x509g4/configure 2004-03-09 09:06:02.000000000 +0200 +++ openssh-3.7.1p2+x509h/configure 2004-04-05 09:06:02.000000000 +0300 @@ -671,6 +671,7 @@ --disable-strip Disable calling strip(1) on install --disable-etc-default-login Disable using PATH from /etc/default/login no --disable-x509store Disable X.509 store + --enable-ocsp Enable OCSP validation --disable-lastlog disable use of lastlog even if detected no --disable-utmp disable use of utmp even if detected no --disable-utmpx disable use of utmpx even if detected no @@ -911,7 +912,7 @@ fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then - { echo "$as_me:914: loading site script $ac_site_file" >&5 + { echo "$as_me:915: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} cat "$ac_site_file" >&5 . "$ac_site_file" @@ -922,7 +923,7 @@ # Some versions of bash will fail to source /dev/null (special # files actually), so we avoid doing that. if test -f "$cache_file"; then - { echo "$as_me:925: loading cache $cache_file" >&5 + { echo "$as_me:926: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; @@ -930,7 +931,7 @@ esac fi else - { echo "$as_me:933: creating cache $cache_file" >&5 + { echo "$as_me:934: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -946,21 +947,21 @@ eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) - { echo "$as_me:949: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + { echo "$as_me:950: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) - { echo "$as_me:953: error: \`$ac_var' was not set in the previous run" >&5 + { echo "$as_me:954: error: \`$ac_var' was not set in the previous run" >&5 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:959: error: \`$ac_var' has changed since the previous run:" >&5 + { echo "$as_me:960: error: \`$ac_var' has changed since the previous run:" >&5 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:961: former value: $ac_old_val" >&5 + { echo "$as_me:962: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:963: current value: $ac_new_val" >&5 + { echo "$as_me:964: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; @@ -979,9 +980,9 @@ fi done if $ac_cache_corrupted; then - { echo "$as_me:982: error: changes in the environment can compromise the build" >&5 + { echo "$as_me:983: error: changes in the environment can compromise the build" >&5 echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:984: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 + { { echo "$as_me:985: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} { (exit 1); exit 1; }; } fi @@ -1001,10 +1002,10 @@ echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh -if { (echo "$as_me:1004: PATH=\".;.\"; conftest.sh") >&5 +if { (echo "$as_me:1005: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? - echo "$as_me:1007: \$? = $ac_status" >&5 + echo "$as_me:1008: \$? = $ac_status" >&5 (exit $ac_status); }; then ac_path_separator=';' else @@ -1023,7 +1024,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:1026: checking for $ac_word" >&5 +echo "$as_me:1027: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1038,7 +1039,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}gcc" -echo "$as_me:1041: found $ac_dir/$ac_word" >&5 +echo "$as_me:1042: found $ac_dir/$ac_word" >&5 break done @@ -1046,10 +1047,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1049: result: $CC" >&5 + echo "$as_me:1050: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1052: result: no" >&5 + echo "$as_me:1053: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1058,7 +1059,7 @@ ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 -echo "$as_me:1061: checking for $ac_word" >&5 +echo "$as_me:1062: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1073,7 +1074,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="gcc" -echo "$as_me:1076: found $ac_dir/$ac_word" >&5 +echo "$as_me:1077: found $ac_dir/$ac_word" >&5 break done @@ -1081,10 +1082,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1084: result: $ac_ct_CC" >&5 + echo "$as_me:1085: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1087: result: no" >&5 + echo "$as_me:1088: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1097,7 +1098,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:1100: checking for $ac_word" >&5 +echo "$as_me:1101: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1112,7 +1113,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="${ac_tool_prefix}cc" -echo "$as_me:1115: found $ac_dir/$ac_word" >&5 +echo "$as_me:1116: found $ac_dir/$ac_word" >&5 break done @@ -1120,10 +1121,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1123: result: $CC" >&5 + echo "$as_me:1124: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1126: result: no" >&5 + echo "$as_me:1127: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1132,7 +1133,7 @@ ac_ct_CC=$CC # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1135: checking for $ac_word" >&5 +echo "$as_me:1136: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1147,7 +1148,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="cc" -echo "$as_me:1150: found $ac_dir/$ac_word" >&5 +echo "$as_me:1151: found $ac_dir/$ac_word" >&5 break done @@ -1155,10 +1156,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1158: result: $ac_ct_CC" >&5 + echo "$as_me:1159: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1161: result: no" >&5 + echo "$as_me:1162: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1171,7 +1172,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 -echo "$as_me:1174: checking for $ac_word" >&5 +echo "$as_me:1175: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1191,7 +1192,7 @@ continue fi ac_cv_prog_CC="cc" -echo "$as_me:1194: found $ac_dir/$ac_word" >&5 +echo "$as_me:1195: found $ac_dir/$ac_word" >&5 break done @@ -1213,10 +1214,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1216: result: $CC" >&5 + echo "$as_me:1217: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1219: result: no" >&5 + echo "$as_me:1220: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1227,7 +1228,7 @@ do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:1230: checking for $ac_word" >&5 +echo "$as_me:1231: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1242,7 +1243,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -echo "$as_me:1245: found $ac_dir/$ac_word" >&5 +echo "$as_me:1246: found $ac_dir/$ac_word" >&5 break done @@ -1250,10 +1251,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1253: result: $CC" >&5 + echo "$as_me:1254: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1256: result: no" >&5 + echo "$as_me:1257: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1266,7 +1267,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:1269: checking for $ac_word" >&5 +echo "$as_me:1270: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1281,7 +1282,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="$ac_prog" -echo "$as_me:1284: found $ac_dir/$ac_word" >&5 +echo "$as_me:1285: found $ac_dir/$ac_word" >&5 break done @@ -1289,10 +1290,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1292: result: $ac_ct_CC" >&5 + echo "$as_me:1293: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1295: result: no" >&5 + echo "$as_me:1296: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1304,32 +1305,32 @@ fi -test -z "$CC" && { { echo "$as_me:1307: error: no acceptable cc found in \$PATH" >&5 +test -z "$CC" && { { echo "$as_me:1308: error: no acceptable cc found in \$PATH" >&5 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} { (exit 1); exit 1; }; } # Provide some information about the compiler. -echo "$as_me:1312:" \ +echo "$as_me:1313:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:1315: \"$ac_compiler --version &5\"") >&5 +{ (eval echo "$as_me:1316: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? - echo "$as_me:1318: \$? = $ac_status" >&5 + echo "$as_me:1319: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1320: \"$ac_compiler -v &5\"") >&5 +{ (eval echo "$as_me:1321: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? - echo "$as_me:1323: \$? = $ac_status" >&5 + echo "$as_me:1324: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1325: \"$ac_compiler -V &5\"") >&5 +{ (eval echo "$as_me:1326: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? - echo "$as_me:1328: \$? = $ac_status" >&5 + echo "$as_me:1329: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF -#line 1332 "configure" +#line 1333 "configure" #include "confdefs.h" int @@ -1345,13 +1346,13 @@ # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -echo "$as_me:1348: checking for C compiler default output" >&5 +echo "$as_me:1349: checking for C compiler default output" >&5 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:1351: \"$ac_link_default\"") >&5 +if { (eval echo "$as_me:1352: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:1354: \$? = $ac_status" >&5 + echo "$as_me:1355: \$? = $ac_status" >&5 (exit $ac_status); }; then # Find the output, starting from the most likely. This scheme is # not robust to junk in `.', hence go to wildcards (a.*) only as a last @@ -1374,34 +1375,34 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1377: error: C compiler cannot create executables" >&5 +{ { echo "$as_me:1378: error: C compiler cannot create executables" >&5 echo "$as_me: error: C compiler cannot create executables" >&2;} { (exit 77); exit 77; }; } fi ac_exeext=$ac_cv_exeext -echo "$as_me:1383: result: $ac_file" >&5 +echo "$as_me:1384: result: $ac_file" >&5 echo "${ECHO_T}$ac_file" >&6 # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1388: checking whether the C compiler works" >&5 +echo "$as_me:1389: checking whether the C compiler works" >&5 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' - { (eval echo "$as_me:1394: \"$ac_try\"") >&5 + { (eval echo "$as_me:1395: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1397: \$? = $ac_status" >&5 + echo "$as_me:1398: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { echo "$as_me:1404: error: cannot run C compiled programs. + { { echo "$as_me:1405: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&5 echo "$as_me: error: cannot run C compiled programs. If you meant to cross compile, use \`--host'." >&2;} @@ -1409,24 +1410,24 @@ fi fi fi -echo "$as_me:1412: result: yes" >&5 +echo "$as_me:1413: result: yes" >&5 echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext ac_clean_files=$ac_clean_files_save # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. -echo "$as_me:1419: checking whether we are cross compiling" >&5 +echo "$as_me:1420: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:1421: result: $cross_compiling" >&5 +echo "$as_me:1422: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:1424: checking for executable suffix" >&5 +echo "$as_me:1425: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:1426: \"$ac_link\"") >&5 +if { (eval echo "$as_me:1427: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1429: \$? = $ac_status" >&5 + echo "$as_me:1430: \$? = $ac_status" >&5 (exit $ac_status); }; then # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will @@ -1442,25 +1443,25 @@ esac done else - { { echo "$as_me:1445: error: cannot compute EXEEXT: cannot compile and link" >&5 + { { echo "$as_me:1446: error: cannot compute EXEEXT: cannot compile and link" >&5 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest$ac_cv_exeext -echo "$as_me:1451: result: $ac_cv_exeext" >&5 +echo "$as_me:1452: result: $ac_cv_exeext" >&5 echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT -echo "$as_me:1457: checking for object suffix" >&5 +echo "$as_me:1458: checking for object suffix" >&5 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1463 "configure" +#line 1464 "configure" #include "confdefs.h" int @@ -1472,10 +1473,10 @@ } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:1475: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1476: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1478: \$? = $ac_status" >&5 + echo "$as_me:1479: \$? = $ac_status" >&5 (exit $ac_status); }; then for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in @@ -1487,24 +1488,24 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1490: error: cannot compute OBJEXT: cannot compile" >&5 +{ { echo "$as_me:1491: error: cannot compute OBJEXT: cannot compile" >&5 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -echo "$as_me:1497: result: $ac_cv_objext" >&5 +echo "$as_me:1498: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:1501: checking whether we are using the GNU C compiler" >&5 +echo "$as_me:1502: checking whether we are using the GNU C compiler" >&5 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1507 "configure" +#line 1508 "configure" #include "confdefs.h" int @@ -1519,16 +1520,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1522: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1523: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1525: \$? = $ac_status" >&5 + echo "$as_me:1526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1528: \"$ac_try\"") >&5 + { (eval echo "$as_me:1529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1531: \$? = $ac_status" >&5 + echo "$as_me:1532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else @@ -1540,19 +1541,19 @@ ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1543: result: $ac_cv_c_compiler_gnu" >&5 +echo "$as_me:1544: result: $ac_cv_c_compiler_gnu" >&5 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS CFLAGS="-g" -echo "$as_me:1549: checking whether $CC accepts -g" >&5 +echo "$as_me:1550: checking whether $CC accepts -g" >&5 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 1555 "configure" +#line 1556 "configure" #include "confdefs.h" int @@ -1564,16 +1565,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1567: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1568: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1570: \$? = $ac_status" >&5 + echo "$as_me:1571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1573: \"$ac_try\"") >&5 + { (eval echo "$as_me:1574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1576: \$? = $ac_status" >&5 + echo "$as_me:1577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else @@ -1583,7 +1584,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:1586: result: $ac_cv_prog_cc_g" >&5 +echo "$as_me:1587: result: $ac_cv_prog_cc_g" >&5 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS @@ -1610,16 +1611,16 @@ #endif _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1613: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1614: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1616: \$? = $ac_status" >&5 + echo "$as_me:1617: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1619: \"$ac_try\"") >&5 + { (eval echo "$as_me:1620: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1622: \$? = $ac_status" >&5 + echo "$as_me:1623: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ @@ -1631,7 +1632,7 @@ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 1634 "configure" +#line 1635 "configure" #include "confdefs.h" #include $ac_declaration @@ -1644,16 +1645,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1647: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1648: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1650: \$? = $ac_status" >&5 + echo "$as_me:1651: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1653: \"$ac_try\"") >&5 + { (eval echo "$as_me:1654: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1656: \$? = $ac_status" >&5 + echo "$as_me:1657: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -1663,7 +1664,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 1666 "configure" +#line 1667 "configure" #include "confdefs.h" $ac_declaration int @@ -1675,16 +1676,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1678: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1679: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1681: \$? = $ac_status" >&5 + echo "$as_me:1682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1684: \"$ac_try\"") >&5 + { (eval echo "$as_me:1685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1687: \$? = $ac_status" >&5 + echo "$as_me:1688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -1728,7 +1729,7 @@ fi done if test -z "$ac_aux_dir"; then - { { echo "$as_me:1731: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 + { { echo "$as_me:1732: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} { (exit 1); exit 1; }; } fi @@ -1738,11 +1739,11 @@ # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:1741: error: cannot run $ac_config_sub" >&5 + { { echo "$as_me:1742: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:1745: checking build system type" >&5 +echo "$as_me:1746: checking build system type" >&5 echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1751,23 +1752,23 @@ test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && - { { echo "$as_me:1754: error: cannot guess build type; you must specify one" >&5 + { { echo "$as_me:1755: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || - { { echo "$as_me:1758: error: $ac_config_sub $ac_cv_build_alias failed." >&5 + { { echo "$as_me:1759: error: $ac_config_sub $ac_cv_build_alias failed." >&5 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1763: result: $ac_cv_build" >&5 +echo "$as_me:1764: result: $ac_cv_build" >&5 echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` -echo "$as_me:1770: checking host system type" >&5 +echo "$as_me:1771: checking host system type" >&5 echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1776,19 +1777,19 @@ test -z "$ac_cv_host_alias" && ac_cv_host_alias=$ac_cv_build_alias ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || - { { echo "$as_me:1779: error: $ac_config_sub $ac_cv_host_alias failed" >&5 + { { echo "$as_me:1780: error: $ac_config_sub $ac_cv_host_alias failed" >&5 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:1784: result: $ac_cv_host" >&5 +echo "$as_me:1785: result: $ac_cv_host" >&5 echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` -echo "$as_me:1791: checking whether byte ordering is bigendian" >&5 +echo "$as_me:1792: checking whether byte ordering is bigendian" >&5 echo $ECHO_N "checking whether byte ordering is bigendian... $ECHO_C" >&6 if test "${ac_cv_c_bigendian+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1796,7 +1797,7 @@ ac_cv_c_bigendian=unknown # See if sys/param.h defines the BYTE_ORDER macro. cat >conftest.$ac_ext <<_ACEOF -#line 1799 "configure" +#line 1800 "configure" #include "confdefs.h" #include #include @@ -1813,20 +1814,20 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1816: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1817: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1819: \$? = $ac_status" >&5 + echo "$as_me:1820: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1822: \"$ac_try\"") >&5 + { (eval echo "$as_me:1823: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1825: \$? = $ac_status" >&5 + echo "$as_me:1826: \$? = $ac_status" >&5 (exit $ac_status); }; }; then # It does; now see whether it defined to BIG_ENDIAN or not. cat >conftest.$ac_ext <<_ACEOF -#line 1829 "configure" +#line 1830 "configure" #include "confdefs.h" #include #include @@ -1843,16 +1844,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1846: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1847: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1849: \$? = $ac_status" >&5 + echo "$as_me:1850: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1852: \"$ac_try\"") >&5 + { (eval echo "$as_me:1853: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1855: \$? = $ac_status" >&5 + echo "$as_me:1856: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=yes else @@ -1868,12 +1869,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test $ac_cv_c_bigendian = unknown; then if test "$cross_compiling" = yes; then - { { echo "$as_me:1871: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:1872: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 1876 "configure" +#line 1877 "configure" #include "confdefs.h" int main () @@ -1889,15 +1890,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:1892: \"$ac_link\"") >&5 +if { (eval echo "$as_me:1893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1895: \$? = $ac_status" >&5 + echo "$as_me:1896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:1897: \"$ac_try\"") >&5 + { (eval echo "$as_me:1898: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1900: \$? = $ac_status" >&5 + echo "$as_me:1901: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=no else @@ -1910,7 +1911,7 @@ fi fi fi -echo "$as_me:1913: result: $ac_cv_c_bigendian" >&5 +echo "$as_me:1914: result: $ac_cv_c_bigendian" >&5 echo "${ECHO_T}$ac_cv_c_bigendian" >&6 if test $ac_cv_c_bigendian = yes; then @@ -1925,7 +1926,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:1928: checking for $ac_word" >&5 +echo "$as_me:1929: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -1940,7 +1941,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_AWK="$ac_prog" -echo "$as_me:1943: found $ac_dir/$ac_word" >&5 +echo "$as_me:1944: found $ac_dir/$ac_word" >&5 break done @@ -1948,10 +1949,10 @@ fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then - echo "$as_me:1951: result: $AWK" >&5 + echo "$as_me:1952: result: $AWK" >&5 echo "${ECHO_T}$AWK" >&6 else - echo "$as_me:1954: result: no" >&5 + echo "$as_me:1955: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1963,7 +1964,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:1966: checking how to run the C preprocessor" >&5 +echo "$as_me:1967: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then @@ -1984,18 +1985,18 @@ # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 1987 "configure" +#line 1988 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:1992: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:1993: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:1998: \$? = $ac_status" >&5 + echo "$as_me:1999: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2018,17 +2019,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2021 "configure" +#line 2022 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:2025: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2026: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2031: \$? = $ac_status" >&5 + echo "$as_me:2032: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2065,7 +2066,7 @@ else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2068: result: $CPP" >&5 +echo "$as_me:2069: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -2075,18 +2076,18 @@ # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 2078 "configure" +#line 2079 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:2083: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2084: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2089: \$? = $ac_status" >&5 + echo "$as_me:2090: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2109,17 +2110,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2112 "configure" +#line 2113 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:2116: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2117: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:2122: \$? = $ac_status" >&5 + echo "$as_me:2123: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2147,7 +2148,7 @@ if $ac_preproc_ok; then : else - { { echo "$as_me:2150: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:2151: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -2161,7 +2162,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:2164: checking for $ac_word" >&5 +echo "$as_me:2165: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2176,7 +2177,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:2179: found $ac_dir/$ac_word" >&5 +echo "$as_me:2180: found $ac_dir/$ac_word" >&5 break done @@ -2184,10 +2185,10 @@ fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:2187: result: $RANLIB" >&5 + echo "$as_me:2188: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:2190: result: no" >&5 + echo "$as_me:2191: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2196,7 +2197,7 @@ ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:2199: checking for $ac_word" >&5 +echo "$as_me:2200: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2211,7 +2212,7 @@ test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:2214: found $ac_dir/$ac_word" >&5 +echo "$as_me:2215: found $ac_dir/$ac_word" >&5 break done @@ -2220,10 +2221,10 @@ fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:2223: result: $ac_ct_RANLIB" >&5 + echo "$as_me:2224: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:2226: result: no" >&5 + echo "$as_me:2227: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2244,7 +2245,7 @@ # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:2247: checking for a BSD compatible install" >&5 +echo "$as_me:2248: checking for a BSD compatible install" >&5 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then @@ -2293,7 +2294,7 @@ INSTALL=$ac_install_sh fi fi -echo "$as_me:2296: result: $INSTALL" >&5 +echo "$as_me:2297: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -2306,7 +2307,7 @@ # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 -echo "$as_me:2309: checking for $ac_word" >&5 +echo "$as_me:2310: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2323,7 +2324,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_AR="$ac_dir/$ac_word" - echo "$as_me:2326: found $ac_dir/$ac_word" >&5 + echo "$as_me:2327: found $ac_dir/$ac_word" >&5 break fi done @@ -2334,10 +2335,10 @@ AR=$ac_cv_path_AR if test -n "$AR"; then - echo "$as_me:2337: result: $AR" >&5 + echo "$as_me:2338: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:2340: result: no" >&5 + echo "$as_me:2341: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2345,7 +2346,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:2348: checking for $ac_word" >&5 +echo "$as_me:2349: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PERL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2362,7 +2363,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PERL="$ac_dir/$ac_word" - echo "$as_me:2365: found $ac_dir/$ac_word" >&5 + echo "$as_me:2366: found $ac_dir/$ac_word" >&5 break fi done @@ -2373,10 +2374,10 @@ PERL=$ac_cv_path_PERL if test -n "$PERL"; then - echo "$as_me:2376: result: $PERL" >&5 + echo "$as_me:2377: result: $PERL" >&5 echo "${ECHO_T}$PERL" >&6 else - echo "$as_me:2379: result: no" >&5 + echo "$as_me:2380: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2385,7 +2386,7 @@ # Extract the first word of "sed", so it can be a program name with args. set dummy sed; ac_word=$2 -echo "$as_me:2388: checking for $ac_word" >&5 +echo "$as_me:2389: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2402,7 +2403,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_SED="$ac_dir/$ac_word" - echo "$as_me:2405: found $ac_dir/$ac_word" >&5 + echo "$as_me:2406: found $ac_dir/$ac_word" >&5 break fi done @@ -2413,16 +2414,16 @@ SED=$ac_cv_path_SED if test -n "$SED"; then - echo "$as_me:2416: result: $SED" >&5 + echo "$as_me:2417: result: $SED" >&5 echo "${ECHO_T}$SED" >&6 else - echo "$as_me:2419: result: no" >&5 + echo "$as_me:2420: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "ent", so it can be a program name with args. set dummy ent; ac_word=$2 -echo "$as_me:2425: checking for $ac_word" >&5 +echo "$as_me:2426: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ENT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2439,7 +2440,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ENT="$ac_dir/$ac_word" - echo "$as_me:2442: found $ac_dir/$ac_word" >&5 + echo "$as_me:2443: found $ac_dir/$ac_word" >&5 break fi done @@ -2450,16 +2451,16 @@ ENT=$ac_cv_path_ENT if test -n "$ENT"; then - echo "$as_me:2453: result: $ENT" >&5 + echo "$as_me:2454: result: $ENT" >&5 echo "${ECHO_T}$ENT" >&6 else - echo "$as_me:2456: result: no" >&5 + echo "$as_me:2457: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "bash", so it can be a program name with args. set dummy bash; ac_word=$2 -echo "$as_me:2462: checking for $ac_word" >&5 +echo "$as_me:2463: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2476,7 +2477,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TEST_MINUS_S_SH="$ac_dir/$ac_word" - echo "$as_me:2479: found $ac_dir/$ac_word" >&5 + echo "$as_me:2480: found $ac_dir/$ac_word" >&5 break fi done @@ -2487,16 +2488,16 @@ TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then - echo "$as_me:2490: result: $TEST_MINUS_S_SH" >&5 + echo "$as_me:2491: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else - echo "$as_me:2493: result: no" >&5 + echo "$as_me:2494: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "ksh", so it can be a program name with args. set dummy ksh; ac_word=$2 -echo "$as_me:2499: checking for $ac_word" >&5 +echo "$as_me:2500: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2513,7 +2514,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TEST_MINUS_S_SH="$ac_dir/$ac_word" - echo "$as_me:2516: found $ac_dir/$ac_word" >&5 + echo "$as_me:2517: found $ac_dir/$ac_word" >&5 break fi done @@ -2524,16 +2525,16 @@ TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then - echo "$as_me:2527: result: $TEST_MINUS_S_SH" >&5 + echo "$as_me:2528: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else - echo "$as_me:2530: result: no" >&5 + echo "$as_me:2531: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "sh", so it can be a program name with args. set dummy sh; ac_word=$2 -echo "$as_me:2536: checking for $ac_word" >&5 +echo "$as_me:2537: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TEST_MINUS_S_SH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2550,7 +2551,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TEST_MINUS_S_SH="$ac_dir/$ac_word" - echo "$as_me:2553: found $ac_dir/$ac_word" >&5 + echo "$as_me:2554: found $ac_dir/$ac_word" >&5 break fi done @@ -2561,16 +2562,16 @@ TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then - echo "$as_me:2564: result: $TEST_MINUS_S_SH" >&5 + echo "$as_me:2565: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else - echo "$as_me:2567: result: no" >&5 + echo "$as_me:2568: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "sh", so it can be a program name with args. set dummy sh; ac_word=$2 -echo "$as_me:2573: checking for $ac_word" >&5 +echo "$as_me:2574: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_SH+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2587,7 +2588,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_SH="$ac_dir/$ac_word" - echo "$as_me:2590: found $ac_dir/$ac_word" >&5 + echo "$as_me:2591: found $ac_dir/$ac_word" >&5 break fi done @@ -2598,10 +2599,10 @@ SH=$ac_cv_path_SH if test -n "$SH"; then - echo "$as_me:2601: result: $SH" >&5 + echo "$as_me:2602: result: $SH" >&5 echo "${ECHO_T}$SH" >&6 else - echo "$as_me:2604: result: no" >&5 + echo "$as_me:2605: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2613,7 +2614,7 @@ fi; if test "$enable_largefile" != no; then - echo "$as_me:2616: checking for special C compiler options needed for large files" >&5 + echo "$as_me:2617: checking for special C compiler options needed for large files" >&5 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2625,7 +2626,7 @@ # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >conftest.$ac_ext <<_ACEOF -#line 2628 "configure" +#line 2629 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -2645,16 +2646,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2648: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2649: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2651: \$? = $ac_status" >&5 + echo "$as_me:2652: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2654: \"$ac_try\"") >&5 + { (eval echo "$as_me:2655: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2657: \$? = $ac_status" >&5 + echo "$as_me:2658: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2664,16 +2665,16 @@ rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:2667: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2668: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2670: \$? = $ac_status" >&5 + echo "$as_me:2671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2673: \"$ac_try\"") >&5 + { (eval echo "$as_me:2674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2676: \$? = $ac_status" >&5 + echo "$as_me:2677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -2687,13 +2688,13 @@ rm -f conftest.$ac_ext fi fi -echo "$as_me:2690: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:2691: result: $ac_cv_sys_largefile_CC" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi - echo "$as_me:2696: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:2697: checking for _FILE_OFFSET_BITS value needed for large files" >&5 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_file_offset_bits+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2701,7 +2702,7 @@ while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 2704 "configure" +#line 2705 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -2721,16 +2722,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2724: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2725: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2727: \$? = $ac_status" >&5 + echo "$as_me:2728: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2730: \"$ac_try\"") >&5 + { (eval echo "$as_me:2731: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2733: \$? = $ac_status" >&5 + echo "$as_me:2734: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2739,7 +2740,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 2742 "configure" +#line 2743 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include @@ -2760,16 +2761,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2763: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2764: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2766: \$? = $ac_status" >&5 + echo "$as_me:2767: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2769: \"$ac_try\"") >&5 + { (eval echo "$as_me:2770: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2772: \$? = $ac_status" >&5 + echo "$as_me:2773: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -2780,7 +2781,7 @@ break done fi -echo "$as_me:2783: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:2784: result: $ac_cv_sys_file_offset_bits" >&5 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 if test "$ac_cv_sys_file_offset_bits" != no; then @@ -2790,7 +2791,7 @@ fi rm -f conftest* - echo "$as_me:2793: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:2794: checking for _LARGE_FILES value needed for large files" >&5 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_large_files+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2798,7 +2799,7 @@ while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 2801 "configure" +#line 2802 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -2818,16 +2819,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2821: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2822: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2824: \$? = $ac_status" >&5 + echo "$as_me:2825: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2827: \"$ac_try\"") >&5 + { (eval echo "$as_me:2828: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2830: \$? = $ac_status" >&5 + echo "$as_me:2831: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2836,7 +2837,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 2839 "configure" +#line 2840 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include @@ -2857,16 +2858,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2860: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2861: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2863: \$? = $ac_status" >&5 + echo "$as_me:2864: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2866: \"$ac_try\"") >&5 + { (eval echo "$as_me:2867: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2869: \$? = $ac_status" >&5 + echo "$as_me:2870: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -2877,7 +2878,7 @@ break done fi -echo "$as_me:2880: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:2881: result: $ac_cv_sys_large_files" >&5 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 if test "$ac_cv_sys_large_files" != no; then @@ -2890,7 +2891,7 @@ fi if test -z "$AR" ; then - { { echo "$as_me:2893: error: *** 'ar' missing, please install or fix your \$PATH ***" >&5 + { { echo "$as_me:2894: error: *** 'ar' missing, please install or fix your \$PATH ***" >&5 echo "$as_me: error: *** 'ar' missing, please install or fix your \$PATH ***" >&2;} { (exit 1); exit 1; }; } fi @@ -2905,7 +2906,7 @@ # Search for login # Extract the first word of "login", so it can be a program name with args. set dummy login; ac_word=$2 -echo "$as_me:2908: checking for $ac_word" >&5 +echo "$as_me:2909: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_LOGIN_PROGRAM_FALLBACK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2922,7 +2923,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_LOGIN_PROGRAM_FALLBACK="$ac_dir/$ac_word" - echo "$as_me:2925: found $ac_dir/$ac_word" >&5 + echo "$as_me:2926: found $ac_dir/$ac_word" >&5 break fi done @@ -2933,10 +2934,10 @@ LOGIN_PROGRAM_FALLBACK=$ac_cv_path_LOGIN_PROGRAM_FALLBACK if test -n "$LOGIN_PROGRAM_FALLBACK"; then - echo "$as_me:2936: result: $LOGIN_PROGRAM_FALLBACK" >&5 + echo "$as_me:2937: result: $LOGIN_PROGRAM_FALLBACK" >&5 echo "${ECHO_T}$LOGIN_PROGRAM_FALLBACK" >&6 else - echo "$as_me:2939: result: no" >&5 + echo "$as_me:2940: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2952,7 +2953,7 @@ LD=$CC fi -echo "$as_me:2955: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:2956: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2960,7 +2961,7 @@ ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 2963 "configure" +#line 2964 "configure" #include "confdefs.h" #include #include @@ -3009,16 +3010,16 @@ do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3012: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3013: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3015: \$? = $ac_status" >&5 + echo "$as_me:3016: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3018: \"$ac_try\"") >&5 + { (eval echo "$as_me:3019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3021: \$? = $ac_status" >&5 + echo "$as_me:3022: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -3035,15 +3036,15 @@ case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3038: result: none needed" >&5 + echo "$as_me:3039: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3041: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:3042: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac -echo "$as_me:3046: checking for inline" >&5 +echo "$as_me:3047: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3051,7 +3052,7 @@ ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 3054 "configure" +#line 3055 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -3060,16 +3061,16 @@ _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3063: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3064: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3066: \$? = $ac_status" >&5 + echo "$as_me:3067: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3069: \"$ac_try\"") >&5 + { (eval echo "$as_me:3070: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3072: \$? = $ac_status" >&5 + echo "$as_me:3073: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -3080,7 +3081,7 @@ done fi -echo "$as_me:3083: result: $ac_cv_c_inline" >&5 +echo "$as_me:3084: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -3104,7 +3105,7 @@ *-*-aix*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" - echo "$as_me:3107: checking how to specify blibpath for linker ($LD)" >&5 + echo "$as_me:3108: checking how to specify blibpath for linker ($LD)" >&5 echo $ECHO_N "checking how to specify blibpath for linker ($LD)... $ECHO_C" >&6 if (test -z "$blibpath"); then blibpath="/usr/lib:/lib:/usr/local/lib" @@ -3114,7 +3115,7 @@ if (test -z "$blibflags"); then LDFLAGS="$saved_LDFLAGS $tryflags$blibpath" cat >conftest.$ac_ext <<_ACEOF -#line 3117 "configure" +#line 3118 "configure" #include "confdefs.h" int @@ -3126,16 +3127,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3129: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3130: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3132: \$? = $ac_status" >&5 + echo "$as_me:3133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3135: \"$ac_try\"") >&5 + { (eval echo "$as_me:3136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3138: \$? = $ac_status" >&5 + echo "$as_me:3139: \$? = $ac_status" >&5 (exit $ac_status); }; }; then blibflags=$tryflags else @@ -3146,23 +3147,23 @@ fi done if (test -z "$blibflags"); then - echo "$as_me:3149: result: not found" >&5 + echo "$as_me:3150: result: not found" >&5 echo "${ECHO_T}not found" >&6 - { { echo "$as_me:3151: error: *** must be able to specify blibpath on AIX - check config.log" >&5 + { { echo "$as_me:3152: error: *** must be able to specify blibpath on AIX - check config.log" >&5 echo "$as_me: error: *** must be able to specify blibpath on AIX - check config.log" >&2;} { (exit 1); exit 1; }; } else - echo "$as_me:3155: result: $blibflags" >&5 + echo "$as_me:3156: result: $blibflags" >&5 echo "${ECHO_T}$blibflags" >&6 fi LDFLAGS="$saved_LDFLAGS" - echo "$as_me:3159: checking for authenticate" >&5 + echo "$as_me:3160: checking for authenticate" >&5 echo $ECHO_N "checking for authenticate... $ECHO_C" >&6 if test "${ac_cv_func_authenticate+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3165 "configure" +#line 3166 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char authenticate (); below. */ @@ -3193,16 +3194,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3196: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3197: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3199: \$? = $ac_status" >&5 + echo "$as_me:3200: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3202: \"$ac_try\"") >&5 + { (eval echo "$as_me:3203: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3205: \$? = $ac_status" >&5 + echo "$as_me:3206: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_authenticate=yes else @@ -3212,7 +3213,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3215: result: $ac_cv_func_authenticate" >&5 +echo "$as_me:3216: result: $ac_cv_func_authenticate" >&5 echo "${ECHO_T}$ac_cv_func_authenticate" >&6 if test $ac_cv_func_authenticate = yes; then cat >>confdefs.h <<\EOF @@ -3220,7 +3221,7 @@ EOF else - echo "$as_me:3223: checking for authenticate in -ls" >&5 + echo "$as_me:3224: checking for authenticate in -ls" >&5 echo $ECHO_N "checking for authenticate in -ls... $ECHO_C" >&6 if test "${ac_cv_lib_s_authenticate+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3228,7 +3229,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ls $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3231 "configure" +#line 3232 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3247,16 +3248,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3250: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3251: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3253: \$? = $ac_status" >&5 + echo "$as_me:3254: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3256: \"$ac_try\"") >&5 + { (eval echo "$as_me:3257: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3259: \$? = $ac_status" >&5 + echo "$as_me:3260: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_s_authenticate=yes else @@ -3267,7 +3268,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3270: result: $ac_cv_lib_s_authenticate" >&5 +echo "$as_me:3271: result: $ac_cv_lib_s_authenticate" >&5 echo "${ECHO_T}$ac_cv_lib_s_authenticate" >&6 if test $ac_cv_lib_s_authenticate = yes; then cat >>confdefs.h <<\EOF @@ -3280,13 +3281,13 @@ fi - echo "$as_me:3283: checking whether loginfailed is declared" >&5 + echo "$as_me:3284: checking whether loginfailed is declared" >&5 echo $ECHO_N "checking whether loginfailed is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_loginfailed+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3289 "configure" +#line 3290 "configure" #include "confdefs.h" #include @@ -3302,16 +3303,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3305: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3306: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3308: \$? = $ac_status" >&5 + echo "$as_me:3309: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3311: \"$ac_try\"") >&5 + { (eval echo "$as_me:3312: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3314: \$? = $ac_status" >&5 + echo "$as_me:3315: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_loginfailed=yes else @@ -3321,13 +3322,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3324: result: $ac_cv_have_decl_loginfailed" >&5 +echo "$as_me:3325: result: $ac_cv_have_decl_loginfailed" >&5 echo "${ECHO_T}$ac_cv_have_decl_loginfailed" >&6 if test $ac_cv_have_decl_loginfailed = yes; then - echo "$as_me:3327: checking if loginfailed takes 4 arguments" >&5 + echo "$as_me:3328: checking if loginfailed takes 4 arguments" >&5 echo $ECHO_N "checking if loginfailed takes 4 arguments... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 3330 "configure" +#line 3331 "configure" #include "confdefs.h" #include int @@ -3339,18 +3340,18 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3342: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3343: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3345: \$? = $ac_status" >&5 + echo "$as_me:3346: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3348: \"$ac_try\"") >&5 + { (eval echo "$as_me:3349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3351: \$? = $ac_status" >&5 + echo "$as_me:3352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:3353: result: yes" >&5 + echo "$as_me:3354: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define AIX_LOGINFAILED_4ARG 1 @@ -3359,7 +3360,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:3362: result: no" >&5 +echo "$as_me:3363: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3369,13 +3370,13 @@ for ac_func in setauthdb do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:3372: checking for $ac_func" >&5 +echo "$as_me:3373: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3378 "configure" +#line 3379 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -3406,16 +3407,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3409: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3410: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3412: \$? = $ac_status" >&5 + echo "$as_me:3413: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3415: \"$ac_try\"") >&5 + { (eval echo "$as_me:3416: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3418: \$? = $ac_status" >&5 + echo "$as_me:3419: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -3425,7 +3426,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3428: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:3429: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 + echo "$as_me:3515: checking if we have working getaddrinfo" >&5 echo $ECHO_N "checking if we have working getaddrinfo... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - echo "$as_me:3517: result: assume it is working" >&5 + echo "$as_me:3518: result: assume it is working" >&5 echo "${ECHO_T}assume it is working" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3521 "configure" +#line 3522 "configure" #include "confdefs.h" #include main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) @@ -3528,23 +3529,23 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:3531: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3532: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3534: \$? = $ac_status" >&5 + echo "$as_me:3535: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:3536: \"$ac_try\"") >&5 + { (eval echo "$as_me:3537: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3539: \$? = $ac_status" >&5 + echo "$as_me:3540: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:3541: result: working" >&5 + echo "$as_me:3542: result: working" >&5 echo "${ECHO_T}working" >&6 else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:3547: result: buggy" >&5 +echo "$as_me:3548: result: buggy" >&5 echo "${ECHO_T}buggy" >&6 cat >>confdefs.h <<\EOF #define BROKEN_GETADDRINFO 1 @@ -3606,7 +3607,7 @@ LIBS="$LIBS -lsec -lsecpw" -echo "$as_me:3609: checking for t_error in -lxnet" >&5 +echo "$as_me:3610: checking for t_error in -lxnet" >&5 echo $ECHO_N "checking for t_error in -lxnet... $ECHO_C" >&6 if test "${ac_cv_lib_xnet_t_error+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3614,7 +3615,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lxnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3617 "configure" +#line 3618 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3633,16 +3634,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3636: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3637: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3639: \$? = $ac_status" >&5 + echo "$as_me:3640: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3642: \"$ac_try\"") >&5 + { (eval echo "$as_me:3643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3645: \$? = $ac_status" >&5 + echo "$as_me:3646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_xnet_t_error=yes else @@ -3653,7 +3654,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3656: result: $ac_cv_lib_xnet_t_error" >&5 +echo "$as_me:3657: result: $ac_cv_lib_xnet_t_error" >&5 echo "${ECHO_T}$ac_cv_lib_xnet_t_error" >&6 if test $ac_cv_lib_xnet_t_error = yes; then cat >>confdefs.h <&5 + { { echo "$as_me:3667: error: *** -lxnet needed on HP-UX - check config.log ***" >&5 echo "$as_me: error: *** -lxnet needed on HP-UX - check config.log ***" >&2;} { (exit 1); exit 1; }; } fi @@ -3706,7 +3707,7 @@ LIBS="$LIBS -lsec" -echo "$as_me:3709: checking for t_error in -lxnet" >&5 +echo "$as_me:3710: checking for t_error in -lxnet" >&5 echo $ECHO_N "checking for t_error in -lxnet... $ECHO_C" >&6 if test "${ac_cv_lib_xnet_t_error+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3714,7 +3715,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lxnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3717 "configure" +#line 3718 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3733,16 +3734,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3736: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3737: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3739: \$? = $ac_status" >&5 + echo "$as_me:3740: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3742: \"$ac_try\"") >&5 + { (eval echo "$as_me:3743: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3745: \$? = $ac_status" >&5 + echo "$as_me:3746: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_xnet_t_error=yes else @@ -3753,7 +3754,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3756: result: $ac_cv_lib_xnet_t_error" >&5 +echo "$as_me:3757: result: $ac_cv_lib_xnet_t_error" >&5 echo "${ECHO_T}$ac_cv_lib_xnet_t_error" >&6 if test $ac_cv_lib_xnet_t_error = yes; then cat >>confdefs.h <&5 + { { echo "$as_me:3767: error: *** -lxnet needed on HP-UX - check config.log ***" >&5 echo "$as_me: error: *** -lxnet needed on HP-UX - check config.log ***" >&2;} { (exit 1); exit 1; }; } fi @@ -3806,7 +3807,7 @@ LIBS="$LIBS -lsec" -echo "$as_me:3809: checking for t_error in -lxnet" >&5 +echo "$as_me:3810: checking for t_error in -lxnet" >&5 echo $ECHO_N "checking for t_error in -lxnet... $ECHO_C" >&6 if test "${ac_cv_lib_xnet_t_error+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3814,7 +3815,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lxnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3817 "configure" +#line 3818 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3833,16 +3834,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3836: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3837: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3839: \$? = $ac_status" >&5 + echo "$as_me:3840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3842: \"$ac_try\"") >&5 + { (eval echo "$as_me:3843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3845: \$? = $ac_status" >&5 + echo "$as_me:3846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_xnet_t_error=yes else @@ -3853,7 +3854,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3856: result: $ac_cv_lib_xnet_t_error" >&5 +echo "$as_me:3857: result: $ac_cv_lib_xnet_t_error" >&5 echo "${ECHO_T}$ac_cv_lib_xnet_t_error" >&6 if test $ac_cv_lib_xnet_t_error = yes; then cat >>confdefs.h <&5 + { { echo "$as_me:3867: error: *** -lxnet needed on HP-UX - check config.log ***" >&5 echo "$as_me: error: *** -lxnet needed on HP-UX - check config.log ***" >&2;} { (exit 1); exit 1; }; } fi @@ -3902,13 +3903,13 @@ #define WITH_IRIX_AUDIT 1 EOF - echo "$as_me:3905: checking for jlimit_startjob" >&5 + echo "$as_me:3906: checking for jlimit_startjob" >&5 echo $ECHO_N "checking for jlimit_startjob... $ECHO_C" >&6 if test "${ac_cv_func_jlimit_startjob+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3911 "configure" +#line 3912 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char jlimit_startjob (); below. */ @@ -3939,16 +3940,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3942: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3943: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3945: \$? = $ac_status" >&5 + echo "$as_me:3946: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3948: \"$ac_try\"") >&5 + { (eval echo "$as_me:3949: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3951: \$? = $ac_status" >&5 + echo "$as_me:3952: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_jlimit_startjob=yes else @@ -3958,7 +3959,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3961: result: $ac_cv_func_jlimit_startjob" >&5 +echo "$as_me:3962: result: $ac_cv_func_jlimit_startjob" >&5 echo "${ECHO_T}$ac_cv_func_jlimit_startjob" >&6 if test $ac_cv_func_jlimit_startjob = yes; then cat >>confdefs.h <<\EOF @@ -4106,11 +4107,11 @@ external_path_file=/etc/default/login # hardwire lastlog location (can't detect it on some versions) conf_lastlog_location="/var/adm/lastlog" - echo "$as_me:4109: checking for obsolete utmp and wtmp in solaris2.x" >&5 + echo "$as_me:4110: checking for obsolete utmp and wtmp in solaris2.x" >&5 echo $ECHO_N "checking for obsolete utmp and wtmp in solaris2.x... $ECHO_C" >&6 sol2ver=`echo "$host"| sed -e 's/.*[0-9]\.//'` if test "$sol2ver" -ge 8; then - echo "$as_me:4113: result: yes" >&5 + echo "$as_me:4114: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define DISABLE_UTMP 1 @@ -4121,7 +4122,7 @@ EOF else - echo "$as_me:4124: result: no" >&5 + echo "$as_me:4125: result: no" >&5 echo "${ECHO_T}no" >&6 fi ;; @@ -4131,13 +4132,13 @@ for ac_func in getpwanam do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:4134: checking for $ac_func" >&5 +echo "$as_me:4135: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4140 "configure" +#line 4141 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -4168,16 +4169,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4171: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4172: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4174: \$? = $ac_status" >&5 + echo "$as_me:4175: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4177: \"$ac_try\"") >&5 + { (eval echo "$as_me:4178: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4180: \$? = $ac_status" >&5 + echo "$as_me:4181: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -4187,7 +4188,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4190: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:4191: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4337: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4342 "configure" +#line 4343 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -4370,16 +4371,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4373: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4374: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4376: \$? = $ac_status" >&5 + echo "$as_me:4377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4379: \"$ac_try\"") >&5 + { (eval echo "$as_me:4380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4382: \$? = $ac_status" >&5 + echo "$as_me:4383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -4389,7 +4390,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4392: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:4393: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4449: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4454 "configure" +#line 4455 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -4482,16 +4483,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4485: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4486: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4488: \$? = $ac_status" >&5 + echo "$as_me:4489: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4491: \"$ac_try\"") >&5 + { (eval echo "$as_me:4492: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4494: \$? = $ac_status" >&5 + echo "$as_me:4495: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -4501,7 +4502,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4504: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:4505: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 + echo "$as_me:4565: checking for Digital Unix SIA" >&5 echo $ECHO_N "checking for Digital Unix SIA... $ECHO_C" >&6 no_osfsia="" @@ -4570,7 +4571,7 @@ withval="$with_osfsia" if test "x$withval" = "xno" ; then - echo "$as_me:4573: result: disabled" >&5 + echo "$as_me:4574: result: disabled" >&5 echo "${ECHO_T}disabled" >&6 no_osfsia=1 fi @@ -4578,7 +4579,7 @@ fi; if test -z "$no_osfsia" ; then if test -f /etc/sia/matrix.conf; then - echo "$as_me:4581: result: yes" >&5 + echo "$as_me:4582: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define HAVE_OSF_SIA 1 @@ -4594,7 +4595,7 @@ LIBS="$LIBS -lsecurity -ldb -lm -laud" else - echo "$as_me:4597: result: no" >&5 + echo "$as_me:4598: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi @@ -4690,15 +4691,15 @@ fi; -echo "$as_me:4693: checking compiler and flags for sanity" >&5 +echo "$as_me:4694: checking compiler and flags for sanity" >&5 echo $ECHO_N "checking compiler and flags for sanity... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:4696: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:4697: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 4701 "configure" +#line 4702 "configure" #include "confdefs.h" #include @@ -4706,26 +4707,26 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4710: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4712: \$? = $ac_status" >&5 + echo "$as_me:4713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4714: \"$ac_try\"") >&5 + { (eval echo "$as_me:4715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4717: \$? = $ac_status" >&5 + echo "$as_me:4718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:4719: result: yes" >&5 + echo "$as_me:4720: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:4726: result: no" >&5 + echo "$as_me:4727: result: no" >&5 echo "${ECHO_T}no" >&6 - { { echo "$as_me:4728: error: *** compiler cannot create working executables, check config.log ***" >&5 + { { echo "$as_me:4729: error: *** compiler cannot create working executables, check config.log ***" >&5 echo "$as_me: error: *** compiler cannot create working executables, check config.log ***" >&2;} { (exit 1); exit 1; }; } @@ -4747,23 +4748,23 @@ util.h utime.h utmp.h utmpx.h vis.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4750: checking for $ac_header" >&5 +echo "$as_me:4751: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4756 "configure" +#line 4757 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4760: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4761: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4766: \$? = $ac_status" >&5 + echo "$as_me:4767: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4782,7 +4783,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4785: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4786: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4797: checking for yp_match" >&5 echo $ECHO_N "checking for yp_match... $ECHO_C" >&6 if test "${ac_cv_func_yp_match+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4802 "configure" +#line 4803 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char yp_match (); below. */ @@ -4830,16 +4831,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4833: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4834: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4836: \$? = $ac_status" >&5 + echo "$as_me:4837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4839: \"$ac_try\"") >&5 + { (eval echo "$as_me:4840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4842: \$? = $ac_status" >&5 + echo "$as_me:4843: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_yp_match=yes else @@ -4849,13 +4850,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4852: result: $ac_cv_func_yp_match" >&5 +echo "$as_me:4853: result: $ac_cv_func_yp_match" >&5 echo "${ECHO_T}$ac_cv_func_yp_match" >&6 if test $ac_cv_func_yp_match = yes; then : else -echo "$as_me:4858: checking for yp_match in -lnsl" >&5 +echo "$as_me:4859: checking for yp_match in -lnsl" >&5 echo $ECHO_N "checking for yp_match in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_yp_match+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4863,7 +4864,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4866 "configure" +#line 4867 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4882,16 +4883,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4885: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4886: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4888: \$? = $ac_status" >&5 + echo "$as_me:4889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4891: \"$ac_try\"") >&5 + { (eval echo "$as_me:4892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4894: \$? = $ac_status" >&5 + echo "$as_me:4895: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_yp_match=yes else @@ -4902,7 +4903,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4905: result: $ac_cv_lib_nsl_yp_match" >&5 +echo "$as_me:4906: result: $ac_cv_lib_nsl_yp_match" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_yp_match" >&6 if test $ac_cv_lib_nsl_yp_match = yes; then cat >>confdefs.h <&5 +echo "$as_me:4919: checking for setsockopt" >&5 echo $ECHO_N "checking for setsockopt... $ECHO_C" >&6 if test "${ac_cv_func_setsockopt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4924 "configure" +#line 4925 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setsockopt (); below. */ @@ -4952,16 +4953,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4955: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4956: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4958: \$? = $ac_status" >&5 + echo "$as_me:4959: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4961: \"$ac_try\"") >&5 + { (eval echo "$as_me:4962: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4964: \$? = $ac_status" >&5 + echo "$as_me:4965: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_setsockopt=yes else @@ -4971,13 +4972,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4974: result: $ac_cv_func_setsockopt" >&5 +echo "$as_me:4975: result: $ac_cv_func_setsockopt" >&5 echo "${ECHO_T}$ac_cv_func_setsockopt" >&6 if test $ac_cv_func_setsockopt = yes; then : else -echo "$as_me:4980: checking for setsockopt in -lsocket" >&5 +echo "$as_me:4981: checking for setsockopt in -lsocket" >&5 echo $ECHO_N "checking for setsockopt in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_setsockopt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4985,7 +4986,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4988 "configure" +#line 4989 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5004,16 +5005,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5007: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5008: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5010: \$? = $ac_status" >&5 + echo "$as_me:5011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5013: \"$ac_try\"") >&5 + { (eval echo "$as_me:5014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5016: \$? = $ac_status" >&5 + echo "$as_me:5017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_setsockopt=yes else @@ -5024,7 +5025,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5027: result: $ac_cv_lib_socket_setsockopt" >&5 +echo "$as_me:5028: result: $ac_cv_lib_socket_setsockopt" >&5 echo "${ECHO_T}$ac_cv_lib_socket_setsockopt" >&6 if test $ac_cv_lib_socket_setsockopt = yes; then cat >>confdefs.h <&5 + echo "$as_me:5043: checking for innetgr in -lrpc" >&5 echo $ECHO_N "checking for innetgr in -lrpc... $ECHO_C" >&6 if test "${ac_cv_lib_rpc_innetgr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5047,7 +5048,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lrpc -lyp -lrpc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5050 "configure" +#line 5051 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5066,16 +5067,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5069: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5070: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5072: \$? = $ac_status" >&5 + echo "$as_me:5073: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5075: \"$ac_try\"") >&5 + { (eval echo "$as_me:5076: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5078: \$? = $ac_status" >&5 + echo "$as_me:5079: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_rpc_innetgr=yes else @@ -5086,7 +5087,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5089: result: $ac_cv_lib_rpc_innetgr" >&5 +echo "$as_me:5090: result: $ac_cv_lib_rpc_innetgr" >&5 echo "${ECHO_T}$ac_cv_lib_rpc_innetgr" >&6 if test $ac_cv_lib_rpc_innetgr = yes; then LIBS="-lrpc -lyp -lrpc $LIBS" @@ -5098,13 +5099,13 @@ for ac_func in dirname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5101: checking for $ac_func" >&5 +echo "$as_me:5102: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5107 "configure" +#line 5108 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5135,16 +5136,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5138: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5139: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5141: \$? = $ac_status" >&5 + echo "$as_me:5142: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5144: \"$ac_try\"") >&5 + { (eval echo "$as_me:5145: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5147: \$? = $ac_status" >&5 + echo "$as_me:5148: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5154,7 +5155,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5157: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5158: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:5168: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5173 "configure" +#line 5174 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5177: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5178: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:5183: \$? = $ac_status" >&5 + echo "$as_me:5184: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5199,7 +5200,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5202: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5203: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 + echo "$as_me:5215: checking for dirname in -lgen" >&5 echo $ECHO_N "checking for dirname in -lgen... $ECHO_C" >&6 if test "${ac_cv_lib_gen_dirname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5219,7 +5220,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5222 "configure" +#line 5223 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5238,16 +5239,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5241: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5242: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5244: \$? = $ac_status" >&5 + echo "$as_me:5245: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5247: \"$ac_try\"") >&5 + { (eval echo "$as_me:5248: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5250: \$? = $ac_status" >&5 + echo "$as_me:5251: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_dirname=yes else @@ -5258,11 +5259,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5261: result: $ac_cv_lib_gen_dirname" >&5 +echo "$as_me:5262: result: $ac_cv_lib_gen_dirname" >&5 echo "${ECHO_T}$ac_cv_lib_gen_dirname" >&6 if test $ac_cv_lib_gen_dirname = yes; then - echo "$as_me:5265: checking for broken dirname" >&5 + echo "$as_me:5266: checking for broken dirname" >&5 echo $ECHO_N "checking for broken dirname... $ECHO_C" >&6 if test "${ac_cv_have_broken_dirname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5271,12 +5272,12 @@ save_LIBS="$LIBS" LIBS="$LIBS -lgen" if test "$cross_compiling" = yes; then - { { echo "$as_me:5274: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:5275: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 5279 "configure" +#line 5280 "configure" #include "confdefs.h" #include @@ -5296,15 +5297,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5299: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5300: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5302: \$? = $ac_status" >&5 + echo "$as_me:5303: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5304: \"$ac_try\"") >&5 + { (eval echo "$as_me:5305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5307: \$? = $ac_status" >&5 + echo "$as_me:5308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_broken_dirname="no" else @@ -5319,7 +5320,7 @@ LIBS="$save_LIBS" fi -echo "$as_me:5322: result: $ac_cv_have_broken_dirname" >&5 +echo "$as_me:5323: result: $ac_cv_have_broken_dirname" >&5 echo "${ECHO_T}$ac_cv_have_broken_dirname" >&6 if test "x$ac_cv_have_broken_dirname" = "xno" ; then LIBS="$LIBS -lgen" @@ -5330,23 +5331,23 @@ for ac_header in libgen.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5333: checking for $ac_header" >&5 +echo "$as_me:5334: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5339 "configure" +#line 5340 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5343: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5344: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:5349: \$? = $ac_status" >&5 + echo "$as_me:5350: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5365,7 +5366,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5368: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5369: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:5386: checking for getspnam" >&5 echo $ECHO_N "checking for getspnam... $ECHO_C" >&6 if test "${ac_cv_func_getspnam+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5391 "configure" +#line 5392 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getspnam (); below. */ @@ -5419,16 +5420,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5422: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5423: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5425: \$? = $ac_status" >&5 + echo "$as_me:5426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5428: \"$ac_try\"") >&5 + { (eval echo "$as_me:5429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5431: \$? = $ac_status" >&5 + echo "$as_me:5432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getspnam=yes else @@ -5438,12 +5439,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5441: result: $ac_cv_func_getspnam" >&5 +echo "$as_me:5442: result: $ac_cv_func_getspnam" >&5 echo "${ECHO_T}$ac_cv_func_getspnam" >&6 if test $ac_cv_func_getspnam = yes; then : else - echo "$as_me:5446: checking for getspnam in -lgen" >&5 + echo "$as_me:5447: checking for getspnam in -lgen" >&5 echo $ECHO_N "checking for getspnam in -lgen... $ECHO_C" >&6 if test "${ac_cv_lib_gen_getspnam+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5451,7 +5452,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5454 "configure" +#line 5455 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5470,16 +5471,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5474: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5476: \$? = $ac_status" >&5 + echo "$as_me:5477: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5479: \"$ac_try\"") >&5 + { (eval echo "$as_me:5480: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5482: \$? = $ac_status" >&5 + echo "$as_me:5483: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_getspnam=yes else @@ -5490,7 +5491,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5493: result: $ac_cv_lib_gen_getspnam" >&5 +echo "$as_me:5494: result: $ac_cv_lib_gen_getspnam" >&5 echo "${ECHO_T}$ac_cv_lib_gen_getspnam" >&6 if test $ac_cv_lib_gen_getspnam = yes; then LIBS="$LIBS -lgen" @@ -5498,7 +5499,7 @@ fi -echo "$as_me:5501: checking for library containing basename" >&5 +echo "$as_me:5502: checking for library containing basename" >&5 echo $ECHO_N "checking for library containing basename... $ECHO_C" >&6 if test "${ac_cv_search_basename+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5506,7 +5507,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_basename=no cat >conftest.$ac_ext <<_ACEOF -#line 5509 "configure" +#line 5510 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5525,16 +5526,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5528: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5529: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5531: \$? = $ac_status" >&5 + echo "$as_me:5532: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5534: \"$ac_try\"") >&5 + { (eval echo "$as_me:5535: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5537: \$? = $ac_status" >&5 + echo "$as_me:5538: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_basename="none required" else @@ -5546,7 +5547,7 @@ for ac_lib in gen; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5549 "configure" +#line 5550 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5565,16 +5566,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5568: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5569: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5571: \$? = $ac_status" >&5 + echo "$as_me:5572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5574: \"$ac_try\"") >&5 + { (eval echo "$as_me:5575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5577: \$? = $ac_status" >&5 + echo "$as_me:5578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_basename="-l$ac_lib" break @@ -5587,7 +5588,7 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:5590: result: $ac_cv_search_basename" >&5 +echo "$as_me:5591: result: $ac_cv_search_basename" >&5 echo "${ECHO_T}$ac_cv_search_basename" >&6 if test "$ac_cv_search_basename" != no; then test "$ac_cv_search_basename" = "none required" || LIBS="$ac_cv_search_basename $LIBS" @@ -5615,7 +5616,7 @@ withval="$with_zlib" if test "x$withval" = "xno" ; then - { { echo "$as_me:5618: error: *** zlib is required ***" >&5 + { { echo "$as_me:5619: error: *** zlib is required ***" >&5 echo "$as_me: error: *** zlib is required ***" >&2;} { (exit 1); exit 1; }; } fi @@ -5640,7 +5641,7 @@ fi; -echo "$as_me:5643: checking for deflate in -lz" >&5 +echo "$as_me:5644: checking for deflate in -lz" >&5 echo $ECHO_N "checking for deflate in -lz... $ECHO_C" >&6 if test "${ac_cv_lib_z_deflate+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5648,7 +5649,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5651 "configure" +#line 5652 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5667,16 +5668,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5670: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5671: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5673: \$? = $ac_status" >&5 + echo "$as_me:5674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5676: \"$ac_try\"") >&5 + { (eval echo "$as_me:5677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5679: \$? = $ac_status" >&5 + echo "$as_me:5680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_z_deflate=yes else @@ -5687,7 +5688,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5690: result: $ac_cv_lib_z_deflate" >&5 +echo "$as_me:5691: result: $ac_cv_lib_z_deflate" >&5 echo "${ECHO_T}$ac_cv_lib_z_deflate" >&6 if test $ac_cv_lib_z_deflate = yes; then cat >>confdefs.h <&5 + { { echo "$as_me:5701: error: *** zlib missing - please install first or check config.log ***" >&5 echo "$as_me: error: *** zlib missing - please install first or check config.log ***" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:5705: checking for strcasecmp" >&5 +echo "$as_me:5706: checking for strcasecmp" >&5 echo $ECHO_N "checking for strcasecmp... $ECHO_C" >&6 if test "${ac_cv_func_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5711 "configure" +#line 5712 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strcasecmp (); below. */ @@ -5739,16 +5740,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5742: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5743: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5745: \$? = $ac_status" >&5 + echo "$as_me:5746: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5748: \"$ac_try\"") >&5 + { (eval echo "$as_me:5749: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5751: \$? = $ac_status" >&5 + echo "$as_me:5752: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_strcasecmp=yes else @@ -5758,12 +5759,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5761: result: $ac_cv_func_strcasecmp" >&5 +echo "$as_me:5762: result: $ac_cv_func_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_func_strcasecmp" >&6 if test $ac_cv_func_strcasecmp = yes; then : else - echo "$as_me:5766: checking for strcasecmp in -lresolv" >&5 + echo "$as_me:5767: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5771,7 +5772,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5774 "configure" +#line 5775 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5790,16 +5791,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5793: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5794: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5796: \$? = $ac_status" >&5 + echo "$as_me:5797: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5799: \"$ac_try\"") >&5 + { (eval echo "$as_me:5800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5802: \$? = $ac_status" >&5 + echo "$as_me:5803: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -5810,7 +5811,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5813: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:5814: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then LIBS="$LIBS -lresolv" @@ -5818,13 +5819,13 @@ fi -echo "$as_me:5821: checking for utimes" >&5 +echo "$as_me:5822: checking for utimes" >&5 echo $ECHO_N "checking for utimes... $ECHO_C" >&6 if test "${ac_cv_func_utimes+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5827 "configure" +#line 5828 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char utimes (); below. */ @@ -5855,16 +5856,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5858: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5859: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5861: \$? = $ac_status" >&5 + echo "$as_me:5862: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5864: \"$ac_try\"") >&5 + { (eval echo "$as_me:5865: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5867: \$? = $ac_status" >&5 + echo "$as_me:5868: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_utimes=yes else @@ -5874,12 +5875,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5877: result: $ac_cv_func_utimes" >&5 +echo "$as_me:5878: result: $ac_cv_func_utimes" >&5 echo "${ECHO_T}$ac_cv_func_utimes" >&6 if test $ac_cv_func_utimes = yes; then : else - echo "$as_me:5882: checking for utimes in -lc89" >&5 + echo "$as_me:5883: checking for utimes in -lc89" >&5 echo $ECHO_N "checking for utimes in -lc89... $ECHO_C" >&6 if test "${ac_cv_lib_c89_utimes+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5887,7 +5888,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lc89 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5890 "configure" +#line 5891 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5906,16 +5907,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5909: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5910: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5912: \$? = $ac_status" >&5 + echo "$as_me:5913: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5915: \"$ac_try\"") >&5 + { (eval echo "$as_me:5916: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5918: \$? = $ac_status" >&5 + echo "$as_me:5919: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c89_utimes=yes else @@ -5926,7 +5927,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5929: result: $ac_cv_lib_c89_utimes" >&5 +echo "$as_me:5930: result: $ac_cv_lib_c89_utimes" >&5 echo "${ECHO_T}$ac_cv_lib_c89_utimes" >&6 if test $ac_cv_lib_c89_utimes = yes; then cat >>confdefs.h <<\EOF @@ -5941,23 +5942,23 @@ for ac_header in libutil.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5944: checking for $ac_header" >&5 +echo "$as_me:5945: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5950 "configure" +#line 5951 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5954: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5955: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:5960: \$? = $ac_status" >&5 + echo "$as_me:5961: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5976,7 +5977,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5979: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5980: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:5990: checking for library containing login" >&5 echo $ECHO_N "checking for library containing login... $ECHO_C" >&6 if test "${ac_cv_search_login+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5994,7 +5995,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_login=no cat >conftest.$ac_ext <<_ACEOF -#line 5997 "configure" +#line 5998 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6013,16 +6014,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6016: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6017: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6019: \$? = $ac_status" >&5 + echo "$as_me:6020: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6022: \"$ac_try\"") >&5 + { (eval echo "$as_me:6023: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6025: \$? = $ac_status" >&5 + echo "$as_me:6026: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="none required" else @@ -6034,7 +6035,7 @@ for ac_lib in util bsd; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6037 "configure" +#line 6038 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6053,16 +6054,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6056: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6057: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6059: \$? = $ac_status" >&5 + echo "$as_me:6060: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6062: \"$ac_try\"") >&5 + { (eval echo "$as_me:6063: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6065: \$? = $ac_status" >&5 + echo "$as_me:6066: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="-l$ac_lib" break @@ -6075,7 +6076,7 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:6078: result: $ac_cv_search_login" >&5 +echo "$as_me:6079: result: $ac_cv_search_login" >&5 echo "${ECHO_T}$ac_cv_search_login" >&6 if test "$ac_cv_search_login" != no; then test "$ac_cv_search_login" = "none required" || LIBS="$ac_cv_search_login $LIBS" @@ -6088,13 +6089,13 @@ for ac_func in logout updwtmp logwtmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6091: checking for $ac_func" >&5 +echo "$as_me:6092: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6097 "configure" +#line 6098 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6125,16 +6126,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6128: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6129: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6131: \$? = $ac_status" >&5 + echo "$as_me:6132: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6134: \"$ac_try\"") >&5 + { (eval echo "$as_me:6135: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6137: \$? = $ac_status" >&5 + echo "$as_me:6138: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6144,7 +6145,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6147: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6148: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:6161: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6166 "configure" +#line 6167 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6194,16 +6195,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6197: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6198: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6200: \$? = $ac_status" >&5 + echo "$as_me:6201: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6203: \"$ac_try\"") >&5 + { (eval echo "$as_me:6204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6206: \$? = $ac_status" >&5 + echo "$as_me:6207: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6213,7 +6214,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6216: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6217: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:6226: checking for strftime in -lintl" >&5 echo $ECHO_N "checking for strftime in -lintl... $ECHO_C" >&6 if test "${ac_cv_lib_intl_strftime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6230,7 +6231,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6233 "configure" +#line 6234 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6249,16 +6250,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6252: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6253: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6255: \$? = $ac_status" >&5 + echo "$as_me:6256: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6258: \"$ac_try\"") >&5 + { (eval echo "$as_me:6259: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6261: \$? = $ac_status" >&5 + echo "$as_me:6262: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_intl_strftime=yes else @@ -6269,7 +6270,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6272: result: $ac_cv_lib_intl_strftime" >&5 +echo "$as_me:6273: result: $ac_cv_lib_intl_strftime" >&5 echo "${ECHO_T}$ac_cv_lib_intl_strftime" >&6 if test $ac_cv_lib_intl_strftime = yes; then cat >>confdefs.h <<\EOF @@ -6283,10 +6284,10 @@ done # Check for ALTDIRFUNC glob() extension -echo "$as_me:6286: checking for GLOB_ALTDIRFUNC support" >&5 +echo "$as_me:6287: checking for GLOB_ALTDIRFUNC support" >&5 echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6289 "configure" +#line 6290 "configure" #include "confdefs.h" #include @@ -6302,22 +6303,22 @@ #define GLOB_HAS_ALTDIRFUNC 1 EOF - echo "$as_me:6305: result: yes" >&5 + echo "$as_me:6306: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:6310: result: no" >&5 + echo "$as_me:6311: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* # Check for g.gl_matchc glob() extension -echo "$as_me:6317: checking for gl_matchc field in glob_t" >&5 +echo "$as_me:6318: checking for gl_matchc field in glob_t" >&5 echo $ECHO_N "checking for gl_matchc field in glob_t... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6320 "configure" +#line 6321 "configure" #include "confdefs.h" #include @@ -6331,26 +6332,26 @@ #define GLOB_HAS_GL_MATCHC 1 EOF - echo "$as_me:6334: result: yes" >&5 + echo "$as_me:6335: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:6339: result: no" >&5 + echo "$as_me:6340: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* -echo "$as_me:6345: checking whether struct dirent allocates space for d_name" >&5 +echo "$as_me:6346: checking whether struct dirent allocates space for d_name" >&5 echo $ECHO_N "checking whether struct dirent allocates space for d_name... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:6348: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:6349: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 6353 "configure" +#line 6354 "configure" #include "confdefs.h" #include @@ -6359,24 +6360,24 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6362: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6363: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6365: \$? = $ac_status" >&5 + echo "$as_me:6366: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6367: \"$ac_try\"") >&5 + { (eval echo "$as_me:6368: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6370: \$? = $ac_status" >&5 + echo "$as_me:6371: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6372: result: yes" >&5 + echo "$as_me:6373: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:6379: result: no" >&5 + echo "$as_me:6380: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BROKEN_ONE_BYTE_DIRENT_D_NAME 1 @@ -6407,15 +6408,15 @@ LIBS="-lskey $LIBS" SKEY_MSG="yes" - echo "$as_me:6410: checking for s/key support" >&5 + echo "$as_me:6411: checking for s/key support" >&5 echo $ECHO_N "checking for s/key support... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:6413: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:6414: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 6418 "configure" +#line 6419 "configure" #include "confdefs.h" #include @@ -6424,26 +6425,26 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6427: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6428: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6430: \$? = $ac_status" >&5 + echo "$as_me:6431: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6432: \"$ac_try\"") >&5 + { (eval echo "$as_me:6433: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6435: \$? = $ac_status" >&5 + echo "$as_me:6436: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6437: result: yes" >&5 + echo "$as_me:6438: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:6444: result: no" >&5 + echo "$as_me:6445: result: no" >&5 echo "${ECHO_T}no" >&6 - { { echo "$as_me:6446: error: ** Incomplete or missing s/key libraries." >&5 + { { echo "$as_me:6447: error: ** Incomplete or missing s/key libraries." >&5 echo "$as_me: error: ** Incomplete or missing s/key libraries." >&2;} { (exit 1); exit 1; }; } @@ -6487,10 +6488,10 @@ fi LIBWRAP="-lwrap" LIBS="$LIBWRAP $LIBS" - echo "$as_me:6490: checking for libwrap" >&5 + echo "$as_me:6491: checking for libwrap" >&5 echo $ECHO_N "checking for libwrap... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6493 "configure" +#line 6494 "configure" #include "confdefs.h" #include @@ -6505,19 +6506,19 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6509: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6511: \$? = $ac_status" >&5 + echo "$as_me:6512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6514: \"$ac_try\"") >&5 + { (eval echo "$as_me:6515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6517: \$? = $ac_status" >&5 + echo "$as_me:6518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:6520: result: yes" >&5 + echo "$as_me:6521: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define LIBWRAP 1 @@ -6529,7 +6530,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - { { echo "$as_me:6532: error: *** libwrap missing" >&5 + { { echo "$as_me:6533: error: *** libwrap missing" >&5 echo "$as_me: error: *** libwrap missing" >&2;} { (exit 1); exit 1; }; } @@ -6556,13 +6557,13 @@ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6559: checking for $ac_func" >&5 +echo "$as_me:6560: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6565 "configure" +#line 6566 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6593,16 +6594,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6596: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6597: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6599: \$? = $ac_status" >&5 + echo "$as_me:6600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6602: \"$ac_try\"") >&5 + { (eval echo "$as_me:6603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6605: \$? = $ac_status" >&5 + echo "$as_me:6606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6612,7 +6613,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6615: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6616: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:6631: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6636 "configure" +#line 6637 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6664,16 +6665,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6667: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6668: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6670: \$? = $ac_status" >&5 + echo "$as_me:6671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6673: \"$ac_try\"") >&5 + { (eval echo "$as_me:6674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6676: \$? = $ac_status" >&5 + echo "$as_me:6677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6683,7 +6684,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6686: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6687: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <conftest.$ac_ext <<_ACEOF -#line 6698 "configure" +#line 6699 "configure" #include "confdefs.h" #include @@ -6715,16 +6716,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6718: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6719: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6721: \$? = $ac_status" >&5 + echo "$as_me:6722: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6724: \"$ac_try\"") >&5 + { (eval echo "$as_me:6725: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6727: \$? = $ac_status" >&5 + echo "$as_me:6728: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF @@ -6739,7 +6740,7 @@ fi done -echo "$as_me:6742: checking for library containing nanosleep" >&5 +echo "$as_me:6743: checking for library containing nanosleep" >&5 echo $ECHO_N "checking for library containing nanosleep... $ECHO_C" >&6 if test "${ac_cv_search_nanosleep+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6747,7 +6748,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_nanosleep=no cat >conftest.$ac_ext <<_ACEOF -#line 6750 "configure" +#line 6751 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6766,16 +6767,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6769: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6770: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6772: \$? = $ac_status" >&5 + echo "$as_me:6773: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6775: \"$ac_try\"") >&5 + { (eval echo "$as_me:6776: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6778: \$? = $ac_status" >&5 + echo "$as_me:6779: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_nanosleep="none required" else @@ -6787,7 +6788,7 @@ for ac_lib in rt posix4; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6790 "configure" +#line 6791 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6806,16 +6807,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6809: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6810: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6812: \$? = $ac_status" >&5 + echo "$as_me:6813: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6815: \"$ac_try\"") >&5 + { (eval echo "$as_me:6816: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6818: \$? = $ac_status" >&5 + echo "$as_me:6819: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_nanosleep="-l$ac_lib" break @@ -6828,7 +6829,7 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:6831: result: $ac_cv_search_nanosleep" >&5 +echo "$as_me:6832: result: $ac_cv_search_nanosleep" >&5 echo "${ECHO_T}$ac_cv_search_nanosleep" >&6 if test "$ac_cv_search_nanosleep" != no; then test "$ac_cv_search_nanosleep" = "none required" || LIBS="$ac_cv_search_nanosleep $LIBS" @@ -6838,13 +6839,13 @@ fi -echo "$as_me:6841: checking for ANSI C header files" >&5 +echo "$as_me:6842: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6847 "configure" +#line 6848 "configure" #include "confdefs.h" #include #include @@ -6852,13 +6853,13 @@ #include _ACEOF -if { (eval echo "$as_me:6855: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6856: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:6861: \$? = $ac_status" >&5 + echo "$as_me:6862: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6880,7 +6881,7 @@ if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 6883 "configure" +#line 6884 "configure" #include "confdefs.h" #include @@ -6898,7 +6899,7 @@ if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 6901 "configure" +#line 6902 "configure" #include "confdefs.h" #include @@ -6919,7 +6920,7 @@ : else cat >conftest.$ac_ext <<_ACEOF -#line 6922 "configure" +#line 6923 "configure" #include "confdefs.h" #include #if ((' ' & 0x0FF) == 0x020) @@ -6945,15 +6946,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6948: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6949: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6951: \$? = $ac_status" >&5 + echo "$as_me:6952: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6953: \"$ac_try\"") >&5 + { (eval echo "$as_me:6954: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6956: \$? = $ac_status" >&5 + echo "$as_me:6957: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6966,7 +6967,7 @@ fi fi fi -echo "$as_me:6969: result: $ac_cv_header_stdc" >&5 +echo "$as_me:6970: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -6982,28 +6983,28 @@ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6985: checking for $ac_header" >&5 +echo "$as_me:6986: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6991 "configure" +#line 6992 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6997: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6998: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7000: \$? = $ac_status" >&5 + echo "$as_me:7001: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7003: \"$ac_try\"") >&5 + { (eval echo "$as_me:7004: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7006: \$? = $ac_status" >&5 + echo "$as_me:7007: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -7013,7 +7014,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7016: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:7017: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7027: checking whether strsep is declared" >&5 echo $ECHO_N "checking whether strsep is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_strsep+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7032 "configure" +#line 7033 "configure" #include "confdefs.h" $ac_includes_default int @@ -7044,16 +7045,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7047: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7048: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7050: \$? = $ac_status" >&5 + echo "$as_me:7051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7053: \"$ac_try\"") >&5 + { (eval echo "$as_me:7054: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7056: \$? = $ac_status" >&5 + echo "$as_me:7057: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_strsep=yes else @@ -7063,20 +7064,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7066: result: $ac_cv_have_decl_strsep" >&5 +echo "$as_me:7067: result: $ac_cv_have_decl_strsep" >&5 echo "${ECHO_T}$ac_cv_have_decl_strsep" >&6 if test $ac_cv_have_decl_strsep = yes; then for ac_func in strsep do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7073: checking for $ac_func" >&5 +echo "$as_me:7074: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7079 "configure" +#line 7080 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7107,16 +7108,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7110: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7111: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7113: \$? = $ac_status" >&5 + echo "$as_me:7114: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7116: \"$ac_try\"") >&5 + { (eval echo "$as_me:7117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7119: \$? = $ac_status" >&5 + echo "$as_me:7120: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7126,7 +7127,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7129: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7130: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7142: checking whether getrusage is declared" >&5 echo $ECHO_N "checking whether getrusage is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_getrusage+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7147 "configure" +#line 7148 "configure" #include "confdefs.h" $ac_includes_default int @@ -7159,16 +7160,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7162: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7163: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7165: \$? = $ac_status" >&5 + echo "$as_me:7166: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7168: \"$ac_try\"") >&5 + { (eval echo "$as_me:7169: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7171: \$? = $ac_status" >&5 + echo "$as_me:7172: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_getrusage=yes else @@ -7178,20 +7179,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7181: result: $ac_cv_have_decl_getrusage" >&5 +echo "$as_me:7182: result: $ac_cv_have_decl_getrusage" >&5 echo "${ECHO_T}$ac_cv_have_decl_getrusage" >&6 if test $ac_cv_have_decl_getrusage = yes; then for ac_func in getrusage do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7188: checking for $ac_func" >&5 +echo "$as_me:7189: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7194 "configure" +#line 7195 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7222,16 +7223,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7225: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7226: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7228: \$? = $ac_status" >&5 + echo "$as_me:7229: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7231: \"$ac_try\"") >&5 + { (eval echo "$as_me:7232: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7234: \$? = $ac_status" >&5 + echo "$as_me:7235: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7241,7 +7242,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7244: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7245: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7257: checking whether tcsendbreak is declared" >&5 echo $ECHO_N "checking whether tcsendbreak is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_tcsendbreak+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7262 "configure" +#line 7263 "configure" #include "confdefs.h" #include @@ -7275,16 +7276,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7278: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7279: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7281: \$? = $ac_status" >&5 + echo "$as_me:7282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7284: \"$ac_try\"") >&5 + { (eval echo "$as_me:7285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7287: \$? = $ac_status" >&5 + echo "$as_me:7288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_decl_tcsendbreak=yes else @@ -7294,7 +7295,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7297: result: $ac_cv_have_decl_tcsendbreak" >&5 +echo "$as_me:7298: result: $ac_cv_have_decl_tcsendbreak" >&5 echo "${ECHO_T}$ac_cv_have_decl_tcsendbreak" >&6 if test $ac_cv_have_decl_tcsendbreak = yes; then cat >>confdefs.h <<\EOF @@ -7306,13 +7307,13 @@ for ac_func in tcsendbreak do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7309: checking for $ac_func" >&5 +echo "$as_me:7310: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7315 "configure" +#line 7316 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7343,16 +7344,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7346: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7347: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7349: \$? = $ac_status" >&5 + echo "$as_me:7350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7352: \"$ac_try\"") >&5 + { (eval echo "$as_me:7353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7355: \$? = $ac_status" >&5 + echo "$as_me:7356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7362,7 +7363,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7365: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7366: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7381: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7386 "configure" +#line 7387 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7414,16 +7415,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7417: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7418: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7420: \$? = $ac_status" >&5 + echo "$as_me:7421: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7423: \"$ac_try\"") >&5 + { (eval echo "$as_me:7424: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7426: \$? = $ac_status" >&5 + echo "$as_me:7427: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7433,7 +7434,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7436: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7437: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7450: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7455 "configure" +#line 7456 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7483,16 +7484,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7486: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7489: \$? = $ac_status" >&5 + echo "$as_me:7490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7492: \"$ac_try\"") >&5 + { (eval echo "$as_me:7493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7495: \$? = $ac_status" >&5 + echo "$as_me:7496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7502,7 +7503,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7505: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7506: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7519: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7524 "configure" +#line 7525 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7552,16 +7553,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7555: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7556: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7558: \$? = $ac_status" >&5 + echo "$as_me:7559: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7561: \"$ac_try\"") >&5 + { (eval echo "$as_me:7562: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7564: \$? = $ac_status" >&5 + echo "$as_me:7565: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7571,7 +7572,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7574: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7575: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7588: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7593 "configure" +#line 7594 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7621,16 +7622,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7624: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7625: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7627: \$? = $ac_status" >&5 + echo "$as_me:7628: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7630: \"$ac_try\"") >&5 + { (eval echo "$as_me:7631: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7633: \$? = $ac_status" >&5 + echo "$as_me:7634: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7640,7 +7641,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7643: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7644: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7657: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7662 "configure" +#line 7663 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7690,16 +7691,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7693: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7694: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7696: \$? = $ac_status" >&5 + echo "$as_me:7697: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7699: \"$ac_try\"") >&5 + { (eval echo "$as_me:7700: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7702: \$? = $ac_status" >&5 + echo "$as_me:7703: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7709,7 +7710,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7712: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7713: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7723: checking for daemon" >&5 echo $ECHO_N "checking for daemon... $ECHO_C" >&6 if test "${ac_cv_func_daemon+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7728 "configure" +#line 7729 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char daemon (); below. */ @@ -7756,16 +7757,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7759: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7760: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7762: \$? = $ac_status" >&5 + echo "$as_me:7763: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7765: \"$ac_try\"") >&5 + { (eval echo "$as_me:7766: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7768: \$? = $ac_status" >&5 + echo "$as_me:7769: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_daemon=yes else @@ -7775,7 +7776,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7778: result: $ac_cv_func_daemon" >&5 +echo "$as_me:7779: result: $ac_cv_func_daemon" >&5 echo "${ECHO_T}$ac_cv_func_daemon" >&6 if test $ac_cv_func_daemon = yes; then cat >>confdefs.h <<\EOF @@ -7783,7 +7784,7 @@ EOF else - echo "$as_me:7786: checking for daemon in -lbsd" >&5 + echo "$as_me:7787: checking for daemon in -lbsd" >&5 echo $ECHO_N "checking for daemon in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_daemon+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7791,7 +7792,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7794 "configure" +#line 7795 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -7810,16 +7811,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7813: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7814: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7816: \$? = $ac_status" >&5 + echo "$as_me:7817: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7819: \"$ac_try\"") >&5 + { (eval echo "$as_me:7820: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7822: \$? = $ac_status" >&5 + echo "$as_me:7823: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_daemon=yes else @@ -7830,7 +7831,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:7833: result: $ac_cv_lib_bsd_daemon" >&5 +echo "$as_me:7834: result: $ac_cv_lib_bsd_daemon" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_daemon" >&6 if test $ac_cv_lib_bsd_daemon = yes; then LIBS="$LIBS -lbsd"; cat >>confdefs.h <<\EOF @@ -7841,13 +7842,13 @@ fi -echo "$as_me:7844: checking for getpagesize" >&5 +echo "$as_me:7845: checking for getpagesize" >&5 echo $ECHO_N "checking for getpagesize... $ECHO_C" >&6 if test "${ac_cv_func_getpagesize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7850 "configure" +#line 7851 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpagesize (); below. */ @@ -7878,16 +7879,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7881: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7882: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7884: \$? = $ac_status" >&5 + echo "$as_me:7885: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7887: \"$ac_try\"") >&5 + { (eval echo "$as_me:7888: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7890: \$? = $ac_status" >&5 + echo "$as_me:7891: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpagesize=yes else @@ -7897,7 +7898,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7900: result: $ac_cv_func_getpagesize" >&5 +echo "$as_me:7901: result: $ac_cv_func_getpagesize" >&5 echo "${ECHO_T}$ac_cv_func_getpagesize" >&6 if test $ac_cv_func_getpagesize = yes; then cat >>confdefs.h <<\EOF @@ -7905,7 +7906,7 @@ EOF else - echo "$as_me:7908: checking for getpagesize in -lucb" >&5 + echo "$as_me:7909: checking for getpagesize in -lucb" >&5 echo $ECHO_N "checking for getpagesize in -lucb... $ECHO_C" >&6 if test "${ac_cv_lib_ucb_getpagesize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7913,7 +7914,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lucb $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7916 "configure" +#line 7917 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -7932,16 +7933,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7935: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7936: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7938: \$? = $ac_status" >&5 + echo "$as_me:7939: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7941: \"$ac_try\"") >&5 + { (eval echo "$as_me:7942: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7944: \$? = $ac_status" >&5 + echo "$as_me:7945: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ucb_getpagesize=yes else @@ -7952,7 +7953,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:7955: result: $ac_cv_lib_ucb_getpagesize" >&5 +echo "$as_me:7956: result: $ac_cv_lib_ucb_getpagesize" >&5 echo "${ECHO_T}$ac_cv_lib_ucb_getpagesize" >&6 if test $ac_cv_lib_ucb_getpagesize = yes; then LIBS="$LIBS -lucb"; cat >>confdefs.h <<\EOF @@ -7965,15 +7966,15 @@ # Check for broken snprintf if test "x$ac_cv_func_snprintf" = "xyes" ; then - echo "$as_me:7968: checking whether snprintf correctly terminates long strings" >&5 + echo "$as_me:7969: checking whether snprintf correctly terminates long strings" >&5 echo $ECHO_N "checking whether snprintf correctly terminates long strings... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:7971: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:7972: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 7976 "configure" +#line 7977 "configure" #include "confdefs.h" #include @@ -7981,30 +7982,30 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7984: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7985: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7987: \$? = $ac_status" >&5 + echo "$as_me:7988: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7989: \"$ac_try\"") >&5 + { (eval echo "$as_me:7990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7992: \$? = $ac_status" >&5 + echo "$as_me:7993: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:7994: result: yes" >&5 + echo "$as_me:7995: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8001: result: no" >&5 + echo "$as_me:8002: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define BROKEN_SNPRINTF 1 EOF - { echo "$as_me:8007: WARNING: ****** Your snprintf() function is broken, complain to your vendor" >&5 + { echo "$as_me:8008: WARNING: ****** Your snprintf() function is broken, complain to your vendor" >&5 echo "$as_me: WARNING: ****** Your snprintf() function is broken, complain to your vendor" >&2;} fi @@ -8013,11 +8014,11 @@ fi if test "x$ac_cv_func_mkdtemp" = "xyes" ; then -echo "$as_me:8016: checking for (overly) strict mkstemp" >&5 +echo "$as_me:8017: checking for (overly) strict mkstemp" >&5 echo $ECHO_N "checking for (overly) strict mkstemp... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - echo "$as_me:8020: result: yes" >&5 + echo "$as_me:8021: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define HAVE_STRICT_MKSTEMP 1 @@ -8025,7 +8026,7 @@ else cat >conftest.$ac_ext <<_ACEOF -#line 8028 "configure" +#line 8029 "configure" #include "confdefs.h" #include @@ -8037,18 +8038,18 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8040: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8041: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8043: \$? = $ac_status" >&5 + echo "$as_me:8044: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8045: \"$ac_try\"") >&5 + { (eval echo "$as_me:8046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8048: \$? = $ac_status" >&5 + echo "$as_me:8049: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:8051: result: no" >&5 + echo "$as_me:8052: result: no" >&5 echo "${ECHO_T}no" >&6 else @@ -8056,7 +8057,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8059: result: yes" >&5 + echo "$as_me:8060: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define HAVE_STRICT_MKSTEMP 1 @@ -8068,15 +8069,15 @@ fi if test ! -z "$check_for_openpty_ctty_bug"; then - echo "$as_me:8071: checking if openpty correctly handles controlling tty" >&5 + echo "$as_me:8072: checking if openpty correctly handles controlling tty" >&5 echo $ECHO_N "checking if openpty correctly handles controlling tty... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:8074: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:8075: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 8079 "configure" +#line 8080 "configure" #include "confdefs.h" #include @@ -8113,18 +8114,18 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8116: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8117: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8119: \$? = $ac_status" >&5 + echo "$as_me:8120: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8121: \"$ac_try\"") >&5 + { (eval echo "$as_me:8122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8124: \$? = $ac_status" >&5 + echo "$as_me:8125: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:8127: result: yes" >&5 + echo "$as_me:8128: result: yes" >&5 echo "${ECHO_T}yes" >&6 else @@ -8132,7 +8133,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8135: result: no" >&5 + echo "$as_me:8136: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\EOF #define SSHD_ACQUIRES_CTTY 1 @@ -8143,14 +8144,14 @@ fi fi -echo "$as_me:8146: checking whether getpgrp takes no argument" >&5 +echo "$as_me:8147: checking whether getpgrp takes no argument" >&5 echo $ECHO_N "checking whether getpgrp takes no argument... $ECHO_C" >&6 if test "${ac_cv_func_getpgrp_void+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else # Use it with a single arg. cat >conftest.$ac_ext <<_ACEOF -#line 8153 "configure" +#line 8154 "configure" #include "confdefs.h" $ac_includes_default int @@ -8162,16 +8163,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8165: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8166: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8168: \$? = $ac_status" >&5 + echo "$as_me:8169: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8171: \"$ac_try\"") >&5 + { (eval echo "$as_me:8172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8174: \$? = $ac_status" >&5 + echo "$as_me:8175: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_1=yes else @@ -8182,7 +8183,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext # Use it with no arg. cat >conftest.$ac_ext <<_ACEOF -#line 8185 "configure" +#line 8186 "configure" #include "confdefs.h" $ac_includes_default int @@ -8194,16 +8195,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8197: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8198: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8200: \$? = $ac_status" >&5 + echo "$as_me:8201: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8203: \"$ac_try\"") >&5 + { (eval echo "$as_me:8204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8206: \$? = $ac_status" >&5 + echo "$as_me:8207: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_0=yes else @@ -8217,12 +8218,12 @@ yes:no) ac_cv_func_getpgrp_void=yes;; no:yes) ac_cv_func_getpgrp_void=false;; *) if test "$cross_compiling" = yes; then - { { echo "$as_me:8220: error: cannot check getpgrp if cross compiling" >&5 + { { echo "$as_me:8221: error: cannot check getpgrp if cross compiling" >&5 echo "$as_me: error: cannot check getpgrp if cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 8225 "configure" +#line 8226 "configure" #include "confdefs.h" $ac_includes_default @@ -8276,15 +8277,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8279: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8280: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8282: \$? = $ac_status" >&5 + echo "$as_me:8283: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8284: \"$ac_try\"") >&5 + { (eval echo "$as_me:8285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8287: \$? = $ac_status" >&5 + echo "$as_me:8288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpgrp_void=yes else @@ -8298,7 +8299,7 @@ esac # $ac_func_getpgrp_0:$ac_func_getpgrp_1 fi -echo "$as_me:8301: result: $ac_cv_func_getpgrp_void" >&5 +echo "$as_me:8302: result: $ac_cv_func_getpgrp_void" >&5 echo "${ECHO_T}$ac_cv_func_getpgrp_void" >&6 if test $ac_cv_func_getpgrp_void = yes; then @@ -8317,12 +8318,12 @@ if test "x$withval" != "xno" ; then if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then - { { echo "$as_me:8320: error: PAM headers not found" >&5 + { { echo "$as_me:8321: error: PAM headers not found" >&5 echo "$as_me: error: PAM headers not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:8325: checking for dlopen in -ldl" >&5 +echo "$as_me:8326: checking for dlopen in -ldl" >&5 echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8330,7 +8331,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8333 "configure" +#line 8334 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8349,16 +8350,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8352: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8355: \$? = $ac_status" >&5 + echo "$as_me:8356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8358: \"$ac_try\"") >&5 + { (eval echo "$as_me:8359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8361: \$? = $ac_status" >&5 + echo "$as_me:8362: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else @@ -8369,7 +8370,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8372: result: $ac_cv_lib_dl_dlopen" >&5 +echo "$as_me:8373: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then cat >>confdefs.h <&5 +echo "$as_me:8384: checking for pam_set_item in -lpam" >&5 echo $ECHO_N "checking for pam_set_item in -lpam... $ECHO_C" >&6 if test "${ac_cv_lib_pam_pam_set_item+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8388,7 +8389,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lpam $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8391 "configure" +#line 8392 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8407,16 +8408,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8410: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8411: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8413: \$? = $ac_status" >&5 + echo "$as_me:8414: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8416: \"$ac_try\"") >&5 + { (eval echo "$as_me:8417: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8419: \$? = $ac_status" >&5 + echo "$as_me:8420: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pam_pam_set_item=yes else @@ -8427,7 +8428,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8430: result: $ac_cv_lib_pam_pam_set_item" >&5 +echo "$as_me:8431: result: $ac_cv_lib_pam_pam_set_item" >&5 echo "${ECHO_T}$ac_cv_lib_pam_pam_set_item" >&6 if test $ac_cv_lib_pam_pam_set_item = yes; then cat >>confdefs.h <&5 + { { echo "$as_me:8441: error: *** libpam missing" >&5 echo "$as_me: error: *** libpam missing" >&2;} { (exit 1); exit 1; }; } fi @@ -8445,13 +8446,13 @@ for ac_func in pam_getenvlist do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:8448: checking for $ac_func" >&5 +echo "$as_me:8449: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8454 "configure" +#line 8455 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8482,16 +8483,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8485: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8486: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8488: \$? = $ac_status" >&5 + echo "$as_me:8489: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8491: \"$ac_try\"") >&5 + { (eval echo "$as_me:8492: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8494: \$? = $ac_status" >&5 + echo "$as_me:8495: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8501,7 +8502,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8504: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8505: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:8518: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8523 "configure" +#line 8524 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -8551,16 +8552,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8554: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8555: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8557: \$? = $ac_status" >&5 + echo "$as_me:8558: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8560: \"$ac_try\"") >&5 + { (eval echo "$as_me:8561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8563: \$? = $ac_status" >&5 + echo "$as_me:8564: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -8570,7 +8571,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:8573: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:8574: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 + echo "$as_me:8604: checking whether pam_strerror takes only one argument" >&5 echo $ECHO_N "checking whether pam_strerror takes only one argument... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 8606 "configure" +#line 8607 "configure" #include "confdefs.h" #include @@ -8618,18 +8619,18 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8621: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8622: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8624: \$? = $ac_status" >&5 + echo "$as_me:8625: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8627: \"$ac_try\"") >&5 + { (eval echo "$as_me:8628: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8630: \$? = $ac_status" >&5 + echo "$as_me:8631: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:8632: result: no" >&5 + echo "$as_me:8633: result: no" >&5 echo "${ECHO_T}no" >&6 else echo "$as_me: failed program was:" >&5 @@ -8639,7 +8640,7 @@ #define HAVE_OLD_PAM 1 EOF - echo "$as_me:8642: result: yes" >&5 + echo "$as_me:8643: result: yes" >&5 echo "${ECHO_T}yes" >&6 PAM_MSG="yes (old library)" @@ -8651,7 +8652,7 @@ # because the system crypt() is more featureful. if test "x$check_for_libcrypt_before" = "x1"; then -echo "$as_me:8654: checking for crypt in -lcrypt" >&5 +echo "$as_me:8655: checking for crypt in -lcrypt" >&5 echo $ECHO_N "checking for crypt in -lcrypt... $ECHO_C" >&6 if test "${ac_cv_lib_crypt_crypt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8659,7 +8660,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lcrypt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8662 "configure" +#line 8663 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8678,16 +8679,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8681: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8682: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8684: \$? = $ac_status" >&5 + echo "$as_me:8685: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8687: \"$ac_try\"") >&5 + { (eval echo "$as_me:8688: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8690: \$? = $ac_status" >&5 + echo "$as_me:8691: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_crypt_crypt=yes else @@ -8698,7 +8699,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8701: result: $ac_cv_lib_crypt_crypt" >&5 +echo "$as_me:8702: result: $ac_cv_lib_crypt_crypt" >&5 echo "${ECHO_T}$ac_cv_lib_crypt_crypt" >&6 if test $ac_cv_lib_crypt_crypt = yes; then cat >>confdefs.h <conftest.$ac_ext <<_ACEOF -#line 8746 "configure" +#line 8747 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8762,16 +8763,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8765: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8766: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8768: \$? = $ac_status" >&5 + echo "$as_me:8769: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8771: \"$ac_try\"") >&5 + { (eval echo "$as_me:8772: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8774: \$? = $ac_status" >&5 + echo "$as_me:8775: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define HAVE_OPENSSL 1 @@ -8788,7 +8789,7 @@ fi CPPFLAGS="-I/usr/local/ssl/include ${saved_CPPFLAGS}" cat >conftest.$ac_ext <<_ACEOF -#line 8791 "configure" +#line 8792 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8807,16 +8808,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8810: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8811: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8813: \$? = $ac_status" >&5 + echo "$as_me:8814: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8816: \"$ac_try\"") >&5 + { (eval echo "$as_me:8817: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8819: \$? = $ac_status" >&5 + echo "$as_me:8820: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define HAVE_OPENSSL 1 @@ -8826,7 +8827,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - { { echo "$as_me:8829: error: *** Can't find recent OpenSSL libcrypto (see config.log for details) ***" >&5 + { { echo "$as_me:8830: error: *** Can't find recent OpenSSL libcrypto (see config.log for details) ***" >&5 echo "$as_me: error: *** Can't find recent OpenSSL libcrypto (see config.log for details) ***" >&2;} { (exit 1); exit 1; }; } @@ -8837,15 +8838,15 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext # Determine OpenSSL header version -echo "$as_me:8840: checking OpenSSL header version" >&5 +echo "$as_me:8841: checking OpenSSL header version" >&5 echo $ECHO_N "checking OpenSSL header version... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:8843: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:8844: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 8848 "configure" +#line 8849 "configure" #include "confdefs.h" #include @@ -8868,19 +8869,19 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8871: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8872: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8874: \$? = $ac_status" >&5 + echo "$as_me:8875: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8876: \"$ac_try\"") >&5 + { (eval echo "$as_me:8877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8879: \$? = $ac_status" >&5 + echo "$as_me:8880: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ssl_header_ver=`cat conftest.sslincver` - echo "$as_me:8883: result: $ssl_header_ver" >&5 + echo "$as_me:8884: result: $ssl_header_ver" >&5 echo "${ECHO_T}$ssl_header_ver" >&6 else @@ -8888,9 +8889,9 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8891: result: not found" >&5 + echo "$as_me:8892: result: not found" >&5 echo "${ECHO_T}not found" >&6 - { { echo "$as_me:8893: error: OpenSSL version header not found." >&5 + { { echo "$as_me:8894: error: OpenSSL version header not found." >&5 echo "$as_me: error: OpenSSL version header not found." >&2;} { (exit 1); exit 1; }; } @@ -8899,15 +8900,15 @@ fi # Determine OpenSSL library version -echo "$as_me:8902: checking OpenSSL library version" >&5 +echo "$as_me:8903: checking OpenSSL library version" >&5 echo $ECHO_N "checking OpenSSL library version... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:8905: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:8906: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 8910 "configure" +#line 8911 "configure" #include "confdefs.h" #include @@ -8931,19 +8932,19 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8934: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8935: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8937: \$? = $ac_status" >&5 + echo "$as_me:8938: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8939: \"$ac_try\"") >&5 + { (eval echo "$as_me:8940: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8942: \$? = $ac_status" >&5 + echo "$as_me:8943: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ssl_library_ver=`cat conftest.ssllibver` - echo "$as_me:8946: result: $ssl_library_ver" >&5 + echo "$as_me:8947: result: $ssl_library_ver" >&5 echo "${ECHO_T}$ssl_library_ver" >&6 else @@ -8951,9 +8952,9 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8954: result: not found" >&5 + echo "$as_me:8955: result: not found" >&5 echo "${ECHO_T}not found" >&6 - { { echo "$as_me:8956: error: OpenSSL library not found." >&5 + { { echo "$as_me:8957: error: OpenSSL library not found." >&5 echo "$as_me: error: OpenSSL library not found." >&2;} { (exit 1); exit 1; }; } @@ -8962,15 +8963,15 @@ fi # Sanity check OpenSSL headers -echo "$as_me:8965: checking whether OpenSSL's headers match the library" >&5 +echo "$as_me:8966: checking whether OpenSSL's headers match the library" >&5 echo $ECHO_N "checking whether OpenSSL's headers match the library... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:8968: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:8969: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 8973 "configure" +#line 8974 "configure" #include "confdefs.h" #include @@ -8979,18 +8980,18 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8982: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8983: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8985: \$? = $ac_status" >&5 + echo "$as_me:8986: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8987: \"$ac_try\"") >&5 + { (eval echo "$as_me:8988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8990: \$? = $ac_status" >&5 + echo "$as_me:8991: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:8993: result: yes" >&5 + echo "$as_me:8994: result: yes" >&5 echo "${ECHO_T}yes" >&6 else @@ -8998,9 +8999,9 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:9001: result: no" >&5 + echo "$as_me:9002: result: no" >&5 echo "${ECHO_T}no" >&6 - { { echo "$as_me:9003: error: Your OpenSSL headers do not match your library. + { { echo "$as_me:9004: error: Your OpenSSL headers do not match your library. Check config.log for details. Also see contrib/findssl.sh for help identifying header/library mismatches." >&5 echo "$as_me: error: Your OpenSSL headers do not match your library. @@ -9015,7 +9016,7 @@ # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the # version in OpenSSL. Skip this for PAM if test "x$check_for_libcrypt_later" = "x1"; then - echo "$as_me:9018: checking for crypt in -lcrypt" >&5 + echo "$as_me:9019: checking for crypt in -lcrypt" >&5 echo $ECHO_N "checking for crypt in -lcrypt... $ECHO_C" >&6 if test "${ac_cv_lib_crypt_crypt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9023,7 +9024,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lcrypt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 9026 "configure" +#line 9027 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -9042,16 +9043,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9045: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9046: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9048: \$? = $ac_status" >&5 + echo "$as_me:9049: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9051: \"$ac_try\"") >&5 + { (eval echo "$as_me:9052: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9054: \$? = $ac_status" >&5 + echo "$as_me:9055: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_crypt_crypt=yes else @@ -9062,7 +9063,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:9065: result: $ac_cv_lib_crypt_crypt" >&5 +echo "$as_me:9066: result: $ac_cv_lib_crypt_crypt" >&5 echo "${ECHO_T}$ac_cv_lib_crypt_crypt" >&6 if test $ac_cv_lib_crypt_crypt = yes; then LIBS="$LIBS -lcrypt" @@ -9073,15 +9074,15 @@ ### Configure cryptographic random number support # Check wheter OpenSSL seeds itself -echo "$as_me:9076: checking whether OpenSSL's PRNG is internally seeded" >&5 +echo "$as_me:9077: checking whether OpenSSL's PRNG is internally seeded" >&5 echo $ECHO_N "checking whether OpenSSL's PRNG is internally seeded... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:9079: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:9080: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 9084 "configure" +#line 9085 "configure" #include "confdefs.h" #include @@ -9090,19 +9091,19 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:9093: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9094: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9096: \$? = $ac_status" >&5 + echo "$as_me:9097: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:9098: \"$ac_try\"") >&5 + { (eval echo "$as_me:9099: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9101: \$? = $ac_status" >&5 + echo "$as_me:9102: \$? = $ac_status" >&5 (exit $ac_status); }; }; then OPENSSL_SEEDS_ITSELF=yes - echo "$as_me:9105: result: yes" >&5 + echo "$as_me:9106: result: yes" >&5 echo "${ECHO_T}yes" >&6 else @@ -9110,7 +9111,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:9113: result: no" >&5 + echo "$as_me:9114: result: no" >&5 echo "${ECHO_T}no" >&6 # Default to use of the rand helper if OpenSSL doesn't # seed itself @@ -9130,7 +9131,7 @@ # Force use of OpenSSL's internal RNG, even if # the previous test showed it to be unseeded. if test -z "$OPENSSL_SEEDS_ITSELF" ; then - { echo "$as_me:9133: WARNING: *** Forcing use of OpenSSL's non-self-seeding PRNG" >&5 + { echo "$as_me:9134: WARNING: *** Forcing use of OpenSSL's non-self-seeding PRNG" >&5 echo "$as_me: WARNING: *** Forcing use of OpenSSL's non-self-seeding PRNG" >&2;} OPENSSL_SEEDS_ITSELF=yes USE_RAND_HELPER="" @@ -9171,7 +9172,7 @@ [0-9]*) ;; *) - { { echo "$as_me:9174: error: You must specify a numeric port number for --with-prngd-port" >&5 + { { echo "$as_me:9175: error: You must specify a numeric port number for --with-prngd-port" >&5 echo "$as_me: error: You must specify a numeric port number for --with-prngd-port" >&2;} { (exit 1); exit 1; }; } ;; @@ -9202,7 +9203,7 @@ /*) ;; *) - { { echo "$as_me:9205: error: You must specify an absolute path to the entropy socket" >&5 + { { echo "$as_me:9206: error: You must specify an absolute path to the entropy socket" >&5 echo "$as_me: error: You must specify an absolute path to the entropy socket" >&2;} { (exit 1); exit 1; }; } ;; @@ -9210,12 +9211,12 @@ if test ! -z "$withval" ; then if test ! -z "$PRNGD_PORT" ; then - { { echo "$as_me:9213: error: You may not specify both a PRNGD/EGD port and socket" >&5 + { { echo "$as_me:9214: error: You may not specify both a PRNGD/EGD port and socket" >&5 echo "$as_me: error: You may not specify both a PRNGD/EGD port and socket" >&2;} { (exit 1); exit 1; }; } fi if test ! -r "$withval" ; then - { echo "$as_me:9218: WARNING: Entropy socket is not readable" >&5 + { echo "$as_me:9219: WARNING: Entropy socket is not readable" >&5 echo "$as_me: WARNING: Entropy socket is not readable" >&2;} fi PRNGD_SOCKET="$withval" @@ -9229,7 +9230,7 @@ # Check for existing socket only if we don't have a random device already if test "$USE_RAND_HELPER" = yes ; then - echo "$as_me:9232: checking for PRNGD/EGD socket" >&5 + echo "$as_me:9233: checking for PRNGD/EGD socket" >&5 echo $ECHO_N "checking for PRNGD/EGD socket... $ECHO_C" >&6 # Insert other locations here for sock in /var/run/egd-pool /dev/egd-pool /etc/entropy; do @@ -9243,10 +9244,10 @@ fi done if test ! -z "$PRNGD_SOCKET" ; then - echo "$as_me:9246: result: $PRNGD_SOCKET" >&5 + echo "$as_me:9247: result: $PRNGD_SOCKET" >&5 echo "${ECHO_T}$PRNGD_SOCKET" >&6 else - echo "$as_me:9249: result: not found" >&5 + echo "$as_me:9250: result: not found" >&5 echo "${ECHO_T}not found" >&6 fi fi @@ -9302,7 +9303,7 @@ # Extract the first word of "ls", so it can be a program name with args. set dummy ls; ac_word=$2 -echo "$as_me:9305: checking for $ac_word" >&5 +echo "$as_me:9306: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_LS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9319,7 +9320,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_LS="$ac_dir/$ac_word" - echo "$as_me:9322: found $ac_dir/$ac_word" >&5 + echo "$as_me:9323: found $ac_dir/$ac_word" >&5 break fi done @@ -9330,10 +9331,10 @@ PROG_LS=$ac_cv_path_PROG_LS if test -n "$PROG_LS"; then - echo "$as_me:9333: result: $PROG_LS" >&5 + echo "$as_me:9334: result: $PROG_LS" >&5 echo "${ECHO_T}$PROG_LS" >&6 else - echo "$as_me:9336: result: no" >&5 + echo "$as_me:9337: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9343,7 +9344,7 @@ # Extract the first word of "netstat", so it can be a program name with args. set dummy netstat; ac_word=$2 -echo "$as_me:9346: checking for $ac_word" >&5 +echo "$as_me:9347: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_NETSTAT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9360,7 +9361,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_NETSTAT="$ac_dir/$ac_word" - echo "$as_me:9363: found $ac_dir/$ac_word" >&5 + echo "$as_me:9364: found $ac_dir/$ac_word" >&5 break fi done @@ -9371,10 +9372,10 @@ PROG_NETSTAT=$ac_cv_path_PROG_NETSTAT if test -n "$PROG_NETSTAT"; then - echo "$as_me:9374: result: $PROG_NETSTAT" >&5 + echo "$as_me:9375: result: $PROG_NETSTAT" >&5 echo "${ECHO_T}$PROG_NETSTAT" >&6 else - echo "$as_me:9377: result: no" >&5 + echo "$as_me:9378: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9384,7 +9385,7 @@ # Extract the first word of "arp", so it can be a program name with args. set dummy arp; ac_word=$2 -echo "$as_me:9387: checking for $ac_word" >&5 +echo "$as_me:9388: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_ARP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9401,7 +9402,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_ARP="$ac_dir/$ac_word" - echo "$as_me:9404: found $ac_dir/$ac_word" >&5 + echo "$as_me:9405: found $ac_dir/$ac_word" >&5 break fi done @@ -9412,10 +9413,10 @@ PROG_ARP=$ac_cv_path_PROG_ARP if test -n "$PROG_ARP"; then - echo "$as_me:9415: result: $PROG_ARP" >&5 + echo "$as_me:9416: result: $PROG_ARP" >&5 echo "${ECHO_T}$PROG_ARP" >&6 else - echo "$as_me:9418: result: no" >&5 + echo "$as_me:9419: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9425,7 +9426,7 @@ # Extract the first word of "ifconfig", so it can be a program name with args. set dummy ifconfig; ac_word=$2 -echo "$as_me:9428: checking for $ac_word" >&5 +echo "$as_me:9429: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_IFCONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9442,7 +9443,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_IFCONFIG="$ac_dir/$ac_word" - echo "$as_me:9445: found $ac_dir/$ac_word" >&5 + echo "$as_me:9446: found $ac_dir/$ac_word" >&5 break fi done @@ -9453,10 +9454,10 @@ PROG_IFCONFIG=$ac_cv_path_PROG_IFCONFIG if test -n "$PROG_IFCONFIG"; then - echo "$as_me:9456: result: $PROG_IFCONFIG" >&5 + echo "$as_me:9457: result: $PROG_IFCONFIG" >&5 echo "${ECHO_T}$PROG_IFCONFIG" >&6 else - echo "$as_me:9459: result: no" >&5 + echo "$as_me:9460: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9466,7 +9467,7 @@ # Extract the first word of "jstat", so it can be a program name with args. set dummy jstat; ac_word=$2 -echo "$as_me:9469: checking for $ac_word" >&5 +echo "$as_me:9470: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_JSTAT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9483,7 +9484,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_JSTAT="$ac_dir/$ac_word" - echo "$as_me:9486: found $ac_dir/$ac_word" >&5 + echo "$as_me:9487: found $ac_dir/$ac_word" >&5 break fi done @@ -9494,10 +9495,10 @@ PROG_JSTAT=$ac_cv_path_PROG_JSTAT if test -n "$PROG_JSTAT"; then - echo "$as_me:9497: result: $PROG_JSTAT" >&5 + echo "$as_me:9498: result: $PROG_JSTAT" >&5 echo "${ECHO_T}$PROG_JSTAT" >&6 else - echo "$as_me:9500: result: no" >&5 + echo "$as_me:9501: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9507,7 +9508,7 @@ # Extract the first word of "ps", so it can be a program name with args. set dummy ps; ac_word=$2 -echo "$as_me:9510: checking for $ac_word" >&5 +echo "$as_me:9511: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_PS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9524,7 +9525,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_PS="$ac_dir/$ac_word" - echo "$as_me:9527: found $ac_dir/$ac_word" >&5 + echo "$as_me:9528: found $ac_dir/$ac_word" >&5 break fi done @@ -9535,10 +9536,10 @@ PROG_PS=$ac_cv_path_PROG_PS if test -n "$PROG_PS"; then - echo "$as_me:9538: result: $PROG_PS" >&5 + echo "$as_me:9539: result: $PROG_PS" >&5 echo "${ECHO_T}$PROG_PS" >&6 else - echo "$as_me:9541: result: no" >&5 + echo "$as_me:9542: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9548,7 +9549,7 @@ # Extract the first word of "sar", so it can be a program name with args. set dummy sar; ac_word=$2 -echo "$as_me:9551: checking for $ac_word" >&5 +echo "$as_me:9552: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_SAR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9565,7 +9566,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_SAR="$ac_dir/$ac_word" - echo "$as_me:9568: found $ac_dir/$ac_word" >&5 + echo "$as_me:9569: found $ac_dir/$ac_word" >&5 break fi done @@ -9576,10 +9577,10 @@ PROG_SAR=$ac_cv_path_PROG_SAR if test -n "$PROG_SAR"; then - echo "$as_me:9579: result: $PROG_SAR" >&5 + echo "$as_me:9580: result: $PROG_SAR" >&5 echo "${ECHO_T}$PROG_SAR" >&6 else - echo "$as_me:9582: result: no" >&5 + echo "$as_me:9583: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9589,7 +9590,7 @@ # Extract the first word of "w", so it can be a program name with args. set dummy w; ac_word=$2 -echo "$as_me:9592: checking for $ac_word" >&5 +echo "$as_me:9593: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_W+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9606,7 +9607,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_W="$ac_dir/$ac_word" - echo "$as_me:9609: found $ac_dir/$ac_word" >&5 + echo "$as_me:9610: found $ac_dir/$ac_word" >&5 break fi done @@ -9617,10 +9618,10 @@ PROG_W=$ac_cv_path_PROG_W if test -n "$PROG_W"; then - echo "$as_me:9620: result: $PROG_W" >&5 + echo "$as_me:9621: result: $PROG_W" >&5 echo "${ECHO_T}$PROG_W" >&6 else - echo "$as_me:9623: result: no" >&5 + echo "$as_me:9624: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9630,7 +9631,7 @@ # Extract the first word of "who", so it can be a program name with args. set dummy who; ac_word=$2 -echo "$as_me:9633: checking for $ac_word" >&5 +echo "$as_me:9634: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_WHO+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9647,7 +9648,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_WHO="$ac_dir/$ac_word" - echo "$as_me:9650: found $ac_dir/$ac_word" >&5 + echo "$as_me:9651: found $ac_dir/$ac_word" >&5 break fi done @@ -9658,10 +9659,10 @@ PROG_WHO=$ac_cv_path_PROG_WHO if test -n "$PROG_WHO"; then - echo "$as_me:9661: result: $PROG_WHO" >&5 + echo "$as_me:9662: result: $PROG_WHO" >&5 echo "${ECHO_T}$PROG_WHO" >&6 else - echo "$as_me:9664: result: no" >&5 + echo "$as_me:9665: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9671,7 +9672,7 @@ # Extract the first word of "last", so it can be a program name with args. set dummy last; ac_word=$2 -echo "$as_me:9674: checking for $ac_word" >&5 +echo "$as_me:9675: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_LAST+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9688,7 +9689,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_LAST="$ac_dir/$ac_word" - echo "$as_me:9691: found $ac_dir/$ac_word" >&5 + echo "$as_me:9692: found $ac_dir/$ac_word" >&5 break fi done @@ -9699,10 +9700,10 @@ PROG_LAST=$ac_cv_path_PROG_LAST if test -n "$PROG_LAST"; then - echo "$as_me:9702: result: $PROG_LAST" >&5 + echo "$as_me:9703: result: $PROG_LAST" >&5 echo "${ECHO_T}$PROG_LAST" >&6 else - echo "$as_me:9705: result: no" >&5 + echo "$as_me:9706: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9712,7 +9713,7 @@ # Extract the first word of "lastlog", so it can be a program name with args. set dummy lastlog; ac_word=$2 -echo "$as_me:9715: checking for $ac_word" >&5 +echo "$as_me:9716: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_LASTLOG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9729,7 +9730,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_LASTLOG="$ac_dir/$ac_word" - echo "$as_me:9732: found $ac_dir/$ac_word" >&5 + echo "$as_me:9733: found $ac_dir/$ac_word" >&5 break fi done @@ -9740,10 +9741,10 @@ PROG_LASTLOG=$ac_cv_path_PROG_LASTLOG if test -n "$PROG_LASTLOG"; then - echo "$as_me:9743: result: $PROG_LASTLOG" >&5 + echo "$as_me:9744: result: $PROG_LASTLOG" >&5 echo "${ECHO_T}$PROG_LASTLOG" >&6 else - echo "$as_me:9746: result: no" >&5 + echo "$as_me:9747: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9753,7 +9754,7 @@ # Extract the first word of "df", so it can be a program name with args. set dummy df; ac_word=$2 -echo "$as_me:9756: checking for $ac_word" >&5 +echo "$as_me:9757: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_DF+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9770,7 +9771,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_DF="$ac_dir/$ac_word" - echo "$as_me:9773: found $ac_dir/$ac_word" >&5 + echo "$as_me:9774: found $ac_dir/$ac_word" >&5 break fi done @@ -9781,10 +9782,10 @@ PROG_DF=$ac_cv_path_PROG_DF if test -n "$PROG_DF"; then - echo "$as_me:9784: result: $PROG_DF" >&5 + echo "$as_me:9785: result: $PROG_DF" >&5 echo "${ECHO_T}$PROG_DF" >&6 else - echo "$as_me:9787: result: no" >&5 + echo "$as_me:9788: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9794,7 +9795,7 @@ # Extract the first word of "vmstat", so it can be a program name with args. set dummy vmstat; ac_word=$2 -echo "$as_me:9797: checking for $ac_word" >&5 +echo "$as_me:9798: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_VMSTAT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9811,7 +9812,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_VMSTAT="$ac_dir/$ac_word" - echo "$as_me:9814: found $ac_dir/$ac_word" >&5 + echo "$as_me:9815: found $ac_dir/$ac_word" >&5 break fi done @@ -9822,10 +9823,10 @@ PROG_VMSTAT=$ac_cv_path_PROG_VMSTAT if test -n "$PROG_VMSTAT"; then - echo "$as_me:9825: result: $PROG_VMSTAT" >&5 + echo "$as_me:9826: result: $PROG_VMSTAT" >&5 echo "${ECHO_T}$PROG_VMSTAT" >&6 else - echo "$as_me:9828: result: no" >&5 + echo "$as_me:9829: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9835,7 +9836,7 @@ # Extract the first word of "uptime", so it can be a program name with args. set dummy uptime; ac_word=$2 -echo "$as_me:9838: checking for $ac_word" >&5 +echo "$as_me:9839: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_UPTIME+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9852,7 +9853,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_UPTIME="$ac_dir/$ac_word" - echo "$as_me:9855: found $ac_dir/$ac_word" >&5 + echo "$as_me:9856: found $ac_dir/$ac_word" >&5 break fi done @@ -9863,10 +9864,10 @@ PROG_UPTIME=$ac_cv_path_PROG_UPTIME if test -n "$PROG_UPTIME"; then - echo "$as_me:9866: result: $PROG_UPTIME" >&5 + echo "$as_me:9867: result: $PROG_UPTIME" >&5 echo "${ECHO_T}$PROG_UPTIME" >&6 else - echo "$as_me:9869: result: no" >&5 + echo "$as_me:9870: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9876,7 +9877,7 @@ # Extract the first word of "ipcs", so it can be a program name with args. set dummy ipcs; ac_word=$2 -echo "$as_me:9879: checking for $ac_word" >&5 +echo "$as_me:9880: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_IPCS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9893,7 +9894,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_IPCS="$ac_dir/$ac_word" - echo "$as_me:9896: found $ac_dir/$ac_word" >&5 + echo "$as_me:9897: found $ac_dir/$ac_word" >&5 break fi done @@ -9904,10 +9905,10 @@ PROG_IPCS=$ac_cv_path_PROG_IPCS if test -n "$PROG_IPCS"; then - echo "$as_me:9907: result: $PROG_IPCS" >&5 + echo "$as_me:9908: result: $PROG_IPCS" >&5 echo "${ECHO_T}$PROG_IPCS" >&6 else - echo "$as_me:9910: result: no" >&5 + echo "$as_me:9911: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9917,7 +9918,7 @@ # Extract the first word of "tail", so it can be a program name with args. set dummy tail; ac_word=$2 -echo "$as_me:9920: checking for $ac_word" >&5 +echo "$as_me:9921: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PROG_TAIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9934,7 +9935,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PROG_TAIL="$ac_dir/$ac_word" - echo "$as_me:9937: found $ac_dir/$ac_word" >&5 + echo "$as_me:9938: found $ac_dir/$ac_word" >&5 break fi done @@ -9945,10 +9946,10 @@ PROG_TAIL=$ac_cv_path_PROG_TAIL if test -n "$PROG_TAIL"; then - echo "$as_me:9948: result: $PROG_TAIL" >&5 + echo "$as_me:9949: result: $PROG_TAIL" >&5 echo "${ECHO_T}$PROG_TAIL" >&6 else - echo "$as_me:9951: result: no" >&5 + echo "$as_me:9952: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -9979,13 +9980,13 @@ fi # Checks for data types -echo "$as_me:9982: checking for char" >&5 +echo "$as_me:9983: checking for char" >&5 echo $ECHO_N "checking for char... $ECHO_C" >&6 if test "${ac_cv_type_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 9988 "configure" +#line 9989 "configure" #include "confdefs.h" $ac_includes_default int @@ -10000,16 +10001,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10003: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10004: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10006: \$? = $ac_status" >&5 + echo "$as_me:10007: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10009: \"$ac_try\"") >&5 + { (eval echo "$as_me:10010: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10012: \$? = $ac_status" >&5 + echo "$as_me:10013: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_char=yes else @@ -10019,10 +10020,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10022: result: $ac_cv_type_char" >&5 +echo "$as_me:10023: result: $ac_cv_type_char" >&5 echo "${ECHO_T}$ac_cv_type_char" >&6 -echo "$as_me:10025: checking size of char" >&5 +echo "$as_me:10026: checking size of char" >&5 echo $ECHO_N "checking size of char... $ECHO_C" >&6 if test "${ac_cv_sizeof_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10031,7 +10032,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 10034 "configure" +#line 10035 "configure" #include "confdefs.h" $ac_includes_default int @@ -10043,21 +10044,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10046: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10047: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10049: \$? = $ac_status" >&5 + echo "$as_me:10050: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10052: \"$ac_try\"") >&5 + { (eval echo "$as_me:10053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10055: \$? = $ac_status" >&5 + echo "$as_me:10056: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10060 "configure" +#line 10061 "configure" #include "confdefs.h" $ac_includes_default int @@ -10069,16 +10070,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10072: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10073: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10075: \$? = $ac_status" >&5 + echo "$as_me:10076: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10078: \"$ac_try\"") >&5 + { (eval echo "$as_me:10079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10081: \$? = $ac_status" >&5 + echo "$as_me:10082: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -10094,7 +10095,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10097 "configure" +#line 10098 "configure" #include "confdefs.h" $ac_includes_default int @@ -10106,16 +10107,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10109: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10110: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10112: \$? = $ac_status" >&5 + echo "$as_me:10113: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10115: \"$ac_try\"") >&5 + { (eval echo "$as_me:10116: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10118: \$? = $ac_status" >&5 + echo "$as_me:10119: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -10131,7 +10132,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 10134 "configure" +#line 10135 "configure" #include "confdefs.h" $ac_includes_default int @@ -10143,16 +10144,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10146: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10147: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10149: \$? = $ac_status" >&5 + echo "$as_me:10150: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10152: \"$ac_try\"") >&5 + { (eval echo "$as_me:10153: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10155: \$? = $ac_status" >&5 + echo "$as_me:10156: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -10165,12 +10166,12 @@ ac_cv_sizeof_char=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:10168: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:10169: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 10173 "configure" +#line 10174 "configure" #include "confdefs.h" $ac_includes_default int @@ -10186,15 +10187,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:10189: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10190: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10192: \$? = $ac_status" >&5 + echo "$as_me:10193: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:10194: \"$ac_try\"") >&5 + { (eval echo "$as_me:10195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10197: \$? = $ac_status" >&5 + echo "$as_me:10198: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_char=`cat conftest.val` else @@ -10210,19 +10211,19 @@ ac_cv_sizeof_char=0 fi fi -echo "$as_me:10213: result: $ac_cv_sizeof_char" >&5 +echo "$as_me:10214: result: $ac_cv_sizeof_char" >&5 echo "${ECHO_T}$ac_cv_sizeof_char" >&6 cat >>confdefs.h <&5 +echo "$as_me:10220: checking for short int" >&5 echo $ECHO_N "checking for short int... $ECHO_C" >&6 if test "${ac_cv_type_short_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10225 "configure" +#line 10226 "configure" #include "confdefs.h" $ac_includes_default int @@ -10237,16 +10238,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10240: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10241: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10243: \$? = $ac_status" >&5 + echo "$as_me:10244: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10246: \"$ac_try\"") >&5 + { (eval echo "$as_me:10247: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10249: \$? = $ac_status" >&5 + echo "$as_me:10250: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_short_int=yes else @@ -10256,10 +10257,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10259: result: $ac_cv_type_short_int" >&5 +echo "$as_me:10260: result: $ac_cv_type_short_int" >&5 echo "${ECHO_T}$ac_cv_type_short_int" >&6 -echo "$as_me:10262: checking size of short int" >&5 +echo "$as_me:10263: checking size of short int" >&5 echo $ECHO_N "checking size of short int... $ECHO_C" >&6 if test "${ac_cv_sizeof_short_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10268,7 +10269,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 10271 "configure" +#line 10272 "configure" #include "confdefs.h" $ac_includes_default int @@ -10280,21 +10281,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10283: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10284: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10286: \$? = $ac_status" >&5 + echo "$as_me:10287: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10289: \"$ac_try\"") >&5 + { (eval echo "$as_me:10290: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10292: \$? = $ac_status" >&5 + echo "$as_me:10293: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10297 "configure" +#line 10298 "configure" #include "confdefs.h" $ac_includes_default int @@ -10306,16 +10307,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10309: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10310: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10312: \$? = $ac_status" >&5 + echo "$as_me:10313: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10315: \"$ac_try\"") >&5 + { (eval echo "$as_me:10316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10318: \$? = $ac_status" >&5 + echo "$as_me:10319: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -10331,7 +10332,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10334 "configure" +#line 10335 "configure" #include "confdefs.h" $ac_includes_default int @@ -10343,16 +10344,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10346: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10347: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10349: \$? = $ac_status" >&5 + echo "$as_me:10350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10352: \"$ac_try\"") >&5 + { (eval echo "$as_me:10353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10355: \$? = $ac_status" >&5 + echo "$as_me:10356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -10368,7 +10369,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 10371 "configure" +#line 10372 "configure" #include "confdefs.h" $ac_includes_default int @@ -10380,16 +10381,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10383: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10384: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10386: \$? = $ac_status" >&5 + echo "$as_me:10387: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10389: \"$ac_try\"") >&5 + { (eval echo "$as_me:10390: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10392: \$? = $ac_status" >&5 + echo "$as_me:10393: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -10402,12 +10403,12 @@ ac_cv_sizeof_short_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:10405: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:10406: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 10410 "configure" +#line 10411 "configure" #include "confdefs.h" $ac_includes_default int @@ -10423,15 +10424,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:10426: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10427: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10429: \$? = $ac_status" >&5 + echo "$as_me:10430: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:10431: \"$ac_try\"") >&5 + { (eval echo "$as_me:10432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10434: \$? = $ac_status" >&5 + echo "$as_me:10435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_short_int=`cat conftest.val` else @@ -10447,19 +10448,19 @@ ac_cv_sizeof_short_int=0 fi fi -echo "$as_me:10450: result: $ac_cv_sizeof_short_int" >&5 +echo "$as_me:10451: result: $ac_cv_sizeof_short_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_short_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:10457: checking for int" >&5 echo $ECHO_N "checking for int... $ECHO_C" >&6 if test "${ac_cv_type_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10462 "configure" +#line 10463 "configure" #include "confdefs.h" $ac_includes_default int @@ -10474,16 +10475,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10477: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10478: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10480: \$? = $ac_status" >&5 + echo "$as_me:10481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10483: \"$ac_try\"") >&5 + { (eval echo "$as_me:10484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10486: \$? = $ac_status" >&5 + echo "$as_me:10487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -10493,10 +10494,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10496: result: $ac_cv_type_int" >&5 +echo "$as_me:10497: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:10499: checking size of int" >&5 +echo "$as_me:10500: checking size of int" >&5 echo $ECHO_N "checking size of int... $ECHO_C" >&6 if test "${ac_cv_sizeof_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10505,7 +10506,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 10508 "configure" +#line 10509 "configure" #include "confdefs.h" $ac_includes_default int @@ -10517,21 +10518,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10520: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10521: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10523: \$? = $ac_status" >&5 + echo "$as_me:10524: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10526: \"$ac_try\"") >&5 + { (eval echo "$as_me:10527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10529: \$? = $ac_status" >&5 + echo "$as_me:10530: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10534 "configure" +#line 10535 "configure" #include "confdefs.h" $ac_includes_default int @@ -10543,16 +10544,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10546: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10547: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10549: \$? = $ac_status" >&5 + echo "$as_me:10550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10552: \"$ac_try\"") >&5 + { (eval echo "$as_me:10553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10555: \$? = $ac_status" >&5 + echo "$as_me:10556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -10568,7 +10569,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10571 "configure" +#line 10572 "configure" #include "confdefs.h" $ac_includes_default int @@ -10580,16 +10581,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10583: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10584: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10586: \$? = $ac_status" >&5 + echo "$as_me:10587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10589: \"$ac_try\"") >&5 + { (eval echo "$as_me:10590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10592: \$? = $ac_status" >&5 + echo "$as_me:10593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -10605,7 +10606,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 10608 "configure" +#line 10609 "configure" #include "confdefs.h" $ac_includes_default int @@ -10617,16 +10618,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10620: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10621: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10623: \$? = $ac_status" >&5 + echo "$as_me:10624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10626: \"$ac_try\"") >&5 + { (eval echo "$as_me:10627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10629: \$? = $ac_status" >&5 + echo "$as_me:10630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -10639,12 +10640,12 @@ ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:10642: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:10643: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 10647 "configure" +#line 10648 "configure" #include "confdefs.h" $ac_includes_default int @@ -10660,15 +10661,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:10663: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10664: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10666: \$? = $ac_status" >&5 + echo "$as_me:10667: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:10668: \"$ac_try\"") >&5 + { (eval echo "$as_me:10669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10671: \$? = $ac_status" >&5 + echo "$as_me:10672: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -10684,19 +10685,19 @@ ac_cv_sizeof_int=0 fi fi -echo "$as_me:10687: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:10688: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:10694: checking for long int" >&5 echo $ECHO_N "checking for long int... $ECHO_C" >&6 if test "${ac_cv_type_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10699 "configure" +#line 10700 "configure" #include "confdefs.h" $ac_includes_default int @@ -10711,16 +10712,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10714: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10715: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10717: \$? = $ac_status" >&5 + echo "$as_me:10718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10720: \"$ac_try\"") >&5 + { (eval echo "$as_me:10721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10723: \$? = $ac_status" >&5 + echo "$as_me:10724: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_int=yes else @@ -10730,10 +10731,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10733: result: $ac_cv_type_long_int" >&5 +echo "$as_me:10734: result: $ac_cv_type_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_int" >&6 -echo "$as_me:10736: checking size of long int" >&5 +echo "$as_me:10737: checking size of long int" >&5 echo $ECHO_N "checking size of long int... $ECHO_C" >&6 if test "${ac_cv_sizeof_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10742,7 +10743,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 10745 "configure" +#line 10746 "configure" #include "confdefs.h" $ac_includes_default int @@ -10754,21 +10755,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10757: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10760: \$? = $ac_status" >&5 + echo "$as_me:10761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10763: \"$ac_try\"") >&5 + { (eval echo "$as_me:10764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10766: \$? = $ac_status" >&5 + echo "$as_me:10767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10771 "configure" +#line 10772 "configure" #include "confdefs.h" $ac_includes_default int @@ -10780,16 +10781,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10783: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10784: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10786: \$? = $ac_status" >&5 + echo "$as_me:10787: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10789: \"$ac_try\"") >&5 + { (eval echo "$as_me:10790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10792: \$? = $ac_status" >&5 + echo "$as_me:10793: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -10805,7 +10806,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10808 "configure" +#line 10809 "configure" #include "confdefs.h" $ac_includes_default int @@ -10817,16 +10818,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10820: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10821: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10823: \$? = $ac_status" >&5 + echo "$as_me:10824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10826: \"$ac_try\"") >&5 + { (eval echo "$as_me:10827: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10829: \$? = $ac_status" >&5 + echo "$as_me:10830: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -10842,7 +10843,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 10845 "configure" +#line 10846 "configure" #include "confdefs.h" $ac_includes_default int @@ -10854,16 +10855,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10857: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10858: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10860: \$? = $ac_status" >&5 + echo "$as_me:10861: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10863: \"$ac_try\"") >&5 + { (eval echo "$as_me:10864: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10866: \$? = $ac_status" >&5 + echo "$as_me:10867: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -10876,12 +10877,12 @@ ac_cv_sizeof_long_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:10879: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:10880: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 10884 "configure" +#line 10885 "configure" #include "confdefs.h" $ac_includes_default int @@ -10897,15 +10898,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:10900: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10901: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10903: \$? = $ac_status" >&5 + echo "$as_me:10904: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:10905: \"$ac_try\"") >&5 + { (eval echo "$as_me:10906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10908: \$? = $ac_status" >&5 + echo "$as_me:10909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_int=`cat conftest.val` else @@ -10921,19 +10922,19 @@ ac_cv_sizeof_long_int=0 fi fi -echo "$as_me:10924: result: $ac_cv_sizeof_long_int" >&5 +echo "$as_me:10925: result: $ac_cv_sizeof_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:10931: checking for long long int" >&5 echo $ECHO_N "checking for long long int... $ECHO_C" >&6 if test "${ac_cv_type_long_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10936 "configure" +#line 10937 "configure" #include "confdefs.h" $ac_includes_default int @@ -10948,16 +10949,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10951: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10952: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10954: \$? = $ac_status" >&5 + echo "$as_me:10955: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10957: \"$ac_try\"") >&5 + { (eval echo "$as_me:10958: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10960: \$? = $ac_status" >&5 + echo "$as_me:10961: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_long_int=yes else @@ -10967,10 +10968,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10970: result: $ac_cv_type_long_long_int" >&5 +echo "$as_me:10971: result: $ac_cv_type_long_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_long_int" >&6 -echo "$as_me:10973: checking size of long long int" >&5 +echo "$as_me:10974: checking size of long long int" >&5 echo $ECHO_N "checking size of long long int... $ECHO_C" >&6 if test "${ac_cv_sizeof_long_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10979,7 +10980,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 10982 "configure" +#line 10983 "configure" #include "confdefs.h" $ac_includes_default int @@ -10991,21 +10992,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10994: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10995: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10997: \$? = $ac_status" >&5 + echo "$as_me:10998: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11000: \"$ac_try\"") >&5 + { (eval echo "$as_me:11001: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11003: \$? = $ac_status" >&5 + echo "$as_me:11004: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 11008 "configure" +#line 11009 "configure" #include "confdefs.h" $ac_includes_default int @@ -11017,16 +11018,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11020: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11021: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11023: \$? = $ac_status" >&5 + echo "$as_me:11024: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11026: \"$ac_try\"") >&5 + { (eval echo "$as_me:11027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11029: \$? = $ac_status" >&5 + echo "$as_me:11030: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -11042,7 +11043,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 11045 "configure" +#line 11046 "configure" #include "confdefs.h" $ac_includes_default int @@ -11054,16 +11055,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11057: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11058: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11060: \$? = $ac_status" >&5 + echo "$as_me:11061: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11063: \"$ac_try\"") >&5 + { (eval echo "$as_me:11064: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11066: \$? = $ac_status" >&5 + echo "$as_me:11067: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -11079,7 +11080,7 @@ while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 11082 "configure" +#line 11083 "configure" #include "confdefs.h" $ac_includes_default int @@ -11091,16 +11092,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11094: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11095: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11097: \$? = $ac_status" >&5 + echo "$as_me:11098: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11100: \"$ac_try\"") >&5 + { (eval echo "$as_me:11101: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11103: \$? = $ac_status" >&5 + echo "$as_me:11104: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -11113,12 +11114,12 @@ ac_cv_sizeof_long_long_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:11116: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:11117: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 11121 "configure" +#line 11122 "configure" #include "confdefs.h" $ac_includes_default int @@ -11134,15 +11135,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:11137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11138: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11140: \$? = $ac_status" >&5 + echo "$as_me:11141: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:11142: \"$ac_try\"") >&5 + { (eval echo "$as_me:11143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11145: \$? = $ac_status" >&5 + echo "$as_me:11146: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_long_int=`cat conftest.val` else @@ -11158,7 +11159,7 @@ ac_cv_sizeof_long_long_int=0 fi fi -echo "$as_me:11161: result: $ac_cv_sizeof_long_long_int" >&5 +echo "$as_me:11162: result: $ac_cv_sizeof_long_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_long_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:11174: checking for u_int type" >&5 echo $ECHO_N "checking for u_int type... $ECHO_C" >&6 if test "${ac_cv_have_u_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11180 "configure" +#line 11181 "configure" #include "confdefs.h" #include int @@ -11189,16 +11190,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11192: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11193: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11195: \$? = $ac_status" >&5 + echo "$as_me:11196: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11198: \"$ac_try\"") >&5 + { (eval echo "$as_me:11199: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11201: \$? = $ac_status" >&5 + echo "$as_me:11202: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int="yes" else @@ -11210,7 +11211,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11213: result: $ac_cv_have_u_int" >&5 +echo "$as_me:11214: result: $ac_cv_have_u_int" >&5 echo "${ECHO_T}$ac_cv_have_u_int" >&6 if test "x$ac_cv_have_u_int" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11220,14 +11221,14 @@ have_u_int=1 fi -echo "$as_me:11223: checking for intXX_t types" >&5 +echo "$as_me:11224: checking for intXX_t types" >&5 echo $ECHO_N "checking for intXX_t types... $ECHO_C" >&6 if test "${ac_cv_have_intxx_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11230 "configure" +#line 11231 "configure" #include "confdefs.h" #include int @@ -11239,16 +11240,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11242: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11243: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11245: \$? = $ac_status" >&5 + echo "$as_me:11246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11248: \"$ac_try\"") >&5 + { (eval echo "$as_me:11249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11251: \$? = $ac_status" >&5 + echo "$as_me:11252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_intxx_t="yes" else @@ -11260,7 +11261,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11263: result: $ac_cv_have_intxx_t" >&5 +echo "$as_me:11264: result: $ac_cv_have_intxx_t" >&5 echo "${ECHO_T}$ac_cv_have_intxx_t" >&6 if test "x$ac_cv_have_intxx_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11273,10 +11274,10 @@ if (test -z "$have_intxx_t" && \ test "x$ac_cv_header_stdint_h" = "xyes") then - echo "$as_me:11276: checking for intXX_t types in stdint.h" >&5 + echo "$as_me:11277: checking for intXX_t types in stdint.h" >&5 echo $ECHO_N "checking for intXX_t types in stdint.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 11279 "configure" +#line 11280 "configure" #include "confdefs.h" #include int @@ -11288,43 +11289,43 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11291: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11292: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11294: \$? = $ac_status" >&5 + echo "$as_me:11295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11297: \"$ac_try\"") >&5 + { (eval echo "$as_me:11298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11300: \$? = $ac_status" >&5 + echo "$as_me:11301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define HAVE_INTXX_T 1 EOF - echo "$as_me:11307: result: yes" >&5 + echo "$as_me:11308: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:11313: result: no" >&5 + echo "$as_me:11314: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11320: checking for int64_t type" >&5 +echo "$as_me:11321: checking for int64_t type" >&5 echo $ECHO_N "checking for int64_t type... $ECHO_C" >&6 if test "${ac_cv_have_int64_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11327 "configure" +#line 11328 "configure" #include "confdefs.h" #include @@ -11345,16 +11346,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11348: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11349: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11351: \$? = $ac_status" >&5 + echo "$as_me:11352: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11354: \"$ac_try\"") >&5 + { (eval echo "$as_me:11355: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11357: \$? = $ac_status" >&5 + echo "$as_me:11358: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_int64_t="yes" else @@ -11366,7 +11367,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11369: result: $ac_cv_have_int64_t" >&5 +echo "$as_me:11370: result: $ac_cv_have_int64_t" >&5 echo "${ECHO_T}$ac_cv_have_int64_t" >&6 if test "x$ac_cv_have_int64_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11375,14 +11376,14 @@ fi -echo "$as_me:11378: checking for u_intXX_t types" >&5 +echo "$as_me:11379: checking for u_intXX_t types" >&5 echo $ECHO_N "checking for u_intXX_t types... $ECHO_C" >&6 if test "${ac_cv_have_u_intxx_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11385 "configure" +#line 11386 "configure" #include "confdefs.h" #include int @@ -11394,16 +11395,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11397: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11398: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11400: \$? = $ac_status" >&5 + echo "$as_me:11401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11403: \"$ac_try\"") >&5 + { (eval echo "$as_me:11404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11406: \$? = $ac_status" >&5 + echo "$as_me:11407: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_intxx_t="yes" else @@ -11415,7 +11416,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11418: result: $ac_cv_have_u_intxx_t" >&5 +echo "$as_me:11419: result: $ac_cv_have_u_intxx_t" >&5 echo "${ECHO_T}$ac_cv_have_u_intxx_t" >&6 if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11426,10 +11427,10 @@ fi if test -z "$have_u_intxx_t" ; then - echo "$as_me:11429: checking for u_intXX_t types in sys/socket.h" >&5 + echo "$as_me:11430: checking for u_intXX_t types in sys/socket.h" >&5 echo $ECHO_N "checking for u_intXX_t types in sys/socket.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 11432 "configure" +#line 11433 "configure" #include "confdefs.h" #include int @@ -11441,43 +11442,43 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11444: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11445: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11447: \$? = $ac_status" >&5 + echo "$as_me:11448: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11450: \"$ac_try\"") >&5 + { (eval echo "$as_me:11451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11453: \$? = $ac_status" >&5 + echo "$as_me:11454: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define HAVE_U_INTXX_T 1 EOF - echo "$as_me:11460: result: yes" >&5 + echo "$as_me:11461: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:11466: result: no" >&5 + echo "$as_me:11467: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11473: checking for u_int64_t types" >&5 +echo "$as_me:11474: checking for u_int64_t types" >&5 echo $ECHO_N "checking for u_int64_t types... $ECHO_C" >&6 if test "${ac_cv_have_u_int64_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11480 "configure" +#line 11481 "configure" #include "confdefs.h" #include int @@ -11489,16 +11490,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11492: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11493: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11495: \$? = $ac_status" >&5 + echo "$as_me:11496: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11498: \"$ac_try\"") >&5 + { (eval echo "$as_me:11499: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11501: \$? = $ac_status" >&5 + echo "$as_me:11502: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int64_t="yes" else @@ -11510,7 +11511,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11513: result: $ac_cv_have_u_int64_t" >&5 +echo "$as_me:11514: result: $ac_cv_have_u_int64_t" >&5 echo "${ECHO_T}$ac_cv_have_u_int64_t" >&6 if test "x$ac_cv_have_u_int64_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11521,10 +11522,10 @@ fi if test -z "$have_u_int64_t" ; then - echo "$as_me:11524: checking for u_int64_t type in sys/bitypes.h" >&5 + echo "$as_me:11525: checking for u_int64_t type in sys/bitypes.h" >&5 echo $ECHO_N "checking for u_int64_t type in sys/bitypes.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 11527 "configure" +#line 11528 "configure" #include "confdefs.h" #include int @@ -11536,29 +11537,29 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11539: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11540: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11542: \$? = $ac_status" >&5 + echo "$as_me:11543: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11545: \"$ac_try\"") >&5 + { (eval echo "$as_me:11546: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11548: \$? = $ac_status" >&5 + echo "$as_me:11549: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define HAVE_U_INT64_T 1 EOF - echo "$as_me:11555: result: yes" >&5 + echo "$as_me:11556: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:11561: result: no" >&5 + echo "$as_me:11562: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -11566,14 +11567,14 @@ fi if test -z "$have_u_intxx_t" ; then - echo "$as_me:11569: checking for uintXX_t types" >&5 + echo "$as_me:11570: checking for uintXX_t types" >&5 echo $ECHO_N "checking for uintXX_t types... $ECHO_C" >&6 if test "${ac_cv_have_uintxx_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11576 "configure" +#line 11577 "configure" #include "confdefs.h" #include @@ -11587,16 +11588,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11590: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11591: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11593: \$? = $ac_status" >&5 + echo "$as_me:11594: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11596: \"$ac_try\"") >&5 + { (eval echo "$as_me:11597: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11599: \$? = $ac_status" >&5 + echo "$as_me:11600: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_uintxx_t="yes" else @@ -11608,7 +11609,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11611: result: $ac_cv_have_uintxx_t" >&5 +echo "$as_me:11612: result: $ac_cv_have_uintxx_t" >&5 echo "${ECHO_T}$ac_cv_have_uintxx_t" >&6 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11619,10 +11620,10 @@ fi if test -z "$have_uintxx_t" ; then - echo "$as_me:11622: checking for uintXX_t types in stdint.h" >&5 + echo "$as_me:11623: checking for uintXX_t types in stdint.h" >&5 echo $ECHO_N "checking for uintXX_t types in stdint.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 11625 "configure" +#line 11626 "configure" #include "confdefs.h" #include int @@ -11634,29 +11635,29 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11637: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11638: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11640: \$? = $ac_status" >&5 + echo "$as_me:11641: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11643: \"$ac_try\"") >&5 + { (eval echo "$as_me:11644: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11646: \$? = $ac_status" >&5 + echo "$as_me:11647: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define HAVE_UINTXX_T 1 EOF - echo "$as_me:11653: result: yes" >&5 + echo "$as_me:11654: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:11659: result: no" >&5 + echo "$as_me:11660: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -11666,10 +11667,10 @@ if (test -z "$have_u_intxx_t" || test -z "$have_intxx_t" && \ test "x$ac_cv_header_sys_bitypes_h" = "xyes") then - echo "$as_me:11669: checking for intXX_t and u_intXX_t types in sys/bitypes.h" >&5 + echo "$as_me:11670: checking for intXX_t and u_intXX_t types in sys/bitypes.h" >&5 echo $ECHO_N "checking for intXX_t and u_intXX_t types in sys/bitypes.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 11672 "configure" +#line 11673 "configure" #include "confdefs.h" #include @@ -11687,16 +11688,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11690: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11693: \$? = $ac_status" >&5 + echo "$as_me:11694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11696: \"$ac_try\"") >&5 + { (eval echo "$as_me:11697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11699: \$? = $ac_status" >&5 + echo "$as_me:11700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF @@ -11707,27 +11708,27 @@ #define HAVE_INTXX_T 1 EOF - echo "$as_me:11710: result: yes" >&5 + echo "$as_me:11711: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:11716: result: no" >&5 +echo "$as_me:11717: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11723: checking for u_char" >&5 +echo "$as_me:11724: checking for u_char" >&5 echo $ECHO_N "checking for u_char... $ECHO_C" >&6 if test "${ac_cv_have_u_char+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11730 "configure" +#line 11731 "configure" #include "confdefs.h" #include @@ -11741,16 +11742,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11744: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11745: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11747: \$? = $ac_status" >&5 + echo "$as_me:11748: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11750: \"$ac_try\"") >&5 + { (eval echo "$as_me:11751: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11753: \$? = $ac_status" >&5 + echo "$as_me:11754: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_char="yes" else @@ -11762,7 +11763,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11765: result: $ac_cv_have_u_char" >&5 +echo "$as_me:11766: result: $ac_cv_have_u_char" >&5 echo "${ECHO_T}$ac_cv_have_u_char" >&6 if test "x$ac_cv_have_u_char" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11771,13 +11772,13 @@ fi - echo "$as_me:11774: checking for socklen_t" >&5 + echo "$as_me:11775: checking for socklen_t" >&5 echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6 if test "${ac_cv_type_socklen_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11780 "configure" +#line 11781 "configure" #include "confdefs.h" #include #include @@ -11794,16 +11795,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11797: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11798: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11800: \$? = $ac_status" >&5 + echo "$as_me:11801: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11803: \"$ac_try\"") >&5 + { (eval echo "$as_me:11804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11806: \$? = $ac_status" >&5 + echo "$as_me:11807: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -11813,13 +11814,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11816: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:11817: result: $ac_cv_type_socklen_t" >&5 echo "${ECHO_T}$ac_cv_type_socklen_t" >&6 if test $ac_cv_type_socklen_t = yes; then : else - echo "$as_me:11822: checking for socklen_t equivalent" >&5 + echo "$as_me:11823: checking for socklen_t equivalent" >&5 echo $ECHO_N "checking for socklen_t equivalent... $ECHO_C" >&6 if test "${curl_cv_socklen_t_equiv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11831,7 +11832,7 @@ for arg2 in "struct sockaddr" void; do for t in int size_t unsigned long "unsigned long"; do cat >conftest.$ac_ext <<_ACEOF -#line 11834 "configure" +#line 11835 "configure" #include "confdefs.h" #include @@ -11851,16 +11852,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11854: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11855: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11857: \$? = $ac_status" >&5 + echo "$as_me:11858: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11860: \"$ac_try\"") >&5 + { (eval echo "$as_me:11861: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11863: \$? = $ac_status" >&5 + echo "$as_me:11864: \$? = $ac_status" >&5 (exit $ac_status); }; }; then curl_cv_socklen_t_equiv="$t" @@ -11875,14 +11876,14 @@ done if test "x$curl_cv_socklen_t_equiv" = x; then - { { echo "$as_me:11878: error: Cannot find a type to use in place of socklen_t" >&5 + { { echo "$as_me:11879: error: Cannot find a type to use in place of socklen_t" >&5 echo "$as_me: error: Cannot find a type to use in place of socklen_t" >&2;} { (exit 1); exit 1; }; } fi fi - echo "$as_me:11885: result: $curl_cv_socklen_t_equiv" >&5 + echo "$as_me:11886: result: $curl_cv_socklen_t_equiv" >&5 echo "${ECHO_T}$curl_cv_socklen_t_equiv" >&6 cat >>confdefs.h <&5 +echo "$as_me:11895: checking for sig_atomic_t" >&5 echo $ECHO_N "checking for sig_atomic_t... $ECHO_C" >&6 if test "${ac_cv_type_sig_atomic_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11900 "configure" +#line 11901 "configure" #include "confdefs.h" #include @@ -11913,16 +11914,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11916: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11917: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11919: \$? = $ac_status" >&5 + echo "$as_me:11920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11922: \"$ac_try\"") >&5 + { (eval echo "$as_me:11923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11925: \$? = $ac_status" >&5 + echo "$as_me:11926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_sig_atomic_t=yes else @@ -11932,7 +11933,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11935: result: $ac_cv_type_sig_atomic_t" >&5 +echo "$as_me:11936: result: $ac_cv_type_sig_atomic_t" >&5 echo "${ECHO_T}$ac_cv_type_sig_atomic_t" >&6 if test $ac_cv_type_sig_atomic_t = yes; then @@ -11942,14 +11943,14 @@ fi -echo "$as_me:11945: checking for size_t" >&5 +echo "$as_me:11946: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_have_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11952 "configure" +#line 11953 "configure" #include "confdefs.h" #include @@ -11963,16 +11964,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11966: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11967: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11969: \$? = $ac_status" >&5 + echo "$as_me:11970: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11972: \"$ac_try\"") >&5 + { (eval echo "$as_me:11973: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11975: \$? = $ac_status" >&5 + echo "$as_me:11976: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_size_t="yes" else @@ -11984,7 +11985,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11987: result: $ac_cv_have_size_t" >&5 +echo "$as_me:11988: result: $ac_cv_have_size_t" >&5 echo "${ECHO_T}$ac_cv_have_size_t" >&6 if test "x$ac_cv_have_size_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -11993,14 +11994,14 @@ fi -echo "$as_me:11996: checking for ssize_t" >&5 +echo "$as_me:11997: checking for ssize_t" >&5 echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6 if test "${ac_cv_have_ssize_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12003 "configure" +#line 12004 "configure" #include "confdefs.h" #include @@ -12014,16 +12015,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12017: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12018: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12020: \$? = $ac_status" >&5 + echo "$as_me:12021: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12023: \"$ac_try\"") >&5 + { (eval echo "$as_me:12024: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12026: \$? = $ac_status" >&5 + echo "$as_me:12027: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ssize_t="yes" else @@ -12035,7 +12036,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12038: result: $ac_cv_have_ssize_t" >&5 +echo "$as_me:12039: result: $ac_cv_have_ssize_t" >&5 echo "${ECHO_T}$ac_cv_have_ssize_t" >&6 if test "x$ac_cv_have_ssize_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12044,14 +12045,14 @@ fi -echo "$as_me:12047: checking for clock_t" >&5 +echo "$as_me:12048: checking for clock_t" >&5 echo $ECHO_N "checking for clock_t... $ECHO_C" >&6 if test "${ac_cv_have_clock_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12054 "configure" +#line 12055 "configure" #include "confdefs.h" #include @@ -12065,16 +12066,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12068: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12069: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12071: \$? = $ac_status" >&5 + echo "$as_me:12072: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12074: \"$ac_try\"") >&5 + { (eval echo "$as_me:12075: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12077: \$? = $ac_status" >&5 + echo "$as_me:12078: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_clock_t="yes" else @@ -12086,7 +12087,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12089: result: $ac_cv_have_clock_t" >&5 +echo "$as_me:12090: result: $ac_cv_have_clock_t" >&5 echo "${ECHO_T}$ac_cv_have_clock_t" >&6 if test "x$ac_cv_have_clock_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12095,14 +12096,14 @@ fi -echo "$as_me:12098: checking for sa_family_t" >&5 +echo "$as_me:12099: checking for sa_family_t" >&5 echo $ECHO_N "checking for sa_family_t... $ECHO_C" >&6 if test "${ac_cv_have_sa_family_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12105 "configure" +#line 12106 "configure" #include "confdefs.h" #include @@ -12117,23 +12118,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12120: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12121: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12123: \$? = $ac_status" >&5 + echo "$as_me:12124: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12126: \"$ac_try\"") >&5 + { (eval echo "$as_me:12127: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12129: \$? = $ac_status" >&5 + echo "$as_me:12130: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_sa_family_t="yes" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 12136 "configure" +#line 12137 "configure" #include "confdefs.h" #include @@ -12149,16 +12150,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12152: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12153: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12155: \$? = $ac_status" >&5 + echo "$as_me:12156: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12158: \"$ac_try\"") >&5 + { (eval echo "$as_me:12159: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12161: \$? = $ac_status" >&5 + echo "$as_me:12162: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_sa_family_t="yes" else @@ -12173,7 +12174,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12176: result: $ac_cv_have_sa_family_t" >&5 +echo "$as_me:12177: result: $ac_cv_have_sa_family_t" >&5 echo "${ECHO_T}$ac_cv_have_sa_family_t" >&6 if test "x$ac_cv_have_sa_family_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12182,14 +12183,14 @@ fi -echo "$as_me:12185: checking for pid_t" >&5 +echo "$as_me:12186: checking for pid_t" >&5 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 if test "${ac_cv_have_pid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12192 "configure" +#line 12193 "configure" #include "confdefs.h" #include @@ -12203,16 +12204,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12206: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12207: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12209: \$? = $ac_status" >&5 + echo "$as_me:12210: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12212: \"$ac_try\"") >&5 + { (eval echo "$as_me:12213: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12215: \$? = $ac_status" >&5 + echo "$as_me:12216: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pid_t="yes" else @@ -12224,7 +12225,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12227: result: $ac_cv_have_pid_t" >&5 +echo "$as_me:12228: result: $ac_cv_have_pid_t" >&5 echo "${ECHO_T}$ac_cv_have_pid_t" >&6 if test "x$ac_cv_have_pid_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12233,14 +12234,14 @@ fi -echo "$as_me:12236: checking for mode_t" >&5 +echo "$as_me:12237: checking for mode_t" >&5 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6 if test "${ac_cv_have_mode_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12243 "configure" +#line 12244 "configure" #include "confdefs.h" #include @@ -12254,16 +12255,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12257: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12258: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12260: \$? = $ac_status" >&5 + echo "$as_me:12261: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12263: \"$ac_try\"") >&5 + { (eval echo "$as_me:12264: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12266: \$? = $ac_status" >&5 + echo "$as_me:12267: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_mode_t="yes" else @@ -12275,7 +12276,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12278: result: $ac_cv_have_mode_t" >&5 +echo "$as_me:12279: result: $ac_cv_have_mode_t" >&5 echo "${ECHO_T}$ac_cv_have_mode_t" >&6 if test "x$ac_cv_have_mode_t" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12284,14 +12285,14 @@ fi -echo "$as_me:12287: checking for struct sockaddr_storage" >&5 +echo "$as_me:12288: checking for struct sockaddr_storage" >&5 echo $ECHO_N "checking for struct sockaddr_storage... $ECHO_C" >&6 if test "${ac_cv_have_struct_sockaddr_storage+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12294 "configure" +#line 12295 "configure" #include "confdefs.h" #include @@ -12306,16 +12307,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12309: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12310: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12312: \$? = $ac_status" >&5 + echo "$as_me:12313: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12315: \"$ac_try\"") >&5 + { (eval echo "$as_me:12316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12318: \$? = $ac_status" >&5 + echo "$as_me:12319: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_storage="yes" else @@ -12327,7 +12328,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12330: result: $ac_cv_have_struct_sockaddr_storage" >&5 +echo "$as_me:12331: result: $ac_cv_have_struct_sockaddr_storage" >&5 echo "${ECHO_T}$ac_cv_have_struct_sockaddr_storage" >&6 if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12336,14 +12337,14 @@ fi -echo "$as_me:12339: checking for struct sockaddr_in6" >&5 +echo "$as_me:12340: checking for struct sockaddr_in6" >&5 echo $ECHO_N "checking for struct sockaddr_in6... $ECHO_C" >&6 if test "${ac_cv_have_struct_sockaddr_in6+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12346 "configure" +#line 12347 "configure" #include "confdefs.h" #include @@ -12358,16 +12359,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12361: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12362: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12364: \$? = $ac_status" >&5 + echo "$as_me:12365: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12367: \"$ac_try\"") >&5 + { (eval echo "$as_me:12368: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12370: \$? = $ac_status" >&5 + echo "$as_me:12371: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_in6="yes" else @@ -12379,7 +12380,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12382: result: $ac_cv_have_struct_sockaddr_in6" >&5 +echo "$as_me:12383: result: $ac_cv_have_struct_sockaddr_in6" >&5 echo "${ECHO_T}$ac_cv_have_struct_sockaddr_in6" >&6 if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12388,14 +12389,14 @@ fi -echo "$as_me:12391: checking for struct in6_addr" >&5 +echo "$as_me:12392: checking for struct in6_addr" >&5 echo $ECHO_N "checking for struct in6_addr... $ECHO_C" >&6 if test "${ac_cv_have_struct_in6_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12398 "configure" +#line 12399 "configure" #include "confdefs.h" #include @@ -12410,16 +12411,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12413: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12414: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12416: \$? = $ac_status" >&5 + echo "$as_me:12417: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12419: \"$ac_try\"") >&5 + { (eval echo "$as_me:12420: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12422: \$? = $ac_status" >&5 + echo "$as_me:12423: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_in6_addr="yes" else @@ -12431,7 +12432,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12434: result: $ac_cv_have_struct_in6_addr" >&5 +echo "$as_me:12435: result: $ac_cv_have_struct_in6_addr" >&5 echo "${ECHO_T}$ac_cv_have_struct_in6_addr" >&6 if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12440,14 +12441,14 @@ fi -echo "$as_me:12443: checking for struct addrinfo" >&5 +echo "$as_me:12444: checking for struct addrinfo" >&5 echo $ECHO_N "checking for struct addrinfo... $ECHO_C" >&6 if test "${ac_cv_have_struct_addrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12450 "configure" +#line 12451 "configure" #include "confdefs.h" #include @@ -12463,16 +12464,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12466: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12467: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12469: \$? = $ac_status" >&5 + echo "$as_me:12470: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12472: \"$ac_try\"") >&5 + { (eval echo "$as_me:12473: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12475: \$? = $ac_status" >&5 + echo "$as_me:12476: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_addrinfo="yes" else @@ -12484,7 +12485,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12487: result: $ac_cv_have_struct_addrinfo" >&5 +echo "$as_me:12488: result: $ac_cv_have_struct_addrinfo" >&5 echo "${ECHO_T}$ac_cv_have_struct_addrinfo" >&6 if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12493,14 +12494,14 @@ fi -echo "$as_me:12496: checking for struct timeval" >&5 +echo "$as_me:12497: checking for struct timeval" >&5 echo $ECHO_N "checking for struct timeval... $ECHO_C" >&6 if test "${ac_cv_have_struct_timeval+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12503 "configure" +#line 12504 "configure" #include "confdefs.h" #include int @@ -12512,16 +12513,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12515: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12516: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12518: \$? = $ac_status" >&5 + echo "$as_me:12519: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12521: \"$ac_try\"") >&5 + { (eval echo "$as_me:12522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12524: \$? = $ac_status" >&5 + echo "$as_me:12525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_timeval="yes" else @@ -12533,7 +12534,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12536: result: $ac_cv_have_struct_timeval" >&5 +echo "$as_me:12537: result: $ac_cv_have_struct_timeval" >&5 echo "${ECHO_T}$ac_cv_have_struct_timeval" >&6 if test "x$ac_cv_have_struct_timeval" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -12543,13 +12544,13 @@ have_struct_timeval=1 fi -echo "$as_me:12546: checking for struct timespec" >&5 +echo "$as_me:12547: checking for struct timespec" >&5 echo $ECHO_N "checking for struct timespec... $ECHO_C" >&6 if test "${ac_cv_type_struct_timespec+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12552 "configure" +#line 12553 "configure" #include "confdefs.h" $ac_includes_default int @@ -12564,16 +12565,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12567: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12568: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12570: \$? = $ac_status" >&5 + echo "$as_me:12571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12573: \"$ac_try\"") >&5 + { (eval echo "$as_me:12574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12576: \$? = $ac_status" >&5 + echo "$as_me:12577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_struct_timespec=yes else @@ -12583,7 +12584,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12586: result: $ac_cv_type_struct_timespec" >&5 +echo "$as_me:12587: result: $ac_cv_type_struct_timespec" >&5 echo "${ECHO_T}$ac_cv_type_struct_timespec" >&6 if test $ac_cv_type_struct_timespec = yes; then @@ -12603,12 +12604,12 @@ exit 1; else if test "$cross_compiling" = yes; then - { { echo "$as_me:12606: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:12607: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 12611 "configure" +#line 12612 "configure" #include "confdefs.h" #include @@ -12636,15 +12637,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:12639: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12640: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12642: \$? = $ac_status" >&5 + echo "$as_me:12643: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:12644: \"$ac_try\"") >&5 + { (eval echo "$as_me:12645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12647: \$? = $ac_status" >&5 + echo "$as_me:12648: \$? = $ac_status" >&5 (exit $ac_status); }; }; then true else @@ -12663,14 +12664,14 @@ # look for field 'ut_host' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_host - echo "$as_me:12666: checking for ut_host field in utmp.h" >&5 + echo "$as_me:12667: checking for ut_host field in utmp.h" >&5 echo $ECHO_N "checking for ut_host field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12673 "configure" +#line 12674 "configure" #include "confdefs.h" #include @@ -12687,7 +12688,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12690: result: $ossh_result" >&5 + echo "$as_me:12691: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12696,21 +12697,21 @@ fi else - echo "$as_me:12699: result: no" >&5 + echo "$as_me:12700: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_host' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_host - echo "$as_me:12706: checking for ut_host field in utmpx.h" >&5 + echo "$as_me:12707: checking for ut_host field in utmpx.h" >&5 echo $ECHO_N "checking for ut_host field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12713 "configure" +#line 12714 "configure" #include "confdefs.h" #include @@ -12727,7 +12728,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12730: result: $ossh_result" >&5 + echo "$as_me:12731: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12736,21 +12737,21 @@ fi else - echo "$as_me:12739: result: no" >&5 + echo "$as_me:12740: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'syslen' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"syslen - echo "$as_me:12746: checking for syslen field in utmpx.h" >&5 + echo "$as_me:12747: checking for syslen field in utmpx.h" >&5 echo $ECHO_N "checking for syslen field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12753 "configure" +#line 12754 "configure" #include "confdefs.h" #include @@ -12767,7 +12768,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12770: result: $ossh_result" >&5 + echo "$as_me:12771: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12776,21 +12777,21 @@ fi else - echo "$as_me:12779: result: no" >&5 + echo "$as_me:12780: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_pid' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_pid - echo "$as_me:12786: checking for ut_pid field in utmp.h" >&5 + echo "$as_me:12787: checking for ut_pid field in utmp.h" >&5 echo $ECHO_N "checking for ut_pid field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12793 "configure" +#line 12794 "configure" #include "confdefs.h" #include @@ -12807,7 +12808,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12810: result: $ossh_result" >&5 + echo "$as_me:12811: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12816,21 +12817,21 @@ fi else - echo "$as_me:12819: result: no" >&5 + echo "$as_me:12820: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_type' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_type - echo "$as_me:12826: checking for ut_type field in utmp.h" >&5 + echo "$as_me:12827: checking for ut_type field in utmp.h" >&5 echo $ECHO_N "checking for ut_type field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12833 "configure" +#line 12834 "configure" #include "confdefs.h" #include @@ -12847,7 +12848,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12850: result: $ossh_result" >&5 + echo "$as_me:12851: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12856,21 +12857,21 @@ fi else - echo "$as_me:12859: result: no" >&5 + echo "$as_me:12860: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_type' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_type - echo "$as_me:12866: checking for ut_type field in utmpx.h" >&5 + echo "$as_me:12867: checking for ut_type field in utmpx.h" >&5 echo $ECHO_N "checking for ut_type field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12873 "configure" +#line 12874 "configure" #include "confdefs.h" #include @@ -12887,7 +12888,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12890: result: $ossh_result" >&5 + echo "$as_me:12891: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12896,21 +12897,21 @@ fi else - echo "$as_me:12899: result: no" >&5 + echo "$as_me:12900: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_tv' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_tv - echo "$as_me:12906: checking for ut_tv field in utmp.h" >&5 + echo "$as_me:12907: checking for ut_tv field in utmp.h" >&5 echo $ECHO_N "checking for ut_tv field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12913 "configure" +#line 12914 "configure" #include "confdefs.h" #include @@ -12927,7 +12928,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12930: result: $ossh_result" >&5 + echo "$as_me:12931: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12936,21 +12937,21 @@ fi else - echo "$as_me:12939: result: no" >&5 + echo "$as_me:12940: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_id' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_id - echo "$as_me:12946: checking for ut_id field in utmp.h" >&5 + echo "$as_me:12947: checking for ut_id field in utmp.h" >&5 echo $ECHO_N "checking for ut_id field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12953 "configure" +#line 12954 "configure" #include "confdefs.h" #include @@ -12967,7 +12968,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12970: result: $ossh_result" >&5 + echo "$as_me:12971: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -12976,21 +12977,21 @@ fi else - echo "$as_me:12979: result: no" >&5 + echo "$as_me:12980: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_id' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_id - echo "$as_me:12986: checking for ut_id field in utmpx.h" >&5 + echo "$as_me:12987: checking for ut_id field in utmpx.h" >&5 echo $ECHO_N "checking for ut_id field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 12993 "configure" +#line 12994 "configure" #include "confdefs.h" #include @@ -13007,7 +13008,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13010: result: $ossh_result" >&5 + echo "$as_me:13011: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13016,21 +13017,21 @@ fi else - echo "$as_me:13019: result: no" >&5 + echo "$as_me:13020: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_addr' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr - echo "$as_me:13026: checking for ut_addr field in utmp.h" >&5 + echo "$as_me:13027: checking for ut_addr field in utmp.h" >&5 echo $ECHO_N "checking for ut_addr field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13033 "configure" +#line 13034 "configure" #include "confdefs.h" #include @@ -13047,7 +13048,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13050: result: $ossh_result" >&5 + echo "$as_me:13051: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13056,21 +13057,21 @@ fi else - echo "$as_me:13059: result: no" >&5 + echo "$as_me:13060: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_addr' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr - echo "$as_me:13066: checking for ut_addr field in utmpx.h" >&5 + echo "$as_me:13067: checking for ut_addr field in utmpx.h" >&5 echo $ECHO_N "checking for ut_addr field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13073 "configure" +#line 13074 "configure" #include "confdefs.h" #include @@ -13087,7 +13088,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13090: result: $ossh_result" >&5 + echo "$as_me:13091: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13096,21 +13097,21 @@ fi else - echo "$as_me:13099: result: no" >&5 + echo "$as_me:13100: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_addr_v6' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr_v6 - echo "$as_me:13106: checking for ut_addr_v6 field in utmp.h" >&5 + echo "$as_me:13107: checking for ut_addr_v6 field in utmp.h" >&5 echo $ECHO_N "checking for ut_addr_v6 field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13113 "configure" +#line 13114 "configure" #include "confdefs.h" #include @@ -13127,7 +13128,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13130: result: $ossh_result" >&5 + echo "$as_me:13131: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13136,21 +13137,21 @@ fi else - echo "$as_me:13139: result: no" >&5 + echo "$as_me:13140: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_addr_v6' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_addr_v6 - echo "$as_me:13146: checking for ut_addr_v6 field in utmpx.h" >&5 + echo "$as_me:13147: checking for ut_addr_v6 field in utmpx.h" >&5 echo $ECHO_N "checking for ut_addr_v6 field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13153 "configure" +#line 13154 "configure" #include "confdefs.h" #include @@ -13167,7 +13168,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13170: result: $ossh_result" >&5 + echo "$as_me:13171: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13176,21 +13177,21 @@ fi else - echo "$as_me:13179: result: no" >&5 + echo "$as_me:13180: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_exit' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_exit - echo "$as_me:13186: checking for ut_exit field in utmp.h" >&5 + echo "$as_me:13187: checking for ut_exit field in utmp.h" >&5 echo $ECHO_N "checking for ut_exit field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13193 "configure" +#line 13194 "configure" #include "confdefs.h" #include @@ -13207,7 +13208,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13210: result: $ossh_result" >&5 + echo "$as_me:13211: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13216,21 +13217,21 @@ fi else - echo "$as_me:13219: result: no" >&5 + echo "$as_me:13220: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_time' in header 'utmp.h' ossh_safe=`echo "utmp.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time - echo "$as_me:13226: checking for ut_time field in utmp.h" >&5 + echo "$as_me:13227: checking for ut_time field in utmp.h" >&5 echo $ECHO_N "checking for ut_time field in utmp.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13233 "configure" +#line 13234 "configure" #include "confdefs.h" #include @@ -13247,7 +13248,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13250: result: $ossh_result" >&5 + echo "$as_me:13251: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13256,21 +13257,21 @@ fi else - echo "$as_me:13259: result: no" >&5 + echo "$as_me:13260: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_time' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_time - echo "$as_me:13266: checking for ut_time field in utmpx.h" >&5 + echo "$as_me:13267: checking for ut_time field in utmpx.h" >&5 echo $ECHO_N "checking for ut_time field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13273 "configure" +#line 13274 "configure" #include "confdefs.h" #include @@ -13287,7 +13288,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13290: result: $ossh_result" >&5 + echo "$as_me:13291: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13296,21 +13297,21 @@ fi else - echo "$as_me:13299: result: no" >&5 + echo "$as_me:13300: result: no" >&5 echo "${ECHO_T}no" >&6 fi # look for field 'ut_tv' in header 'utmpx.h' ossh_safe=`echo "utmpx.h" | sed 'y%./+-%__p_%'` ossh_varname="ossh_cv_$ossh_safe""_has_"ut_tv - echo "$as_me:13306: checking for ut_tv field in utmpx.h" >&5 + echo "$as_me:13307: checking for ut_tv field in utmpx.h" >&5 echo $ECHO_N "checking for ut_tv field in utmpx.h... $ECHO_C" >&6 if eval "test \"\${$ossh_varname+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13313 "configure" +#line 13314 "configure" #include "confdefs.h" #include @@ -13327,7 +13328,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:13330: result: $ossh_result" >&5 + echo "$as_me:13331: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\EOF @@ -13336,17 +13337,17 @@ fi else - echo "$as_me:13339: result: no" >&5 + echo "$as_me:13340: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:13343: checking for struct stat.st_blksize" >&5 +echo "$as_me:13344: checking for struct stat.st_blksize" >&5 echo $ECHO_N "checking for struct stat.st_blksize... $ECHO_C" >&6 if test "${ac_cv_member_struct_stat_st_blksize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13349 "configure" +#line 13350 "configure" #include "confdefs.h" $ac_includes_default int @@ -13360,16 +13361,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13363: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13364: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13366: \$? = $ac_status" >&5 + echo "$as_me:13367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13369: \"$ac_try\"") >&5 + { (eval echo "$as_me:13370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13372: \$? = $ac_status" >&5 + echo "$as_me:13373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_member_struct_stat_st_blksize=yes else @@ -13379,7 +13380,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13382: result: $ac_cv_member_struct_stat_st_blksize" >&5 +echo "$as_me:13383: result: $ac_cv_member_struct_stat_st_blksize" >&5 echo "${ECHO_T}$ac_cv_member_struct_stat_st_blksize" >&6 if test $ac_cv_member_struct_stat_st_blksize = yes; then @@ -13389,14 +13390,14 @@ fi -echo "$as_me:13392: checking for ss_family field in struct sockaddr_storage" >&5 +echo "$as_me:13393: checking for ss_family field in struct sockaddr_storage" >&5 echo $ECHO_N "checking for ss_family field in struct sockaddr_storage... $ECHO_C" >&6 if test "${ac_cv_have_ss_family_in_struct_ss+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13399 "configure" +#line 13400 "configure" #include "confdefs.h" #include @@ -13411,16 +13412,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13414: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13415: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13417: \$? = $ac_status" >&5 + echo "$as_me:13418: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13420: \"$ac_try\"") >&5 + { (eval echo "$as_me:13421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13423: \$? = $ac_status" >&5 + echo "$as_me:13424: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ss_family_in_struct_ss="yes" else @@ -13431,7 +13432,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13434: result: $ac_cv_have_ss_family_in_struct_ss" >&5 +echo "$as_me:13435: result: $ac_cv_have_ss_family_in_struct_ss" >&5 echo "${ECHO_T}$ac_cv_have_ss_family_in_struct_ss" >&6 if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13440,14 +13441,14 @@ fi -echo "$as_me:13443: checking for __ss_family field in struct sockaddr_storage" >&5 +echo "$as_me:13444: checking for __ss_family field in struct sockaddr_storage" >&5 echo $ECHO_N "checking for __ss_family field in struct sockaddr_storage... $ECHO_C" >&6 if test "${ac_cv_have___ss_family_in_struct_ss+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13450 "configure" +#line 13451 "configure" #include "confdefs.h" #include @@ -13462,16 +13463,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13465: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13466: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13468: \$? = $ac_status" >&5 + echo "$as_me:13469: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13471: \"$ac_try\"") >&5 + { (eval echo "$as_me:13472: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13474: \$? = $ac_status" >&5 + echo "$as_me:13475: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have___ss_family_in_struct_ss="yes" else @@ -13483,7 +13484,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13486: result: $ac_cv_have___ss_family_in_struct_ss" >&5 +echo "$as_me:13487: result: $ac_cv_have___ss_family_in_struct_ss" >&5 echo "${ECHO_T}$ac_cv_have___ss_family_in_struct_ss" >&6 if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13492,14 +13493,14 @@ fi -echo "$as_me:13495: checking for pw_class field in struct passwd" >&5 +echo "$as_me:13496: checking for pw_class field in struct passwd" >&5 echo $ECHO_N "checking for pw_class field in struct passwd... $ECHO_C" >&6 if test "${ac_cv_have_pw_class_in_struct_passwd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13502 "configure" +#line 13503 "configure" #include "confdefs.h" #include @@ -13513,16 +13514,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13516: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13517: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13519: \$? = $ac_status" >&5 + echo "$as_me:13520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13522: \"$ac_try\"") >&5 + { (eval echo "$as_me:13523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13525: \$? = $ac_status" >&5 + echo "$as_me:13526: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_class_in_struct_passwd="yes" else @@ -13534,7 +13535,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13537: result: $ac_cv_have_pw_class_in_struct_passwd" >&5 +echo "$as_me:13538: result: $ac_cv_have_pw_class_in_struct_passwd" >&5 echo "${ECHO_T}$ac_cv_have_pw_class_in_struct_passwd" >&6 if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13543,14 +13544,14 @@ fi -echo "$as_me:13546: checking for pw_expire field in struct passwd" >&5 +echo "$as_me:13547: checking for pw_expire field in struct passwd" >&5 echo $ECHO_N "checking for pw_expire field in struct passwd... $ECHO_C" >&6 if test "${ac_cv_have_pw_expire_in_struct_passwd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13553 "configure" +#line 13554 "configure" #include "confdefs.h" #include @@ -13564,16 +13565,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13567: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13568: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13570: \$? = $ac_status" >&5 + echo "$as_me:13571: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13573: \"$ac_try\"") >&5 + { (eval echo "$as_me:13574: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13576: \$? = $ac_status" >&5 + echo "$as_me:13577: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_expire_in_struct_passwd="yes" else @@ -13585,7 +13586,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13588: result: $ac_cv_have_pw_expire_in_struct_passwd" >&5 +echo "$as_me:13589: result: $ac_cv_have_pw_expire_in_struct_passwd" >&5 echo "${ECHO_T}$ac_cv_have_pw_expire_in_struct_passwd" >&6 if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13594,14 +13595,14 @@ fi -echo "$as_me:13597: checking for pw_change field in struct passwd" >&5 +echo "$as_me:13598: checking for pw_change field in struct passwd" >&5 echo $ECHO_N "checking for pw_change field in struct passwd... $ECHO_C" >&6 if test "${ac_cv_have_pw_change_in_struct_passwd+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13604 "configure" +#line 13605 "configure" #include "confdefs.h" #include @@ -13615,16 +13616,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13618: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13619: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13621: \$? = $ac_status" >&5 + echo "$as_me:13622: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13624: \"$ac_try\"") >&5 + { (eval echo "$as_me:13625: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13627: \$? = $ac_status" >&5 + echo "$as_me:13628: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_change_in_struct_passwd="yes" else @@ -13636,7 +13637,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13639: result: $ac_cv_have_pw_change_in_struct_passwd" >&5 +echo "$as_me:13640: result: $ac_cv_have_pw_change_in_struct_passwd" >&5 echo "${ECHO_T}$ac_cv_have_pw_change_in_struct_passwd" >&6 if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13645,19 +13646,19 @@ fi -echo "$as_me:13648: checking for msg_accrights field in struct msghdr" >&5 +echo "$as_me:13649: checking for msg_accrights field in struct msghdr" >&5 echo $ECHO_N "checking for msg_accrights field in struct msghdr... $ECHO_C" >&6 if test "${ac_cv_have_accrights_in_msghdr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then - { { echo "$as_me:13655: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:13656: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 13660 "configure" +#line 13661 "configure" #include "confdefs.h" #include @@ -13674,15 +13675,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:13677: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13678: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13680: \$? = $ac_status" >&5 + echo "$as_me:13681: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:13682: \"$ac_try\"") >&5 + { (eval echo "$as_me:13683: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13685: \$? = $ac_status" >&5 + echo "$as_me:13686: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_accrights_in_msghdr="yes" else @@ -13696,7 +13697,7 @@ fi fi -echo "$as_me:13699: result: $ac_cv_have_accrights_in_msghdr" >&5 +echo "$as_me:13700: result: $ac_cv_have_accrights_in_msghdr" >&5 echo "${ECHO_T}$ac_cv_have_accrights_in_msghdr" >&6 if test "x$ac_cv_have_accrights_in_msghdr" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13705,19 +13706,19 @@ fi -echo "$as_me:13708: checking for msg_control field in struct msghdr" >&5 +echo "$as_me:13709: checking for msg_control field in struct msghdr" >&5 echo $ECHO_N "checking for msg_control field in struct msghdr... $ECHO_C" >&6 if test "${ac_cv_have_control_in_msghdr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then - { { echo "$as_me:13715: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:13716: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 13720 "configure" +#line 13721 "configure" #include "confdefs.h" #include @@ -13734,15 +13735,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:13737: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13738: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13740: \$? = $ac_status" >&5 + echo "$as_me:13741: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:13742: \"$ac_try\"") >&5 + { (eval echo "$as_me:13743: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13745: \$? = $ac_status" >&5 + echo "$as_me:13746: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_control_in_msghdr="yes" else @@ -13756,7 +13757,7 @@ fi fi -echo "$as_me:13759: result: $ac_cv_have_control_in_msghdr" >&5 +echo "$as_me:13760: result: $ac_cv_have_control_in_msghdr" >&5 echo "${ECHO_T}$ac_cv_have_control_in_msghdr" >&6 if test "x$ac_cv_have_control_in_msghdr" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13765,14 +13766,14 @@ fi -echo "$as_me:13768: checking if libc defines __progname" >&5 +echo "$as_me:13769: checking if libc defines __progname" >&5 echo $ECHO_N "checking if libc defines __progname... $ECHO_C" >&6 if test "${ac_cv_libc_defines___progname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13775 "configure" +#line 13776 "configure" #include "confdefs.h" int @@ -13784,16 +13785,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13787: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13788: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13790: \$? = $ac_status" >&5 + echo "$as_me:13791: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13793: \"$ac_try\"") >&5 + { (eval echo "$as_me:13794: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13796: \$? = $ac_status" >&5 + echo "$as_me:13797: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines___progname="yes" else @@ -13805,7 +13806,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13808: result: $ac_cv_libc_defines___progname" >&5 +echo "$as_me:13809: result: $ac_cv_libc_defines___progname" >&5 echo "${ECHO_T}$ac_cv_libc_defines___progname" >&6 if test "x$ac_cv_libc_defines___progname" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13814,14 +13815,14 @@ fi -echo "$as_me:13817: checking whether $CC implements __FUNCTION__" >&5 +echo "$as_me:13818: checking whether $CC implements __FUNCTION__" >&5 echo $ECHO_N "checking whether $CC implements __FUNCTION__... $ECHO_C" >&6 if test "${ac_cv_cc_implements___FUNCTION__+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13824 "configure" +#line 13825 "configure" #include "confdefs.h" #include @@ -13835,16 +13836,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13838: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13839: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13841: \$? = $ac_status" >&5 + echo "$as_me:13842: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13844: \"$ac_try\"") >&5 + { (eval echo "$as_me:13845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13847: \$? = $ac_status" >&5 + echo "$as_me:13848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_cc_implements___FUNCTION__="yes" else @@ -13856,7 +13857,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13859: result: $ac_cv_cc_implements___FUNCTION__" >&5 +echo "$as_me:13860: result: $ac_cv_cc_implements___FUNCTION__" >&5 echo "${ECHO_T}$ac_cv_cc_implements___FUNCTION__" >&6 if test "x$ac_cv_cc_implements___FUNCTION__" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13865,14 +13866,14 @@ fi -echo "$as_me:13868: checking whether $CC implements __func__" >&5 +echo "$as_me:13869: checking whether $CC implements __func__" >&5 echo $ECHO_N "checking whether $CC implements __func__... $ECHO_C" >&6 if test "${ac_cv_cc_implements___func__+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13875 "configure" +#line 13876 "configure" #include "confdefs.h" #include @@ -13886,16 +13887,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13889: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13890: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13892: \$? = $ac_status" >&5 + echo "$as_me:13893: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13895: \"$ac_try\"") >&5 + { (eval echo "$as_me:13896: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13898: \$? = $ac_status" >&5 + echo "$as_me:13899: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_cc_implements___func__="yes" else @@ -13907,7 +13908,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13910: result: $ac_cv_cc_implements___func__" >&5 +echo "$as_me:13911: result: $ac_cv_cc_implements___func__" >&5 echo "${ECHO_T}$ac_cv_cc_implements___func__" >&6 if test "x$ac_cv_cc_implements___func__" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13916,14 +13917,14 @@ fi -echo "$as_me:13919: checking whether getopt has optreset support" >&5 +echo "$as_me:13920: checking whether getopt has optreset support" >&5 echo $ECHO_N "checking whether getopt has optreset support... $ECHO_C" >&6 if test "${ac_cv_have_getopt_optreset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13926 "configure" +#line 13927 "configure" #include "confdefs.h" #include @@ -13937,16 +13938,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13940: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13941: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13943: \$? = $ac_status" >&5 + echo "$as_me:13944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13946: \"$ac_try\"") >&5 + { (eval echo "$as_me:13947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13949: \$? = $ac_status" >&5 + echo "$as_me:13950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_getopt_optreset="yes" else @@ -13958,7 +13959,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13961: result: $ac_cv_have_getopt_optreset" >&5 +echo "$as_me:13962: result: $ac_cv_have_getopt_optreset" >&5 echo "${ECHO_T}$ac_cv_have_getopt_optreset" >&6 if test "x$ac_cv_have_getopt_optreset" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -13967,14 +13968,14 @@ fi -echo "$as_me:13970: checking if libc defines sys_errlist" >&5 +echo "$as_me:13971: checking if libc defines sys_errlist" >&5 echo $ECHO_N "checking if libc defines sys_errlist... $ECHO_C" >&6 if test "${ac_cv_libc_defines_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 13977 "configure" +#line 13978 "configure" #include "confdefs.h" int @@ -13986,16 +13987,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13989: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13990: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13992: \$? = $ac_status" >&5 + echo "$as_me:13993: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13995: \"$ac_try\"") >&5 + { (eval echo "$as_me:13996: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13998: \$? = $ac_status" >&5 + echo "$as_me:13999: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines_sys_errlist="yes" else @@ -14007,7 +14008,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14010: result: $ac_cv_libc_defines_sys_errlist" >&5 +echo "$as_me:14011: result: $ac_cv_libc_defines_sys_errlist" >&5 echo "${ECHO_T}$ac_cv_libc_defines_sys_errlist" >&6 if test "x$ac_cv_libc_defines_sys_errlist" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -14016,14 +14017,14 @@ fi -echo "$as_me:14019: checking if libc defines sys_nerr" >&5 +echo "$as_me:14020: checking if libc defines sys_nerr" >&5 echo $ECHO_N "checking if libc defines sys_nerr... $ECHO_C" >&6 if test "${ac_cv_libc_defines_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14026 "configure" +#line 14027 "configure" #include "confdefs.h" int @@ -14035,16 +14036,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14039: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14041: \$? = $ac_status" >&5 + echo "$as_me:14042: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14044: \"$ac_try\"") >&5 + { (eval echo "$as_me:14045: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14047: \$? = $ac_status" >&5 + echo "$as_me:14048: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines_sys_nerr="yes" else @@ -14056,7 +14057,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14059: result: $ac_cv_libc_defines_sys_nerr" >&5 +echo "$as_me:14060: result: $ac_cv_libc_defines_sys_nerr" >&5 echo "${ECHO_T}$ac_cv_libc_defines_sys_nerr" >&6 if test "x$ac_cv_libc_defines_sys_nerr" = "xyes" ; then cat >>confdefs.h <<\EOF @@ -14087,23 +14088,23 @@ for ac_header in sectok.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:14090: checking for $ac_header" >&5 +echo "$as_me:14091: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14096 "configure" +#line 14097 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:14100: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:14101: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:14106: \$? = $ac_status" >&5 + echo "$as_me:14107: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -14122,7 +14123,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:14125: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:14126: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 + { { echo "$as_me:14137: error: Can't find sectok.h" >&5 echo "$as_me: error: Can't find sectok.h" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:14141: checking for sectok_open in -lsectok" >&5 +echo "$as_me:14142: checking for sectok_open in -lsectok" >&5 echo $ECHO_N "checking for sectok_open in -lsectok... $ECHO_C" >&6 if test "${ac_cv_lib_sectok_sectok_open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14146,7 +14147,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lsectok $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14149 "configure" +#line 14150 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14165,16 +14166,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14168: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14169: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14171: \$? = $ac_status" >&5 + echo "$as_me:14172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14174: \"$ac_try\"") >&5 + { (eval echo "$as_me:14175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14177: \$? = $ac_status" >&5 + echo "$as_me:14178: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_sectok_sectok_open=yes else @@ -14185,7 +14186,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14188: result: $ac_cv_lib_sectok_sectok_open" >&5 +echo "$as_me:14189: result: $ac_cv_lib_sectok_sectok_open" >&5 echo "${ECHO_T}$ac_cv_lib_sectok_sectok_open" >&6 if test $ac_cv_lib_sectok_sectok_open = yes; then cat >>confdefs.h <&5 + { { echo "$as_me:14201: error: Can't find libsectok" >&5 echo "$as_me: error: Can't find libsectok" >&2;} { (exit 1); exit 1; }; } fi @@ -14227,7 +14228,7 @@ OPENSC_CONFIG=$opensc_config_prefix/bin/opensc-config # Extract the first word of "opensc-config", so it can be a program name with args. set dummy opensc-config; ac_word=$2 -echo "$as_me:14230: checking for $ac_word" >&5 +echo "$as_me:14231: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_OPENSC_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14244,7 +14245,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_OPENSC_CONFIG="$ac_dir/$ac_word" - echo "$as_me:14247: found $ac_dir/$ac_word" >&5 + echo "$as_me:14248: found $ac_dir/$ac_word" >&5 break fi done @@ -14256,10 +14257,10 @@ OPENSC_CONFIG=$ac_cv_path_OPENSC_CONFIG if test -n "$OPENSC_CONFIG"; then - echo "$as_me:14259: result: $OPENSC_CONFIG" >&5 + echo "$as_me:14260: result: $OPENSC_CONFIG" >&5 echo "${ECHO_T}$OPENSC_CONFIG" >&6 else - echo "$as_me:14262: result: no" >&5 + echo "$as_me:14263: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -14293,7 +14294,7 @@ #define DNS 1 EOF - echo "$as_me:14296: checking for library containing getrrsetbyname" >&5 + echo "$as_me:14297: checking for library containing getrrsetbyname" >&5 echo $ECHO_N "checking for library containing getrrsetbyname... $ECHO_C" >&6 if test "${ac_cv_search_getrrsetbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14301,7 +14302,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_getrrsetbyname=no cat >conftest.$ac_ext <<_ACEOF -#line 14304 "configure" +#line 14305 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14320,16 +14321,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14323: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14324: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14326: \$? = $ac_status" >&5 + echo "$as_me:14327: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14329: \"$ac_try\"") >&5 + { (eval echo "$as_me:14330: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14332: \$? = $ac_status" >&5 + echo "$as_me:14333: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_getrrsetbyname="none required" else @@ -14341,7 +14342,7 @@ for ac_lib in resolv; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14344 "configure" +#line 14345 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14360,16 +14361,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14363: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14366: \$? = $ac_status" >&5 + echo "$as_me:14367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14369: \"$ac_try\"") >&5 + { (eval echo "$as_me:14370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14372: \$? = $ac_status" >&5 + echo "$as_me:14373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_getrrsetbyname="-l$ac_lib" break @@ -14382,7 +14383,7 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:14385: result: $ac_cv_search_getrrsetbyname" >&5 +echo "$as_me:14386: result: $ac_cv_search_getrrsetbyname" >&5 echo "${ECHO_T}$ac_cv_search_getrrsetbyname" >&6 if test "$ac_cv_search_getrrsetbyname" != no; then test "$ac_cv_search_getrrsetbyname" = "none required" || LIBS="$ac_cv_search_getrrsetbyname $LIBS" @@ -14393,7 +14394,7 @@ else # Needed by our getrrsetbyname() - echo "$as_me:14396: checking for library containing res_query" >&5 + echo "$as_me:14397: checking for library containing res_query" >&5 echo $ECHO_N "checking for library containing res_query... $ECHO_C" >&6 if test "${ac_cv_search_res_query+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14401,7 +14402,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_res_query=no cat >conftest.$ac_ext <<_ACEOF -#line 14404 "configure" +#line 14405 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14420,16 +14421,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14423: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14424: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14426: \$? = $ac_status" >&5 + echo "$as_me:14427: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14429: \"$ac_try\"") >&5 + { (eval echo "$as_me:14430: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14432: \$? = $ac_status" >&5 + echo "$as_me:14433: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_res_query="none required" else @@ -14441,7 +14442,7 @@ for ac_lib in resolv; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14444 "configure" +#line 14445 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14460,16 +14461,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14463: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14464: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14466: \$? = $ac_status" >&5 + echo "$as_me:14467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14469: \"$ac_try\"") >&5 + { (eval echo "$as_me:14470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14472: \$? = $ac_status" >&5 + echo "$as_me:14473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_res_query="-l$ac_lib" break @@ -14482,14 +14483,14 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:14485: result: $ac_cv_search_res_query" >&5 +echo "$as_me:14486: result: $ac_cv_search_res_query" >&5 echo "${ECHO_T}$ac_cv_search_res_query" >&6 if test "$ac_cv_search_res_query" != no; then test "$ac_cv_search_res_query" = "none required" || LIBS="$ac_cv_search_res_query $LIBS" fi - echo "$as_me:14492: checking for library containing dn_expand" >&5 + echo "$as_me:14493: checking for library containing dn_expand" >&5 echo $ECHO_N "checking for library containing dn_expand... $ECHO_C" >&6 if test "${ac_cv_search_dn_expand+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14497,7 +14498,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_dn_expand=no cat >conftest.$ac_ext <<_ACEOF -#line 14500 "configure" +#line 14501 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14516,16 +14517,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14519: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14520: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14522: \$? = $ac_status" >&5 + echo "$as_me:14523: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14525: \"$ac_try\"") >&5 + { (eval echo "$as_me:14526: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14528: \$? = $ac_status" >&5 + echo "$as_me:14529: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_dn_expand="none required" else @@ -14537,7 +14538,7 @@ for ac_lib in resolv; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14540 "configure" +#line 14541 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14556,16 +14557,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14559: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14560: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14562: \$? = $ac_status" >&5 + echo "$as_me:14563: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14565: \"$ac_try\"") >&5 + { (eval echo "$as_me:14566: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14568: \$? = $ac_status" >&5 + echo "$as_me:14569: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_dn_expand="-l$ac_lib" break @@ -14578,7 +14579,7 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:14581: result: $ac_cv_search_dn_expand" >&5 +echo "$as_me:14582: result: $ac_cv_search_dn_expand" >&5 echo "${ECHO_T}$ac_cv_search_dn_expand" >&6 if test "$ac_cv_search_dn_expand" != no; then test "$ac_cv_search_dn_expand" = "none required" || LIBS="$ac_cv_search_dn_expand $LIBS" @@ -14588,13 +14589,13 @@ for ac_func in _getshort _getlong do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:14591: checking for $ac_func" >&5 +echo "$as_me:14592: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14597 "configure" +#line 14598 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -14625,16 +14626,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14628: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14629: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14631: \$? = $ac_status" >&5 + echo "$as_me:14632: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14634: \"$ac_try\"") >&5 + { (eval echo "$as_me:14635: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14637: \$? = $ac_status" >&5 + echo "$as_me:14638: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -14644,7 +14645,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:14647: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:14648: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 + echo "$as_me:14658: checking for HEADER.ad" >&5 echo $ECHO_N "checking for HEADER.ad... $ECHO_C" >&6 if test "${ac_cv_member_HEADER_ad+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 14663 "configure" +#line 14664 "configure" #include "confdefs.h" #include @@ -14675,16 +14676,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14678: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14679: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14681: \$? = $ac_status" >&5 + echo "$as_me:14682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14684: \"$ac_try\"") >&5 + { (eval echo "$as_me:14685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14687: \$? = $ac_status" >&5 + echo "$as_me:14688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_member_HEADER_ad=yes else @@ -14694,7 +14695,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:14697: result: $ac_cv_member_HEADER_ad" >&5 +echo "$as_me:14698: result: $ac_cv_member_HEADER_ad" >&5 echo "${ECHO_T}$ac_cv_member_HEADER_ad" >&6 if test $ac_cv_member_HEADER_ad = yes; then cat >>confdefs.h <<\EOF @@ -14729,10 +14730,10 @@ EOF KRB5_MSG="yes" - echo "$as_me:14732: checking whether we are using Heimdal" >&5 + echo "$as_me:14733: checking whether we are using Heimdal" >&5 echo $ECHO_N "checking whether we are using Heimdal... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14735 "configure" +#line 14736 "configure" #include "confdefs.h" #include int @@ -14744,18 +14745,18 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14747: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14748: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14750: \$? = $ac_status" >&5 + echo "$as_me:14751: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14753: \"$ac_try\"") >&5 + { (eval echo "$as_me:14754: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14756: \$? = $ac_status" >&5 + echo "$as_me:14757: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:14758: result: yes" >&5 + echo "$as_me:14759: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define HEIMDAL 1 @@ -14766,7 +14767,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:14769: result: no" >&5 + echo "$as_me:14770: result: no" >&5 echo "${ECHO_T}no" >&6 K5LIBS="-lkrb5 -lk5crypto -lcom_err" @@ -14778,7 +14779,7 @@ if test ! -z "$blibpath" ; then blibpath="$blibpath:${KRB5ROOT}/lib" fi - echo "$as_me:14781: checking for library containing dn_expand" >&5 + echo "$as_me:14782: checking for library containing dn_expand" >&5 echo $ECHO_N "checking for library containing dn_expand... $ECHO_C" >&6 if test "${ac_cv_search_dn_expand+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14786,7 +14787,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_dn_expand=no cat >conftest.$ac_ext <<_ACEOF -#line 14789 "configure" +#line 14790 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14805,16 +14806,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14808: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14809: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14811: \$? = $ac_status" >&5 + echo "$as_me:14812: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14814: \"$ac_try\"") >&5 + { (eval echo "$as_me:14815: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14817: \$? = $ac_status" >&5 + echo "$as_me:14818: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_dn_expand="none required" else @@ -14826,7 +14827,7 @@ for ac_lib in resolv; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14829 "configure" +#line 14830 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14845,16 +14846,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14848: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14849: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14851: \$? = $ac_status" >&5 + echo "$as_me:14852: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14854: \"$ac_try\"") >&5 + { (eval echo "$as_me:14855: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14857: \$? = $ac_status" >&5 + echo "$as_me:14858: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_dn_expand="-l$ac_lib" break @@ -14867,14 +14868,14 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:14870: result: $ac_cv_search_dn_expand" >&5 +echo "$as_me:14871: result: $ac_cv_search_dn_expand" >&5 echo "${ECHO_T}$ac_cv_search_dn_expand" >&6 if test "$ac_cv_search_dn_expand" != no; then test "$ac_cv_search_dn_expand" = "none required" || LIBS="$ac_cv_search_dn_expand $LIBS" fi - echo "$as_me:14877: checking for gss_init_sec_context in -lgssapi" >&5 + echo "$as_me:14878: checking for gss_init_sec_context in -lgssapi" >&5 echo $ECHO_N "checking for gss_init_sec_context in -lgssapi... $ECHO_C" >&6 if test "${ac_cv_lib_gssapi_gss_init_sec_context+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14882,7 +14883,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgssapi $K5LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14885 "configure" +#line 14886 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14901,16 +14902,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14904: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14905: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14907: \$? = $ac_status" >&5 + echo "$as_me:14908: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14910: \"$ac_try\"") >&5 + { (eval echo "$as_me:14911: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14913: \$? = $ac_status" >&5 + echo "$as_me:14914: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gssapi_gss_init_sec_context=yes else @@ -14921,7 +14922,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14924: result: $ac_cv_lib_gssapi_gss_init_sec_context" >&5 +echo "$as_me:14925: result: $ac_cv_lib_gssapi_gss_init_sec_context" >&5 echo "${ECHO_T}$ac_cv_lib_gssapi_gss_init_sec_context" >&6 if test $ac_cv_lib_gssapi_gss_init_sec_context = yes; then cat >>confdefs.h <<\EOF @@ -14930,7 +14931,7 @@ K5LIBS="-lgssapi $K5LIBS" else - echo "$as_me:14933: checking for gss_init_sec_context in -lgssapi_krb5" >&5 + echo "$as_me:14934: checking for gss_init_sec_context in -lgssapi_krb5" >&5 echo $ECHO_N "checking for gss_init_sec_context in -lgssapi_krb5... $ECHO_C" >&6 if test "${ac_cv_lib_gssapi_krb5_gss_init_sec_context+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14938,7 +14939,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgssapi_krb5 $K5LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14941 "configure" +#line 14942 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14957,16 +14958,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14960: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14963: \$? = $ac_status" >&5 + echo "$as_me:14964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14966: \"$ac_try\"") >&5 + { (eval echo "$as_me:14967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14969: \$? = $ac_status" >&5 + echo "$as_me:14970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gssapi_krb5_gss_init_sec_context=yes else @@ -14977,7 +14978,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14980: result: $ac_cv_lib_gssapi_krb5_gss_init_sec_context" >&5 +echo "$as_me:14981: result: $ac_cv_lib_gssapi_krb5_gss_init_sec_context" >&5 echo "${ECHO_T}$ac_cv_lib_gssapi_krb5_gss_init_sec_context" >&6 if test $ac_cv_lib_gssapi_krb5_gss_init_sec_context = yes; then cat >>confdefs.h <<\EOF @@ -14986,29 +14987,29 @@ K5LIBS="-lgssapi_krb5 $K5LIBS" else - { echo "$as_me:14989: WARNING: Cannot find any suitable gss-api library - build may fail" >&5 + { echo "$as_me:14990: WARNING: Cannot find any suitable gss-api library - build may fail" >&5 echo "$as_me: WARNING: Cannot find any suitable gss-api library - build may fail" >&2;} fi fi - echo "$as_me:14995: checking for gssapi.h" >&5 + echo "$as_me:14996: checking for gssapi.h" >&5 echo $ECHO_N "checking for gssapi.h... $ECHO_C" >&6 if test "${ac_cv_header_gssapi_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15001 "configure" +#line 15002 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:15005: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15006: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:15011: \$? = $ac_status" >&5 + echo "$as_me:15012: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15027,7 +15028,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15030: result: $ac_cv_header_gssapi_h" >&5 +echo "$as_me:15031: result: $ac_cv_header_gssapi_h" >&5 echo "${ECHO_T}$ac_cv_header_gssapi_h" >&6 if test $ac_cv_header_gssapi_h = yes; then : @@ -15038,23 +15039,23 @@ for ac_header in gssapi.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:15041: checking for $ac_header" >&5 +echo "$as_me:15042: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15047 "configure" +#line 15048 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:15051: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15052: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:15057: \$? = $ac_status" >&5 + echo "$as_me:15058: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15073,7 +15074,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15076: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:15077: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 + { echo "$as_me:15085: WARNING: Cannot find any suitable gss-api header - build may fail" >&5 echo "$as_me: WARNING: Cannot find any suitable gss-api header - build may fail" >&2;} fi @@ -15091,23 +15092,23 @@ oldCPP="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I${KRB5ROOT}/include/gssapi" - echo "$as_me:15094: checking for gssapi_krb5.h" >&5 + echo "$as_me:15095: checking for gssapi_krb5.h" >&5 echo $ECHO_N "checking for gssapi_krb5.h... $ECHO_C" >&6 if test "${ac_cv_header_gssapi_krb5_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15100 "configure" +#line 15101 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:15104: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15105: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:15110: \$? = $ac_status" >&5 + echo "$as_me:15111: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15126,7 +15127,7 @@ fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15129: result: $ac_cv_header_gssapi_krb5_h" >&5 +echo "$as_me:15130: result: $ac_cv_header_gssapi_krb5_h" >&5 echo "${ECHO_T}$ac_cv_header_gssapi_krb5_h" >&6 if test $ac_cv_header_gssapi_krb5_h = yes; then : @@ -15171,7 +15172,7 @@ TestPath="${TestPath}${PATH_SEPARATOR}/usr/openwin/bin" # Extract the first word of "xauth", so it can be a program name with args. set dummy xauth; ac_word=$2 -echo "$as_me:15174: checking for $ac_word" >&5 +echo "$as_me:15175: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_xauth_path+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15188,7 +15189,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_xauth_path="$ac_dir/$ac_word" - echo "$as_me:15191: found $ac_dir/$ac_word" >&5 + echo "$as_me:15192: found $ac_dir/$ac_word" >&5 break fi done @@ -15199,10 +15200,10 @@ xauth_path=$ac_cv_path_xauth_path if test -n "$xauth_path"; then - echo "$as_me:15202: result: $xauth_path" >&5 + echo "$as_me:15203: result: $xauth_path" >&5 echo "${ECHO_T}$xauth_path" >&6 else - echo "$as_me:15205: result: no" >&5 + echo "$as_me:15206: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -15246,13 +15247,13 @@ if test -z "$no_dev_ptmx" ; then if test "x$disable_ptmx_check" != "xyes" ; then - echo "$as_me:15249: checking for \"/dev/ptmx\"" >&5 + echo "$as_me:15250: checking for \"/dev/ptmx\"" >&5 echo $ECHO_N "checking for \"/dev/ptmx\"... $ECHO_C" >&6 if test "${ac_cv_file___dev_ptmx_+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else test "$cross_compiling" = yes && - { { echo "$as_me:15255: error: cannot check for file existence when cross compiling" >&5 + { { echo "$as_me:15256: error: cannot check for file existence when cross compiling" >&5 echo "$as_me: error: cannot check for file existence when cross compiling" >&2;} { (exit 1); exit 1; }; } if test -r ""/dev/ptmx""; then @@ -15261,7 +15262,7 @@ ac_cv_file___dev_ptmx_=no fi fi -echo "$as_me:15264: result: $ac_cv_file___dev_ptmx_" >&5 +echo "$as_me:15265: result: $ac_cv_file___dev_ptmx_" >&5 echo "${ECHO_T}$ac_cv_file___dev_ptmx_" >&6 if test $ac_cv_file___dev_ptmx_ = yes; then @@ -15275,13 +15276,13 @@ fi fi -echo "$as_me:15278: checking for \"/dev/ptc\"" >&5 +echo "$as_me:15279: checking for \"/dev/ptc\"" >&5 echo $ECHO_N "checking for \"/dev/ptc\"... $ECHO_C" >&6 if test "${ac_cv_file___dev_ptc_+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else test "$cross_compiling" = yes && - { { echo "$as_me:15284: error: cannot check for file existence when cross compiling" >&5 + { { echo "$as_me:15285: error: cannot check for file existence when cross compiling" >&5 echo "$as_me: error: cannot check for file existence when cross compiling" >&2;} { (exit 1); exit 1; }; } if test -r ""/dev/ptc""; then @@ -15290,7 +15291,7 @@ ac_cv_file___dev_ptc_=no fi fi -echo "$as_me:15293: result: $ac_cv_file___dev_ptc_" >&5 +echo "$as_me:15294: result: $ac_cv_file___dev_ptc_" >&5 echo "${ECHO_T}$ac_cv_file___dev_ptc_" >&6 if test $ac_cv_file___dev_ptc_ = yes; then @@ -15313,7 +15314,7 @@ MANTYPE=$withval ;; *) - { { echo "$as_me:15316: error: invalid man type: $withval" >&5 + { { echo "$as_me:15317: error: invalid man type: $withval" >&5 echo "$as_me: error: invalid man type: $withval" >&2;} { (exit 1); exit 1; }; } ;; @@ -15326,7 +15327,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:15329: checking for $ac_word" >&5 +echo "$as_me:15330: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NROFF+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15343,7 +15344,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_NROFF="$ac_dir/$ac_word" - echo "$as_me:15346: found $ac_dir/$ac_word" >&5 + echo "$as_me:15347: found $ac_dir/$ac_word" >&5 break fi done @@ -15354,10 +15355,10 @@ NROFF=$ac_cv_path_NROFF if test -n "$NROFF"; then - echo "$as_me:15357: result: $NROFF" >&5 + echo "$as_me:15358: result: $NROFF" >&5 echo "${ECHO_T}$NROFF" >&6 else - echo "$as_me:15360: result: no" >&5 + echo "$as_me:15361: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -15414,10 +15415,10 @@ fi; if test -z "$disable_shadow" ; then - echo "$as_me:15417: checking if the systems has expire shadow information" >&5 + echo "$as_me:15418: checking if the systems has expire shadow information" >&5 echo $ECHO_N "checking if the systems has expire shadow information... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15420 "configure" +#line 15421 "configure" #include "confdefs.h" #include @@ -15433,16 +15434,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15436: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15437: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15439: \$? = $ac_status" >&5 + echo "$as_me:15440: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15442: \"$ac_try\"") >&5 + { (eval echo "$as_me:15443: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15445: \$? = $ac_status" >&5 + echo "$as_me:15446: \$? = $ac_status" >&5 (exit $ac_status); }; }; then sp_expire_available=yes else @@ -15453,14 +15454,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "x$sp_expire_available" = "xyes" ; then - echo "$as_me:15456: result: yes" >&5 + echo "$as_me:15457: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define HAS_SHADOW_EXPIRE 1 EOF else - echo "$as_me:15463: result: no" >&5 + echo "$as_me:15464: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi @@ -15497,13 +15498,13 @@ else -echo "$as_me:15500: checking for \"/etc/default/login\"" >&5 +echo "$as_me:15501: checking for \"/etc/default/login\"" >&5 echo $ECHO_N "checking for \"/etc/default/login\"... $ECHO_C" >&6 if test "${ac_cv_file___etc_default_login_+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else test "$cross_compiling" = yes && - { { echo "$as_me:15506: error: cannot check for file existence when cross compiling" >&5 + { { echo "$as_me:15507: error: cannot check for file existence when cross compiling" >&5 echo "$as_me: error: cannot check for file existence when cross compiling" >&2;} { (exit 1); exit 1; }; } if test -r ""/etc/default/login""; then @@ -15512,7 +15513,7 @@ ac_cv_file___etc_default_login_=no fi fi -echo "$as_me:15515: result: $ac_cv_file___etc_default_login_" >&5 +echo "$as_me:15516: result: $ac_cv_file___etc_default_login_" >&5 echo "${ECHO_T}$ac_cv_file___etc_default_login_" >&6 if test $ac_cv_file___etc_default_login_ = yes; then external_path_file=/etc/default/login @@ -15540,7 +15541,7 @@ withval="$with_default_path" if test "x$external_path_file" = "x/etc/login.conf" ; then - { echo "$as_me:15543: WARNING: + { echo "$as_me:15544: WARNING: --with-default-path=PATH has no effect on this system. Edit /etc/login.conf instead." >&5 echo "$as_me: WARNING: @@ -15548,7 +15549,7 @@ Edit /etc/login.conf instead." >&2;} elif test "x$withval" != "xno" ; then if test ! -z "$external_path_file" ; then - { echo "$as_me:15551: WARNING: + { echo "$as_me:15552: WARNING: --with-default-path=PATH will only be used if PATH is not defined in $external_path_file ." >&5 echo "$as_me: WARNING: @@ -15561,11 +15562,11 @@ else if test "x$external_path_file" = "x/etc/login.conf" ; then - { echo "$as_me:15564: WARNING: Make sure the path to scp is in /etc/login.conf" >&5 + { echo "$as_me:15565: WARNING: Make sure the path to scp is in /etc/login.conf" >&5 echo "$as_me: WARNING: Make sure the path to scp is in /etc/login.conf" >&2;} else if test ! -z "$external_path_file" ; then - { echo "$as_me:15568: WARNING: + { echo "$as_me:15569: WARNING: If PATH is defined in $external_path_file, ensure the path to scp is included, otherwise scp will not work." >&5 echo "$as_me: WARNING: @@ -15577,7 +15578,7 @@ else cat >conftest.$ac_ext <<_ACEOF -#line 15580 "configure" +#line 15581 "configure" #include "confdefs.h" /* find out what STDPATH is */ @@ -15614,15 +15615,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:15617: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15620: \$? = $ac_status" >&5 + echo "$as_me:15621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:15622: \"$ac_try\"") >&5 + { (eval echo "$as_me:15623: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15625: \$? = $ac_status" >&5 + echo "$as_me:15626: \$? = $ac_status" >&5 (exit $ac_status); }; }; then user_path=`cat conftest.stdpath` else @@ -15646,7 +15647,7 @@ echo $user_path | grep "^$t_bindir" > /dev/null 2>&1 if test $? -ne 0 ; then user_path=$user_path:$t_bindir - echo "$as_me:15649: result: Adding $t_bindir to USER_PATH so scp will work" >&5 + echo "$as_me:15650: result: Adding $t_bindir to USER_PATH so scp will work" >&5 echo "${ECHO_T}Adding $t_bindir to USER_PATH so scp will work" >&6 fi fi @@ -15676,7 +15677,7 @@ fi; -echo "$as_me:15679: checking if we need to convert IPv4 in IPv6-mapped addresses" >&5 +echo "$as_me:15680: checking if we need to convert IPv4 in IPv6-mapped addresses" >&5 echo $ECHO_N "checking if we need to convert IPv4 in IPv6-mapped addresses... $ECHO_C" >&6 IPV4_IN6_HACK_MSG="no" @@ -15685,7 +15686,7 @@ withval="$with_4in6" if test "x$withval" != "xno" ; then - echo "$as_me:15688: result: yes" >&5 + echo "$as_me:15689: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define IPV4_IN_IPV6 1 @@ -15693,14 +15694,14 @@ IPV4_IN6_HACK_MSG="yes" else - echo "$as_me:15696: result: no" >&5 + echo "$as_me:15697: result: no" >&5 echo "${ECHO_T}no" >&6 fi else if test "x$inet6_default_4in6" = "xyes"; then - echo "$as_me:15703: result: yes (default)" >&5 + echo "$as_me:15704: result: yes (default)" >&5 echo "${ECHO_T}yes (default)" >&6 cat >>confdefs.h <<\EOF #define IPV4_IN_IPV6 1 @@ -15708,7 +15709,7 @@ IPV4_IN6_HACK_MSG="yes" else - echo "$as_me:15711: result: no (default)" >&5 + echo "$as_me:15712: result: no (default)" >&5 echo "${ECHO_T}no (default)" >&6 fi @@ -15771,18 +15772,173 @@ fi +ssh_ocsp="no" +# Check whether --enable-ocsp or --disable-ocsp was given. +if test "${enable_ocsp+set}" = set; then + enableval="$enable_ocsp" + + if test "x$enableval" = "xyes"; then + if test "x$ssh_x509store" = "xyes"; then + ssh_ocsp="yes" + else + { { echo "$as_me:15784: error: cannot enable OCSP when x509store is disabled" >&5 +echo "$as_me: error: cannot enable OCSP when x509store is disabled" >&2;} + { (exit 1); exit 1; }; } + fi + fi + +fi; +if test "x$ssh_ocsp" = "xyes"; then + +for ac_func in OCSP_sendreq_bio +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +echo "$as_me:15796: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 +if eval "test \"\${$as_ac_var+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +#line 15802 "configure" +#include "confdefs.h" +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. */ +#include +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char $ac_func (); +char (*f) (); + +int +main () +{ +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) +choke me +#else +f = $ac_func; +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:15833: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:15836: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:15839: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:15842: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +eval "$as_ac_var=no" +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext +fi +echo "$as_me:15852: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <&5 +echo $ECHO_N "checking for openssl/ocsp.h... $ECHO_C" >&6 +if test "${ac_cv_header_openssl_ocsp_h+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +#line 15865 "configure" +#include "confdefs.h" +#include +_ACEOF +if { (eval echo "$as_me:15869: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + egrep -v '^ *\+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:15875: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + ac_cv_header_openssl_ocsp_h=yes +else + echo "$as_me: failed program was:" >&5 + cat conftest.$ac_ext >&5 + ac_cv_header_openssl_ocsp_h=no +fi +rm -f conftest.err conftest.$ac_ext +fi +echo "$as_me:15894: result: $ac_cv_header_openssl_ocsp_h" >&5 +echo "${ECHO_T}$ac_cv_header_openssl_ocsp_h" >&6 +if test $ac_cv_header_openssl_ocsp_h = yes; then + : +else + + ssh_ocsp="no" + { { echo "$as_me:15901: error: OCSP header not found" >&5 +echo "$as_me: error: OCSP header not found" >&2;} + { (exit 1); exit 1; }; } + +fi + +else + + ssh_ocsp="no" + { echo "$as_me:15910: WARNING: Cannot find OCSP functions - OCSP is disabled" >&5 +echo "$as_me: WARNING: Cannot find OCSP functions - OCSP is disabled" >&2;} + +fi +done + +fi +if test "x$ssh_ocsp" = "xyes"; then + +cat >>confdefs.h <&5 + echo "$as_me:15933: checking for Email in X.509 'Distinguished Name'" >&5 echo $ECHO_N "checking for Email in X.509 'Distinguished Name'... $ECHO_C" >&6 if test "$cross_compiling" = yes; then - { { echo "$as_me:15780: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:15936: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 15785 "configure" +#line 15941 "configure" #include "confdefs.h" #include @@ -15798,18 +15954,18 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:15801: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15957: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15804: \$? = $ac_status" >&5 + echo "$as_me:15960: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:15806: \"$ac_try\"") >&5 + { (eval echo "$as_me:15962: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15809: \$? = $ac_status" >&5 + echo "$as_me:15965: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:15812: result: yes" >&5 + echo "$as_me:15968: result: yes" >&5 echo "${ECHO_T}yes" >&6 else @@ -15817,7 +15973,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:15820: result: no" >&5 + echo "$as_me:15976: result: no" >&5 echo "${ECHO_T}no" >&6 ssh_x509dn_email="no" @@ -15850,7 +16006,7 @@ if test "x$withval" != "xno" ; then piddir=$withval if test ! -d $piddir ; then - { echo "$as_me:15853: WARNING: ** no $piddir directory on this system **" >&5 + { echo "$as_me:16009: WARNING: ** no $piddir directory on this system **" >&5 echo "$as_me: WARNING: ** no $piddir directory on this system **" >&2;} fi fi @@ -15973,10 +16129,10 @@ fi; -echo "$as_me:15976: checking if your system defines LASTLOG_FILE" >&5 +echo "$as_me:16132: checking if your system defines LASTLOG_FILE" >&5 echo $ECHO_N "checking if your system defines LASTLOG_FILE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15979 "configure" +#line 16135 "configure" #include "confdefs.h" #include @@ -16000,29 +16156,29 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16003: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16159: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16006: \$? = $ac_status" >&5 + echo "$as_me:16162: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16009: \"$ac_try\"") >&5 + { (eval echo "$as_me:16165: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16012: \$? = $ac_status" >&5 + echo "$as_me:16168: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16014: result: yes" >&5 + echo "$as_me:16170: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:16020: result: no" >&5 + echo "$as_me:16176: result: no" >&5 echo "${ECHO_T}no" >&6 - echo "$as_me:16022: checking if your system defines _PATH_LASTLOG" >&5 + echo "$as_me:16178: checking if your system defines _PATH_LASTLOG" >&5 echo $ECHO_N "checking if your system defines _PATH_LASTLOG... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16025 "configure" +#line 16181 "configure" #include "confdefs.h" #include @@ -16043,24 +16199,24 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16046: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16202: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16049: \$? = $ac_status" >&5 + echo "$as_me:16205: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16052: \"$ac_try\"") >&5 + { (eval echo "$as_me:16208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16055: \$? = $ac_status" >&5 + echo "$as_me:16211: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16057: result: yes" >&5 + echo "$as_me:16213: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:16063: result: no" >&5 + echo "$as_me:16219: result: no" >&5 echo "${ECHO_T}no" >&6 system_lastlog_path=no @@ -16078,7 +16234,7 @@ fi done if test -z "$conf_lastlog_location"; then - { echo "$as_me:16081: WARNING: ** Cannot find lastlog **" >&5 + { echo "$as_me:16237: WARNING: ** Cannot find lastlog **" >&5 echo "$as_me: WARNING: ** Cannot find lastlog **" >&2;} fi fi @@ -16091,10 +16247,10 @@ fi -echo "$as_me:16094: checking if your system defines UTMP_FILE" >&5 +echo "$as_me:16250: checking if your system defines UTMP_FILE" >&5 echo $ECHO_N "checking if your system defines UTMP_FILE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16097 "configure" +#line 16253 "configure" #include "confdefs.h" #include @@ -16112,23 +16268,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16115: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16271: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16118: \$? = $ac_status" >&5 + echo "$as_me:16274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16121: \"$ac_try\"") >&5 + { (eval echo "$as_me:16277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16124: \$? = $ac_status" >&5 + echo "$as_me:16280: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16126: result: yes" >&5 + echo "$as_me:16282: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:16131: result: no" >&5 + echo "$as_me:16287: result: no" >&5 echo "${ECHO_T}no" >&6 system_utmp_path=no @@ -16156,10 +16312,10 @@ fi -echo "$as_me:16159: checking if your system defines WTMP_FILE" >&5 +echo "$as_me:16315: checking if your system defines WTMP_FILE" >&5 echo $ECHO_N "checking if your system defines WTMP_FILE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16162 "configure" +#line 16318 "configure" #include "confdefs.h" #include @@ -16177,23 +16333,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16180: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16336: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16183: \$? = $ac_status" >&5 + echo "$as_me:16339: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16186: \"$ac_try\"") >&5 + { (eval echo "$as_me:16342: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16189: \$? = $ac_status" >&5 + echo "$as_me:16345: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16191: result: yes" >&5 + echo "$as_me:16347: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:16196: result: no" >&5 + echo "$as_me:16352: result: no" >&5 echo "${ECHO_T}no" >&6 system_wtmp_path=no @@ -16221,10 +16377,10 @@ fi -echo "$as_me:16224: checking if your system defines UTMPX_FILE" >&5 +echo "$as_me:16380: checking if your system defines UTMPX_FILE" >&5 echo $ECHO_N "checking if your system defines UTMPX_FILE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16227 "configure" +#line 16383 "configure" #include "confdefs.h" #include @@ -16245,23 +16401,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16248: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16404: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16251: \$? = $ac_status" >&5 + echo "$as_me:16407: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16254: \"$ac_try\"") >&5 + { (eval echo "$as_me:16410: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16257: \$? = $ac_status" >&5 + echo "$as_me:16413: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16259: result: yes" >&5 + echo "$as_me:16415: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:16264: result: no" >&5 + echo "$as_me:16420: result: no" >&5 echo "${ECHO_T}no" >&6 system_utmpx_path=no @@ -16281,10 +16437,10 @@ fi -echo "$as_me:16284: checking if your system defines WTMPX_FILE" >&5 +echo "$as_me:16440: checking if your system defines WTMPX_FILE" >&5 echo $ECHO_N "checking if your system defines WTMPX_FILE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16287 "configure" +#line 16443 "configure" #include "confdefs.h" #include @@ -16305,23 +16461,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16308: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16464: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16311: \$? = $ac_status" >&5 + echo "$as_me:16467: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16314: \"$ac_try\"") >&5 + { (eval echo "$as_me:16470: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16317: \$? = $ac_status" >&5 + echo "$as_me:16473: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:16319: result: yes" >&5 + echo "$as_me:16475: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:16324: result: no" >&5 + echo "$as_me:16480: result: no" >&5 echo "${ECHO_T}no" >&6 system_wtmpx_path=no @@ -16343,7 +16499,7 @@ if test ! -z "$blibpath" ; then LDFLAGS="$LDFLAGS $blibflags$blibpath" - { echo "$as_me:16346: WARNING: Please check and edit blibpath in LDFLAGS in Makefile" >&5 + { echo "$as_me:16502: WARNING: Please check and edit blibpath in LDFLAGS in Makefile" >&5 echo "$as_me: WARNING: Please check and edit blibpath in LDFLAGS in Makefile" >&2;} fi @@ -16435,7 +16591,7 @@ : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:16438: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:16594: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -16608,7 +16764,7 @@ echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:16611: error: ambiguous option: $1 + { { echo "$as_me:16767: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} @@ -16627,7 +16783,7 @@ ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:16630: error: unrecognized option: $1 + -*) { { echo "$as_me:16786: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} @@ -16668,7 +16824,7 @@ "ssh_prng_cmds" ) CONFIG_FILES="$CONFIG_FILES ssh_prng_cmds" ;; "tests/CA/Makefile" ) CONFIG_FILES="$CONFIG_FILES tests/CA/Makefile" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - *) { { echo "$as_me:16671: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:16827: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -16810,6 +16966,8 @@ s,@mansubdir@,$mansubdir,;t t s,@user_path@,$user_path,;t t s,@sshcadir@,$sshcadir,;t t +s,@OCSP_ON@,$OCSP_ON,;t t +s,@OCSP_OFF@,$OCSP_OFF,;t t s,@piddir@,$piddir,;t t CEOF @@ -16925,7 +17083,7 @@ esac if test x"$ac_file" != x-; then - { echo "$as_me:16928: creating $ac_file" >&5 + { echo "$as_me:17086: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -16943,7 +17101,7 @@ -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:16946: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:17104: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -16956,7 +17114,7 @@ echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:16959: error: cannot find input file: $f" >&5 + { { echo "$as_me:17117: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -17017,7 +17175,7 @@ * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:17020: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:17178: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -17028,7 +17186,7 @@ -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:17031: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:17189: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -17041,7 +17199,7 @@ echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:17044: error: cannot find input file: $f" >&5 + { { echo "$as_me:17202: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -17158,7 +17316,7 @@ rm -f $tmp/in if test x"$ac_file" != x-; then if cmp -s $ac_file $tmp/config.h 2>/dev/null; then - { echo "$as_me:17161: $ac_file is unchanged" >&5 + { echo "$as_me:17319: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ @@ -17271,6 +17429,7 @@ echo " TCP Wrappers support: $TCPW_MSG" echo " MD5 password support: $MD5_MSG" echo " X.509 store support: $ssh_x509store" +echo " OCSP support: $ssh_ocsp" echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG" echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG" echo " BSD Auth support: $BSD_AUTH_MSG" diff -ruN openssh-3.7.1p2+x509g4/configure.ac openssh-3.7.1p2+x509h/configure.ac --- openssh-3.7.1p2+x509g4/configure.ac 2004-03-09 09:06:00.000000000 +0200 +++ openssh-3.7.1p2+x509h/configure.ac 2004-04-05 09:06:00.000000000 +0300 @@ -2402,6 +2402,48 @@ fi +ssh_ocsp="no" +AC_ARG_ENABLE(ocsp, + [ --enable-ocsp Enable OCSP validation], + [ + if test "x$enableval" = "xyes"; then + if test "x$ssh_x509store" = "xyes"; then + ssh_ocsp="yes" + else + AC_MSG_ERROR([cannot enable OCSP when x509store is disabled]) + fi + fi + ] +) +if test "x$ssh_ocsp" = "xyes"; then + AC_CHECK_FUNCS(OCSP_sendreq_bio, + [ + AC_CHECK_HEADER(openssl/ocsp.h, + [], + [ + ssh_ocsp="no" + AC_MSG_ERROR([OCSP header not found]) + ]) + ], + [ + ssh_ocsp="no" + AC_MSG_WARN([Cannot find OCSP functions - OCSP is disabled]) + ]) +fi +if test "x$ssh_ocsp" = "xyes"; then + AC_DEFINE_UNQUOTED( + SSH_OCSP_ENABLED, 1, + [Define if you don't want to validate X.509 certificates with OCSP]) + OCSP_ON='' + OCSP_OFF='#' +else + OCSP_ON='#' + OCSP_OFF='' +fi +AC_SUBST(OCSP_ON) +AC_SUBST(OCSP_OFF) + + ssh_x509dn_email="yes" if test "x$ssh_x509store" = "xyes"; then # Check for Email in X.509 'Distinguished Name' @@ -2775,6 +2817,7 @@ echo " TCP Wrappers support: $TCPW_MSG" echo " MD5 password support: $MD5_MSG" echo " X.509 store support: $ssh_x509store" +echo " OCSP support: $ssh_ocsp" echo " IP address in \$DISPLAY hack: $DISPLAY_HACK_MSG" echo " Translate v4 in v6 hack: $IPV4_IN6_HACK_MSG" echo " BSD Auth support: $BSD_AUTH_MSG" diff -ruN openssh-3.7.1p2+x509g4/Makefile.in openssh-3.7.1p2+x509h/Makefile.in --- openssh-3.7.1p2+x509g4/Makefile.in 2003-09-25 09:06:01.000000000 +0300 +++ openssh-3.7.1p2+x509h/Makefile.in 2004-04-05 09:06:01.000000000 +0300 @@ -61,7 +61,7 @@ INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@ INSTALL_SSH_RAND_HELPER=@INSTALL_SSH_RAND_HELPER@ -X509_OBJS=ssh-x509.o x509store.o +X509_OBJS=ssh-x509.o x509store.o ssh-ocsp.o TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} sftp-server$(EXEEXT) sftp$(EXEEXT) diff -ruN openssh-3.7.1p2+x509g4/readconf.c openssh-3.7.1p2+x509h/readconf.c --- openssh-3.7.1p2+x509g4/readconf.c 2004-03-09 09:06:01.000000000 +0200 +++ openssh-3.7.1p2+x509h/readconf.c 2004-04-05 09:06:01.000000000 +0300 @@ -135,6 +135,8 @@ oCARevocationFile, oCARevocationPath, oUserCACertificateFile, oUserCACertificatePath, oUserCARevocationFile, oUserCARevocationPath, + oVAType, oVACertificateFile, + oVAOCSPResponderURL, oDeprecated, oUnsupported } OpCodes; @@ -231,6 +233,9 @@ { "usercacertificatepath", oUserCACertificatePath }, { "usercarevocationfile", oUserCARevocationFile }, { "usercarevocationpath", oUserCARevocationPath }, + { "vatype", oVAType }, + { "vacertificatefile", oVACertificateFile }, + { "vaocspresponderurl", oVAOCSPResponderURL }, { NULL, oBadOption } }; @@ -841,6 +846,32 @@ break; #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + case oVAType: + arg = strdelim(&s); + if (!arg || *arg == '\0') + fatal("%s line %d: Missing argument.", filename, linenum); + options->va.type = ssh_get_vatype_s(arg); + if (options->va.type < 0) + fatal("config error: OCSP Responder type '%.30s' in file %s line %d.", arg, filename, linenum); + break; + + case oVACertificateFile: + case oVAOCSPResponderURL: + arg = strdelim(&s); + if (!arg || *arg == '\0') + fatal("%s line %d: Missing argument.", filename, linenum); + switch (opcode) { + default: + break; + case oVACertificateFile: + options->va.certificate_file = xstrdup(arg); break; + case oVAOCSPResponderURL: + options->va.responder_url = xstrdup(arg); break; + } + break; +#endif /*def SSH_OCSP_ENABLED*/ + case oDeprecated: debug("%s line %d: Deprecated option \"%s\"", filename, linenum, keyword); @@ -856,6 +887,11 @@ case oUserCARevocationFile: case oUserCARevocationPath: #endif /*def SSH_X509STORE_DISABLED*/ +#ifndef SSH_OCSP_ENABLED + case oVAType: + case oVACertificateFile: + case oVAOCSPResponderURL: +#endif /*ndef SSH_OCSP_ENABLED*/ case oUnsupported: error("%s line %d: Unsupported option \"%s\"", filename, linenum, keyword); @@ -989,6 +1025,11 @@ options->userca.revocation_file = NULL; options->userca.revocation_path = NULL; #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + options->va.type = -1; + options->va.certificate_file = NULL; + options->va.responder_url = NULL; +#endif /*def SSH_OCSP_ENABLED*/ } #ifndef SSH_X509STORE_DISABLED @@ -1161,4 +1202,9 @@ ssh_x509store_init(options); #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + if (options->va.type == -1) + options->va.type = ssh_get_default_vatype(); + ssh_set_validator(&options->va); +#endif /*def SSH_OCSP_ENABLED*/ } diff -ruN openssh-3.7.1p2+x509g4/readconf.h openssh-3.7.1p2+x509h/readconf.h --- openssh-3.7.1p2+x509g4/readconf.h 2003-09-25 09:06:00.000000000 +0300 +++ openssh-3.7.1p2+x509h/readconf.h 2004-04-05 09:06:00.000000000 +0300 @@ -134,6 +134,10 @@ /* sshd PKI(X509) user store */ X509StoreOptions userca; #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + /* ssh X.509 extra validation */ + VAOptions va; +#endif /*def SSH_OCSP_ENABLED*/ } Options; diff -ruN openssh-3.7.1p2+x509g4/README.x509v3 openssh-3.7.1p2+x509h/README.x509v3 --- openssh-3.7.1p2+x509g4/README.x509v3 2004-03-07 13:10:20.000000000 +0200 +++ openssh-3.7.1p2+x509h/README.x509v3 2004-03-20 12:56:57.000000000 +0200 @@ -1,6 +1,6 @@ Roumen Petrov Sofia, Bulgaria - Sat Mar 6 2004 + Sat Mar 20 2004 How to use X.509 certificates with OpenSSH? @@ -71,6 +71,12 @@ When you see this PLEASE send a EMAIL with "X509COMPAT" lines from log files. +1.1.5.) VAType none + Specifies whether `Online Certificate Status Protocol' (OCSP) is used + to validate client X.509 certificates. Specified value is used only + when OpenSSH is build with OCSP support. See sshd_config(5) man page + for allowed values and other VA* options. + 1.2.) user files on the server Append in USER_HOME/.ssh/authorized_keys a record with following format: @@ -159,6 +165,12 @@ Note: ssh-agent use only md5 digest for X.509 certificates. +2.2.4.) VAType none + Specifies whether `Online Certificate Status Protocol' (OCSP) is used + to validate server X.509 certificates. Specified value is used only + when OpenSSH is build with OCSP support. See ssh_config(5) man page + for allowed values and other VA* options. + 3.) test X.509 certificates. @@ -254,6 +266,21 @@ - Variables related to test certificates and CA. (only in config) +3.1.2.5.) OCSP responder: + Used only when OpenSSH is build with OCSP support! + Variables related to OCSP tests. + - SSH_VA_BASEPORT + (environment or config) + test script run one or more OCSP responders at same once. First + responder listen on specified port, second on port plus one and + etc. The default is 20080. + - SSH_OPENSLL_OCSP_TMOUT=60 + (config) + Wait specified number of seconds sockets opened by OCSP responders + to close. After this test script continue with next step. + This is work around for missing SO_REUSEADDR socket option in + OpenSSL OCSP responder. + 3.1.3.) Sample commands to run tests: $ OPENSSL=/usr/local/ssl/bin/openssl make check-certs $ SSHD_PORT=1122 SSH_X509TESTS="agent blob_auth" make check-certs @@ -370,6 +397,12 @@ connections from localhost, otherwise you can see in failed message text like this: "... connection closed by remote host ..." +4.3.) fail on "starting OCSP responder(XXX) on YYY:NNNNN failed" +- Ensure sequence of about six free ports and use SSH_VA_BASEPORT + to specify first of them. +- Ensure enough timeout previous running OCSP responders to free + ports. Increase value of SSH_OPENSLL_OCSP_TMOUT in test config file. + 5.) FAQ diff -ruN openssh-3.7.1p2+x509g4/servconf.c openssh-3.7.1p2+x509h/servconf.c --- openssh-3.7.1p2+x509g4/servconf.c 2004-03-09 09:06:01.000000000 +0200 +++ openssh-3.7.1p2+x509h/servconf.c 2004-04-05 09:06:01.000000000 +0300 @@ -131,6 +131,11 @@ options->ca.revocation_file = NULL; options->ca.revocation_path = NULL; #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + options->va.type = -1; + options->va.certificate_file = NULL; + options->va.responder_url = NULL; +#endif /*def SSH_OCSP_ENABLED*/ /* Needs to be accessable in many places */ use_privsep = -1; @@ -273,6 +278,11 @@ options->ca.revocation_path = _PATH_CA_REVOCATION_PATH; ssh_x509store_addlocations(&options->ca); #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + if (options->va.type == -1) + options->va.type = ssh_get_default_vatype(); + ssh_set_validator(&options->va); +#endif /*def SSH_OCSP_ENABLED*/ /* Turn privilege separation on by default */ if (use_privsep == -1) @@ -316,6 +326,8 @@ sAllowedClientCertPurpose, sCACertificateFile, sCACertificatePath, sCARevocationFile, sCARevocationPath, + sVAType, sVACertificateFile, + sVAOCSPResponderURL, sDeprecated, sUnsupported } ServerOpCodes; @@ -413,6 +425,9 @@ { "cacertificatepath", sCACertificatePath }, { "carevocationfile", sCARevocationFile }, { "carevocationpath", sCARevocationPath }, + { "vatype", sVAType }, + { "vacertificatefile", sVACertificateFile }, + { "vaocspresponderurl", sVAOCSPResponderURL }, { NULL, sBadOption } }; @@ -993,6 +1008,32 @@ break; #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + case sVAType: + arg = strdelim(&cp); + if (!arg || *arg == '\0') + fatal("%s line %d: Missing argument.", filename, linenum); + options->va.type = ssh_get_vatype_s(arg); + if (options->va.type < 0) + fatal("config error: OCSP Responder type '%.30s' in file %s line %d.", arg, filename, linenum); + break; + + case sVACertificateFile: + case sVAOCSPResponderURL: + arg = strdelim(&cp); + if (!arg || *arg == '\0') + fatal("%s line %d: Missing argument.", filename, linenum); + switch (opcode) { + default: + break; + case sVACertificateFile: + options->va.certificate_file = xstrdup(arg); break; + case sVAOCSPResponderURL: + options->va.responder_url = xstrdup(arg); break; + } + break; +#endif /*def SSH_OCSP_ENABLED*/ + case sDeprecated: logit("%s line %d: Deprecated option %s", filename, linenum, arg); @@ -1006,6 +1047,11 @@ case sCARevocationFile: case sCARevocationPath: #endif /*def SSH_X509STORE_DISABLED*/ +#ifndef SSH_OCSP_ENABLED + case sVAType: + case sVACertificateFile: + case sVAOCSPResponderURL: +#endif /*ndef SSH_OCSP_ENABLED*/ case sUnsupported: logit("%s line %d: Unsupported option %s", filename, linenum, arg); diff -ruN openssh-3.7.1p2+x509g4/servconf.h openssh-3.7.1p2+x509h/servconf.h --- openssh-3.7.1p2+x509g4/servconf.h 2003-09-25 09:06:00.000000000 +0300 +++ openssh-3.7.1p2+x509h/servconf.h 2004-04-05 09:06:00.000000000 +0300 @@ -157,6 +157,10 @@ /* sshd PKI(X509) global store */ X509StoreOptions ca; #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_OCSP_ENABLED + /* ssh X.509 extra validation */ + VAOptions va; +#endif /*def SSH_OCSP_ENABLED*/ } ServerOptions; void initialize_server_options(ServerOptions *); diff -ruN openssh-3.7.1p2+x509g4/ssh_config openssh-3.7.1p2+x509h/ssh_config --- openssh-3.7.1p2+x509g4/ssh_config 2003-09-25 09:06:00.000000000 +0300 +++ openssh-3.7.1p2+x509h/ssh_config 2004-04-05 09:06:00.000000000 +0300 @@ -45,3 +45,4 @@ # UserCACertificatePath ~/.ssh/crt # UserCARevocationFile ~/.ssh/ca-bundle.crl # UserCARevocationPath ~/.ssh/crl +# VAType none diff -ruN openssh-3.7.1p2+x509g4/ssh_config.0 openssh-3.7.1p2+x509h/ssh_config.0 --- openssh-3.7.1p2+x509g4/ssh_config.0 2004-03-09 09:06:00.000000000 +0200 +++ openssh-3.7.1p2+x509h/ssh_config.0 2004-04-05 09:06:00.000000000 +0300 @@ -421,6 +421,29 @@ Specifies a file to use for the user host key database instead of $HOME/.ssh/known_hosts. + VACertificateFile + File with X.509 certificates in PEM format concatenated together. + In use when VAType is set to ``ocspspec''. The default value is + `' (empty). Certificates from that file explicitly trust `OCSP + Responder' public key. They are used as trusted certificates in + addition to certificates from CACertificateFile , + CACertificatePath , UserCACertificateFile and + UserCACertificatePath to verify responder certificate. + + VAType Specifies whether `Online Certificate Status Protocol' (OCSP) is + used to validate X.509 certificates. Accepted values are case + insensitive: + o `none' : do not use OCSP to validate certificates; + o `ocspcert' : validate only certificates that specify `OCSP + Service Locator' URL; + o `ocspspec' : use specified in the configuration `OCSP + Responder' to validate all certificates. + The default is ``none''. + + VAOCSPResponderURL + `Access Location' / `OCSP Service Locator' URL of the OCSP + provider. In use when VAType is set to ``ocspspec''. + VerifyHostKeyDNS Specifies whether to verify the remote key using DNS and SSHFP resource records. The default is ``no''. Note that this option diff -ruN openssh-3.7.1p2+x509g4/ssh_config.5 openssh-3.7.1p2+x509h/ssh_config.5 --- openssh-3.7.1p2+x509g4/ssh_config.5 2004-03-09 09:06:00.000000000 +0200 +++ openssh-3.7.1p2+x509h/ssh_config.5 2004-04-05 09:06:00.000000000 +0300 @@ -708,6 +708,58 @@ Specifies a file to use for the user host key database instead of .Pa $HOME/.ssh/known_hosts . +.It Cm VACertificateFile +File with X.509 certificates in PEM format concatenated together. +In use when +.Cm VAType +is set to +.Dq ocspspec . +The default value is +.Sq +.. +(empty). +Certificates from that file explicitly trust +.Sq "OCSP Responder" +public key. +They are used as trusted certificates in addition to certificates from +.Cm CACertificateFile +, +.Cm CACertificatePath +, +.Cm UserCACertificateFile +and +.Cm UserCACertificatePath +to verify responder certificate. +.It Cm VAType +Specifies whether +.Sq "Online Certificate Status Protocol" +(OCSP) is used to validate X.509 certificates. +Accepted values are case insensitive: +.Bl -bullet -compact +.It +.Sq none +: do not use OCSP to validate certificates; +.It +.Sq ocspcert +: validate only certificates that specify +.Sq "OCSP Service Locator" +URL; +.It +.Sq ocspspec +: use specified in the configuration +.Sq "OCSP Responder" +to validate all certificates. +.El +The default is +.Dq none . +.It Cm VAOCSPResponderURL +.Sq "Access Location" +/ +.Sq "OCSP Service Locator" +URL of the OCSP provider. In use when +.Cm VAType +is set to +.Dq ocspspec . .It Cm VerifyHostKeyDNS Specifies whether to verify the remote key using DNS and SSHFP resource records. diff -ruN openssh-3.7.1p2+x509g4/sshd_config openssh-3.7.1p2+x509h/sshd_config --- openssh-3.7.1p2+x509g4/sshd_config 2003-09-25 09:06:00.000000000 +0300 +++ openssh-3.7.1p2+x509h/sshd_config 2004-04-05 09:06:00.000000000 +0300 @@ -50,6 +50,15 @@ # or have symbolic links to them of this form. #CARevocationPath /etc/ssh/ca/crl +# SSH can use "Online Certificate Status Protocol"(OCSP) +# to validate certificate. Set VAType to +# - none : do not use OCSP to validate certificates; +# - ocspcert: validate only certificates that specify `OCSP +# Service Locator' URL; +# - ocspspec: use specified in the configuration 'OCSP Responder' +# to validate all certificates. +#VAType none + # Lifetime and size of ephemeral version 1 server key #KeyRegenerationInterval 1h #ServerKeyBits 768 diff -ruN openssh-3.7.1p2+x509g4/sshd_config.0 openssh-3.7.1p2+x509h/sshd_config.0 --- openssh-3.7.1p2+x509g4/sshd_config.0 2004-03-09 09:06:00.000000000 +0200 +++ openssh-3.7.1p2+x509h/sshd_config.0 2004-04-05 09:06:00.000000000 +0300 @@ -409,6 +409,28 @@ taining any corruption within the unprivileged processes. The default is ``yes''. + VACertificateFile + File with X.509 certificates in PEM format concatenated together. + In use when VAType is set to ``ocspspec''. The default value is + `' (empty). Certificates from that file explicitly trust `OCSP + Responder' public key. They are used as trusted certificates in + addition to certificates from CACertificateFile and + CACertificatePath to verify responder certificate. + + VAType Specifies whether `Online Certificate Status Protocol' (OCSP) is + used to validate X.509 certificates. Accepted values are case + insensitive: + o `none' : do not use OCSP to validate certificates; + o `ocspcert' : validate only certificates that specify `OCSP + Service Locator' URL; + o `ocspspec' : use specified in the configuration `OCSP + Responder' to validate all certificates. + The default is ``none''. + + VAOCSPResponderURL + `Access Location' / `OCSP Service Locator' URL of the OCSP + provider. In use when VAType is set to ``ocspspec''. + X11DisplayOffset Specifies the first display number available for sshd's X11 for- warding. This prevents sshd from interfering with real X11 diff -ruN openssh-3.7.1p2+x509g4/sshd_config.5 openssh-3.7.1p2+x509h/sshd_config.5 --- openssh-3.7.1p2+x509g4/sshd_config.5 2004-03-09 09:06:00.000000000 +0200 +++ openssh-3.7.1p2+x509h/sshd_config.5 2004-04-05 09:06:00.000000000 +0300 @@ -691,6 +691,54 @@ escalation by containing any corruption within the unprivileged processes. The default is .Dq yes . +.It Cm VACertificateFile +File with X.509 certificates in PEM format concatenated together. +In use when +.Cm VAType +is set to +.Dq ocspspec . +The default value is +.Sq +.. +(empty). +Certificates from that file explicitly trust +.Sq "OCSP Responder" +public key. +They are used as trusted certificates in addition to certificates from +.Cm CACertificateFile +and +.Cm CACertificatePath +to verify responder certificate. +.It Cm VAType +Specifies whether +.Sq "Online Certificate Status Protocol" +(OCSP) is used to validate X.509 certificates. +Accepted values are case insensitive: +.Bl -bullet -compact +.It +.Sq none +: do not use OCSP to validate certificates; +.It +.Sq ocspcert +: validate only certificates that specify +.Sq "OCSP Service Locator" +URL; +.It +.Sq ocspspec +: use specified in the configuration +.Sq "OCSP Responder" +to validate all certificates. +.El +The default is +.Dq none . +.It Cm VAOCSPResponderURL +.Sq "Access Location" +/ +.Sq "OCSP Service Locator" +URL of the OCSP provider. In use when +.Cm VAType +is set to +.Dq ocspspec . .It Cm X11DisplayOffset Specifies the first display number available for .Nm sshd Ns 's diff -ruN openssh-3.7.1p2+x509g4/ssh-ocsp.c openssh-3.7.1p2+x509h/ssh-ocsp.c --- openssh-3.7.1p2+x509g4/ssh-ocsp.c 1970-01-01 02:00:00.000000000 +0200 +++ openssh-3.7.1p2+x509h/ssh-ocsp.c 2004-03-21 11:37:25.000000000 +0200 @@ -0,0 +1,1020 @@ +/* + * Copyright (c) 2004 Roumen Petrov. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include "x509store.h" + +#ifdef SSH_OCSP_ENABLED +#if 0 +# define SSH_WITH_SSLOCSP +#endif + +#include "xmalloc.h" +#include "log.h" +#include +#include +#include +#ifdef SSH_WITH_SSLOCSP +# include +#endif + + +static VAOptions va = { SSHVA_NONE, NULL, NULL }; + +typedef struct va_type_map_s va_type_map; +struct va_type_map_s { + int id; + const char* code; +}; + +static va_type_map sshva_type_map[] = { + { SSHVA_NONE , "none" }, + { SSHVA_OCSP_CERT, "ocspcert" }, + { SSHVA_OCSP_SPEC, "ocspspec" }, +}; + + +int +ssh_get_default_vatype(void) { + return(SSHVA_NONE); +} + + +int +ssh_get_vatype_s(const char* type) { + int k, n; + + if (type == NULL) return(-1); + + n = sizeof(sshva_type_map) / sizeof(sshva_type_map[0]); + for (k = 0; k < n; k++) { + va_type_map *p = sshva_type_map + k; +logit("RUMEN: p->code=%s", p->code); + if (strcasecmp(type, p->code) == 0) return(p->id); + } + + return(-1); +} + + +static void +ssh_set_vatype(int type) { + switch (type) { + case SSHVA_NONE: + case SSHVA_OCSP_CERT: + case SSHVA_OCSP_SPEC: + va.type = type; + break; + default: + fatal("ssh_set_vatype: invalid type %d", type); + break; + } +} + + +void +ssh_set_validator(const VAOptions *_va) { + if (va.certificate_file != NULL) { + xfree((void*)va.certificate_file); + va.certificate_file = NULL; + } + if (va.responder_url != NULL) { + xfree((void*)va.responder_url); + va.responder_url = NULL; + } + if (_va == NULL) { + debug("ssh_set_validator: NULL options - set vatype to none"); + ssh_set_vatype(SSHVA_NONE); + return; + } + + ssh_set_vatype(_va->type); /*fatal on error*/ + if (_va->certificate_file != NULL) { + switch(va.type) { + case SSHVA_NONE: + case SSHVA_OCSP_CERT: + debug("ssh_set_validator: ingnore certificate file"); + break; + case SSHVA_OCSP_SPEC: + va.certificate_file = xstrdup(_va->certificate_file); /*fatal on error*/ + break; + } + } + switch(va.type) { + case SSHVA_NONE: + case SSHVA_OCSP_CERT: + debug("ssh_set_validator: ingnore responder url"); + break; + case SSHVA_OCSP_SPEC: + if (_va->responder_url == NULL) { + fatal("ssh_set_validator: responder url is mandatory"); + } + va.responder_url = xstrdup(_va->responder_url); /*fatal on error*/ + break; + } +} + + +static char* +openssl_errormsg(char *buf, size_t len) { + ERR_error_string_n(ERR_get_error(), buf, len); + + /* clear rest of errors in OpenSSL "error buffer" */ + ERR_clear_error(); + return(buf); +} + + +static char* +ssh_ASN1_GENERALIZEDTIME_2_string(ASN1_GENERALIZEDTIME *asn1_time) { + BIO *bio; + int k; + char *p = NULL; + + if (asn1_time == NULL) { + error("ssh_ASN1_GENERALIZEDTIME_2_string: asn1_time is NULL"); + return(NULL); + } + + bio = BIO_new(BIO_s_mem()); + if (bio == NULL) { + error("ssh_ASN1_GENERALIZEDTIME_2_string: BIO_new fail"); + return(NULL); + } + + ASN1_GENERALIZEDTIME_print(bio, asn1_time); + BIO_flush(bio); + + k = BIO_pending(bio); + p = xmalloc(k + 1); /*fatal on error*/ + k = BIO_read(bio, p, k); + p[k] = '\0'; + BIO_free_all(bio); + return(p); +} + + +static STACK_OF(X509)* +ssh_load_x509certs(const char *certs_file, const char* certs_descrip) { + STACK_OF(X509) *ret_certs = NULL; + BIO *fbio = NULL; + + if (certs_file == NULL) { + error("ssh_load_x509certs: file is NULL"); + goto exit; + } + + ret_certs = sk_X509_new_null(); + if (ret_certs == NULL) { + error("ssh_load_x509certs: sk_X509_new_null fail"); + goto exit; + } + + fbio = BIO_new(BIO_s_file()); + if (fbio == NULL) { + error("ssh_load_x509certs: BIO_new fail"); + goto exit; + } + + if (BIO_read_filename(fbio, certs_file) <= 0) { + char ebuf[512]; + error("ssh_load_x509certs:" + " File description is '%.512s'." + " BIO_read_filename(..., '%.512s')" + " fail with errormsg='%.512s'" + , certs_descrip + , certs_file + , openssl_errormsg(ebuf, sizeof(ebuf))); + goto exit; + } + + { + int k; + STACK_OF(X509_INFO) *data; + + data = PEM_X509_INFO_read_bio(fbio, NULL, NULL, NULL); + if (data == NULL) { + error("ssh_load_x509certs: no data."); + goto exit; + } + + for (k = 0; k < sk_X509_INFO_num(data); k++) { + X509_INFO *xi = sk_X509_INFO_value(data, k); + if (xi->x509) { + sk_X509_push(ret_certs, xi->x509); + xi->x509 = NULL; + } + } + sk_X509_INFO_pop_free(data, X509_INFO_free); + } + +exit: + if (fbio != NULL) BIO_free_all(fbio); + if (ret_certs != NULL) { + debug3("ssh_load_x509certs: return %d certs", (int)sk_X509_num(ret_certs)); + } else { + debug("ssh_load_x509certs: return NULL"); + } + return(ret_certs); +} + + +static int/*bool*/ +ssh_ocspreq_addcert( + X509 *cert, + X509_STORE* x509store, + OCSP_REQUEST *req, + STACK_OF(OCSP_CERTID) *ids, + STACK *subjs +) { + X509 *issuer = NULL; + OCSP_CERTID *id = NULL; + char subj[512]; + + if (cert == NULL) { + error("ssh_ocspreq_addcert: cert is NULL"); + return(0); + } + if (x509store == NULL) { + error("ssh_ocspreq_addcert: x509store is NULL"); + return(0); + } + if (req == NULL) { + error("ssh_ocspreq_addcert: req is NULL"); + return(0); + } + if (ids == NULL) { + error("ssh_ocspreq_addcert: ids is NULL"); + return(0); + } + if (subjs == NULL) { + error("ssh_ocspreq_addcert: subjs is NULL"); + return(0); + } + + { + X509_OBJECT xobj; + memset(&xobj, 0, sizeof(xobj)); + if (ssh_x509store_lookup(x509store, X509_LU_X509, X509_get_issuer_name(cert), &xobj) > 0) { + issuer = xobj.data.x509; + } + X509_OBJECT_free_contents(&xobj); + } + if (issuer == NULL) { + error("ssh_ocspreq_addcert: cannot found issuer certificate"); + return(0); + } + + id = OCSP_cert_to_id(NULL, cert, issuer); + if (id == NULL) { + error("ssh_ocspreq_addcert: OCSP_cert_to_id fail"); + return(0); + } + + if (!OCSP_request_add0_id(req, id)) { + error("ssh_ocspreq_addcert: OCSP_request_add0_id fail"); + return(0); + } + if (!sk_OCSP_CERTID_push(ids, id)) { + error("ssh_ocspreq_addcert: sk_OCSP_CERTID_push fail"); + return(0); + } + X509_NAME_oneline(X509_get_subject_name(cert), subj, sizeof(subj)); + if (!sk_push(subjs, subj)) { + error("ssh_ocspreq_addcert: sk_push(..., subj) fail"); + return(0); + } + + return(1); +} + + +struct ssh_ocsp_conn_s { + const char *url; + +#ifdef SSH_WITH_SSLOCSP + int use_ssl; +#endif + /*pointers inside data buffer*/ + /*const*/ char *host; + const char *port; + /*const*/ char *path; + + /*data buffer to hold all connection info*/ + char *data; +}; + +typedef struct ssh_ocsp_conn_s ssh_ocsp_conn; + + +static void +ssh_ocsp_conn_free(ssh_ocsp_conn **pconn) { + ssh_ocsp_conn *conn = *pconn; + + if (conn == NULL) return; + *pconn = NULL; + + if (conn->data != NULL) xfree(conn->data); + if (conn->url != NULL) xfree((void*)conn->url ); + xfree(conn); +} + + +static int/*bool*/ +ssh_ocsp_set_protocol(ssh_ocsp_conn *conn, const char *protocol) { + if (strcmp(protocol, "http") == 0) { +#ifdef SSH_WITH_SSLOCSP + conn->use_ssl = 0; +#endif + return(1); + } + +#ifdef SSH_WITH_SSLOCSP + if (strcmp(protocol, "https") == 0) { + conn->use_ssl = 1; + return(1); + } +#endif + +#ifdef SSH_WITH_SSLOCSP + conn->use_ssl = -1; +#endif + return(0); +} + + +static ssh_ocsp_conn* +ssh_ocsp_conn_new(const char *url) { + ssh_ocsp_conn *conn = NULL; + char *p = NULL; + char *q = NULL; + + if (url == NULL) { + error("ssh_ocsp_conn_new: url is NULL"); + return(NULL); + } + + conn = xmalloc(sizeof(*conn)); /*fatal on error*/ + memset(conn, 0, sizeof(*conn)); + + conn->url = xstrdup(url); /*fatal on error*/ + conn->data = xstrdup(url); /*fatal on error*/ + + /* chech for protocol */ + p = conn->data; + q = strchr(p, ':'); + if (q == NULL) goto error; + *q = '\x0'; + + if (!ssh_ocsp_set_protocol(conn, p)) { + error("ssh_ocsp_conn_new:" + " unsupported protocol '%.16s'" + , p); + goto error; + } + + p = q; + if (*++p != '/') { /*this symbol is inside data */ + error("ssh_ocsp_conn_new: expected first slash," + " got char with code %d" + , (int)*p); + goto error; + } + if (*++p != '/') { /*this symbol is inside data */ + error("ssh_ocsp_conn_new: expected second slash," + " got char with code %d" + , (int)*p); + goto error; + } + + /* chech for host and port */ + if (*++p == '\x0') { + error("ssh_ocsp_conn_new: missing host in url '%.512s'", url); + goto error; + } + conn->host = p; + q = strchr(p, '/'); + if (q != NULL) { + *q = '\x0'; + /* q+1 might point to path */ + } + /*else q is NULL !!!*/ + + /* chech for port */ + p = strrchr(conn->host, ':'); + if (p != NULL) { + *p = '\x0'; + if (*++p != '\x0') conn->port = p; + } + if (conn->port == NULL) { +#ifdef SSH_WITH_SSLOCSP + conn->port = conn->use_ssl ? "443" : "80"; +#else + conn->port = "80"; +#endif + } + + /* chech for path */ + p = q; + if (p == NULL) goto exit; + if (*++p == '\x0') goto exit; + conn->path = p; + +exit: + return(conn); +error: + ssh_ocsp_conn_free(&conn); + goto exit; +} + + +static OCSP_RESPONSE* +ssh_ocsp_get_response(const ssh_ocsp_conn *conn, OCSP_REQUEST *req) { + OCSP_RESPONSE *resp = NULL; + BIO *bio_conn = NULL; +#ifdef SSH_WITH_SSLOCSP + SSL_CTX *ctx = NULL; +#endif + + if (conn == NULL) { + error("ssh_ocsp_get_response: conn is NULL"); + return(NULL); + } + if (req == NULL) { + error("ssh_ocsp_get_response: req is NULL"); + return(NULL); + } + +#ifndef OPENSSL_NO_SOCK + bio_conn = BIO_new_connect(conn->host); + if (bio_conn == NULL) { + char ebuf[512]; + error("ssh_ocsp_get_response:" + " BIO_new_connect fail with errormsg='%.512s'" + , openssl_errormsg(ebuf, sizeof(ebuf))); + goto exit; + } +#else + error("ssh_ocsp_get_response: sockets are not supported in OpenSSL"); + goto exit; +#endif + if (conn->port != NULL) { + BIO_set_conn_port(bio_conn, conn->port); + } + +#ifdef SSH_WITH_SSLOCSP + if (conn->use_ssl == 1) { + BIO *bio_sslconn; +#if !defined(OPENSSL_NO_SSL2) && !defined(OPENSSL_NO_SSL3) + ctx = SSL_CTX_new(SSLv23_client_method()); +#elif !defined(OPENSSL_NO_SSL3) + ctx = SSL_CTX_new(SSLv3_client_method()); +#elif !defined(OPENSSL_NO_SSL2) + ctx = SSL_CTX_new(SSLv2_client_method()); +#else + error("ssh_ocsp_get_response: SSL is disabled"); + goto exit; +#endif + SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY); + bio_sslconn = BIO_new_ssl(ctx, 1); + bio_conn = BIO_push(bio_sslconn, bio_conn); + } +#endif /*def SSH_WITH_SSLOCSP*/ + + if (BIO_do_connect(bio_conn) <= 0) { + char ebuf[512]; + error("ssh_ocsp_get_response:" + " BIO_do_connect fail with errormsg='%.512s'" + , openssl_errormsg(ebuf, sizeof(ebuf))); + goto exit; + } + + resp = OCSP_sendreq_bio(bio_conn, conn->path, req); + if (resp == NULL) { + char ebuf[512]; + error("ssh_ocsp_get_response:" + " OCSP_sendreq_bio fail with errormsg='%.512s'" + , openssl_errormsg(ebuf, sizeof(ebuf))); + } + +exit: + if (bio_conn != NULL) BIO_free_all(bio_conn); +#ifdef SSH_WITH_SSLOCSP + if (ctx != NULL) SSL_CTX_free(ctx); +#endif + + return(resp); +} + + +static OCSP_BASICRESP* +ssh_ocsp_get_basicresp( + OCSP_REQUEST *req, + OCSP_RESPONSE *resp, + STACK_OF(X509) *vacrts, + X509_STORE *x509store +) { + OCSP_BASICRESP *br = NULL; + unsigned long basic_verify_flags = 0/*NO:OCSP_NOEXPLICIT*/; + int flag; + + if (req == NULL) { + error("ssh_ocsp_get_basicresp: req is NULL"); + return(NULL); + } + if (resp == NULL) { + error("ssh_ocsp_get_basicresp: resp is NULL"); + return(NULL); + } + if (x509store == NULL) { + error("ssh_ocsp_get_basicresp: x509store is NULL"); + return(NULL); + } + + br = OCSP_response_get1_basic(resp); + if (br == NULL) { + char ebuf[512]; + error("ssh_ocsp_get_basicresp: " + " OCSP_response_get1_basic fail with errormsg='%.512s'" + , openssl_errormsg(ebuf, sizeof(ebuf))); + return(NULL); + } + + flag = OCSP_check_nonce(req, br); + if (flag <= 0) { + if (flag == -1) { + logit("ssh_ocsp_get_basicresp: WARNING - no nonce in response"); + } else { + char ebuf[512]; + error("ssh_ocsp_get_basicresp: " + " OCSP_check_nonce fail with errormsg='%.512s'" + , openssl_errormsg(ebuf, sizeof(ebuf))); + goto error; + } + } + +#ifdef SSHOCSPTEST +{ +int k; +logit("ssh_ocsp_get_basicresp: VA certs num=%d", sk_X509_num(vacrts)); +for (k = 0; k < sk_X509_num(vacrts); k++) { + char buf[512]; + X509 *x = sk_X509_value(vacrts, k); + X509_NAME_oneline(X509_get_subject_name(x), buf, sizeof(buf)); + logit("ssh_ocsp_get_basicresp: VA[%d] subject='%.512s'", k, buf); +} +} +#endif /*def SSHOCSPTEST*/ + +/* + * RFC2560: + * ... + * All definitive response messages SHALL be digitally signed. The key + * used to sign the response MUST belong to one of the following: + * + * -- the CA who issued the certificate in question + * -- a Trusted Responder whose public key is trusted by the requester + * -- a CA Designated Responder (Authorized Responder) who holds a + * specially marked certificate issued directly by the CA, indicating + * that the responder may issue OCSP responses for that CA + * ... + * + * TODO: to check OpenSLL implementation + */ + if ((vacrts == NULL) || (sk_X509_num(vacrts) <= 0)) { + flag = -1; + } else { + /* + * With flag OCSP_TRUSTOTHER: + * - we never get error 'without missing ocspsigning + * usage' for VA certificate !!! + * Without flag OCSP_TRUSTOTHER: + * - we can get OCSP_basic_verify error "root ca not trusted" + */ +#if 0 + flag = OCSP_basic_verify(br, vacrts, x509store, basic_verify_flags | OCSP_TRUSTOTHER); +#else + flag = OCSP_basic_verify(br, vacrts, x509store, basic_verify_flags); +#endif + } + if (flag < 0) { + flag = OCSP_basic_verify(br, NULL, x509store, basic_verify_flags); + } + if (flag <= 0) { + char ebuf[512]; + error("ssh_ocsp_get_basicresp:" + " flag=%d" + " OCSP_basic_verify fail with errormsg='%.512s'" + , flag + , openssl_errormsg(ebuf, sizeof(ebuf))); + goto error; + } + + debug3("ssh_ocsp_get_basicresp: OK"); + return(br); + +error: + debug3("ssh_ocsp_get_basicresp: FAIL"); + if (br != NULL) OCSP_BASICRESP_free(br); + return(NULL); +} + + +/* + * Method return: + * 1 - all cert.-s are good + * -1 - error or one cert. with status unknow + * 0 - otherwise, i.e. at least one cert. is revoked and rest are good + */ +static int +ssh_ocsp_check_validity( + OCSP_REQUEST *req, + OCSP_BASICRESP *br, + STACK_OF(OCSP_CERTID) *ids, + STACK *subjs +) { + int ret = 1; + /* Maximum leeway in validity period: default 5 minutes */ + const long nsec = (5 * 60); + const long maxage = -1; + + int k; + int status, reason; + ASN1_GENERALIZEDTIME *rev, *thisupd, *nextupd; + + if (req == NULL) { + error("ssh_ocsp_check_validity: req is NULL"); + return(-1); + } + if (br == NULL) { + error("ssh_ocsp_check_validity: br is NULL"); + return(-1); + } + if (sk_OCSP_CERTID_num(ids) <= 0) { + error("ssh_ocsp_check_validity:" + " number of ids is %d" + , k); + return(-1); + } + if (sk_OCSP_CERTID_num(subjs) <= 0) { + error("ssh_ocsp_check_validity:" + " number of subjs is %d" + , sk_OCSP_CERTID_num(subjs)); + return(-1); + } + if (sk_OCSP_CERTID_num(ids) != sk_OCSP_CERTID_num(subjs)) { + error("ssh_ocsp_check_validity:" + " ids(%d) != subjs(%d)" + , sk_OCSP_CERTID_num(ids) + , sk_OCSP_CERTID_num(subjs)); + return(-1); + } + + for (k = 0; k < sk_OCSP_CERTID_num(ids); k++) { + OCSP_CERTID *id = sk_OCSP_CERTID_value(ids, k); + + if (get_log_level() >= SYSLOG_LEVEL_DEBUG3) { + char *subject = sk_value(subjs, k); + debug3("ssh_ocsp_check_validity:" + " cert[%d]='%.512s'" + , k, subject); + } + + if (!OCSP_resp_find_status( + br, id, &status, &reason, + &rev, &thisupd, &nextupd) + ) { + ret = -1; + error("ssh_ocsp_check_validity: cannot found status"); + break; + } + + if (!OCSP_check_validity(thisupd, nextupd, nsec, maxage)) { + char ebuf[512]; + ret = -1; + logit("ssh_ocsp_check_validity: " + " WARNING-invalid status time." + " OCSP_check_validity fail with errormsg='%.512s'" + , openssl_errormsg(ebuf, sizeof(ebuf))); + break; + } + debug("ssh_ocsp_check_validity: status=%.32s", OCSP_cert_status_str(status)); + if (get_log_level() >= SYSLOG_LEVEL_DEBUG3) { + char *p = ssh_ASN1_GENERALIZEDTIME_2_string(thisupd); + debug3("ssh_ocsp_check_validity: This Update=%.128s", p); + xfree(p); + if (nextupd != NULL) { + p = ssh_ASN1_GENERALIZEDTIME_2_string(nextupd); + debug3("ssh_ocsp_check_validity: Next Update=%.128s", p); + xfree(p); + } + } + + if (status == V_OCSP_CERTSTATUS_GOOD) continue; + + if (status != V_OCSP_CERTSTATUS_REVOKED) { + ret = -1; + error("ssh_ocsp_check_validity: unknow certificate status"); + break; + } + + ret = 0; + if (get_log_level() >= SYSLOG_LEVEL_DEBUG3) { + char *p = ssh_ASN1_GENERALIZEDTIME_2_string(rev); + debug3("ssh_ocsp_check_validity: Revocation Time=%.128s", p); + xfree(p); + if (reason != -1) { + debug3("ssh_ocsp_check_validity:" + " Revocation Reason='%.128s'" + , OCSP_crl_reason_str(reason)); + } + } + break; + } + debug3("ssh_ocsp_check_validity: return %d", ret); + return(ret); +} + + +static int +ssh_ocsp_validate( + X509 *cert, + X509_STORE *x509store, + const ssh_ocsp_conn *ocsp +) { + int ret = -1; + int add_nonce = 0; + + STACK_OF(X509) *vacrts = NULL; + OCSP_REQUEST *req = OCSP_REQUEST_new(); + STACK_OF(OCSP_CERTID) *ids = sk_OCSP_CERTID_new_null(); + STACK *subjs = sk_new_null(); + OCSP_RESPONSE *resp = NULL; + OCSP_BASICRESP *br = NULL; + + if ((va.type == SSHVA_OCSP_SPEC) && + (va.certificate_file != NULL)) { + vacrts = ssh_load_x509certs(va.certificate_file, "'OCSP Responder' trusted certificates"); + if (vacrts == NULL) goto exit; + debug("ssh_ocsp_validate: VA certs num=%d", sk_X509_num(vacrts)); + } + + if (!ssh_ocspreq_addcert(cert, x509store, req, ids, subjs)) { + goto exit; + } + + if (req && add_nonce) { + OCSP_request_add1_nonce(req, NULL, -1); + } + + resp = ssh_ocsp_get_response(ocsp, req); + if (resp == NULL) goto exit; + + { /*check OCSP response status*/ + int flag = OCSP_response_status(resp); + if (flag != OCSP_RESPONSE_STATUS_SUCCESSFUL) { + error("ssh_ocsp_validate:" + " responder error=%d(%.256s)" + , flag + , OCSP_response_status_str((long/*???*/)flag)); + goto exit; + } + } + + br = ssh_ocsp_get_basicresp(req, resp, vacrts, x509store); + if (br == NULL) goto exit; + + ret = ssh_ocsp_check_validity(req, br, ids, subjs); + +exit: + if (br != NULL) OCSP_BASICRESP_free(br); + if (resp != NULL) OCSP_RESPONSE_free(resp); + if (subjs != NULL) sk_free(subjs); + if (ids != NULL) sk_OCSP_CERTID_free(ids); + if (req != NULL) OCSP_REQUEST_free(req); + if (vacrts != NULL) sk_X509_pop_free(vacrts, X509_free); + + return(ret); +} + + +static AUTHORITY_INFO_ACCESS* +ssh_aia_get(X509_EXTENSION *ext) { + X509V3_EXT_METHOD *method = NULL; + void *ext_str = NULL; + unsigned char *p; + int len; + + if (ext == NULL) { + error("ssh_aia_get: ext is NULL"); + return(NULL); + } + + method = X509V3_EXT_get(ext); + if (method == NULL) { + debug("ssh_aia_get: cannot get method"); + return(NULL); + } + + p = ext->value->data; + len = ext->value->length; + if (method->it) { + ext_str = ASN1_item_d2i(NULL, &p, len, ASN1_ITEM_ptr(method->it)); + } else { + ext_str = method->d2i(NULL, &p, len); + } + if (ext_str == NULL) { + debug("ssh_aia_get: null ext_str!"); + return(NULL); + } + + return((AUTHORITY_INFO_ACCESS*)ext_str); +} + + +static void +ssh_aia_free(X509_EXTENSION *ext, AUTHORITY_INFO_ACCESS* aia) { + X509V3_EXT_METHOD *method = NULL; + + if (ext == NULL) { + error("ssh_aia_free: ext is NULL"); + return; + } + + method = X509V3_EXT_get(ext); + if (method == NULL) return; + + if (method->it) { + ASN1_item_free((void*)aia, ASN1_ITEM_ptr(method->it)); + } else { + method->ext_free(aia); + } +} + + +static int +ssh_aiaocsp_validate( + X509 *cert, + X509_STORE *x509store, + AUTHORITY_INFO_ACCESS *aia, + int *has_ocsp_url +) { + int ret = -1; + int k; + if (has_ocsp_url == NULL) { + fatal("ssh_aiaocsp_validate: has_ocsp_url is NULL"); + return(-1); /*;-)*/ + } + + *has_ocsp_url = 0; + for (k = 0; k < sk_ACCESS_DESCRIPTION_num(aia); k++) { + ACCESS_DESCRIPTION *ad = sk_ACCESS_DESCRIPTION_value(aia, k); + GENERAL_NAME *gn; + ASN1_IA5STRING *uri; + ssh_ocsp_conn *conn; + + if (OBJ_obj2nid(ad->method) != + NID_id_pkix_OCSP_serviceLocator) continue; + + gn = ad->location; +#if 0 +{ +BIO *bio = BIO_new_fp(stderr, BIO_NOCLOSE); +if (bio != NULL) { + BIO_puts(bio, "gn->type:"); + switch (gn->type) { + case GEN_OTHERNAME : BIO_puts(bio, "GEN_OTHERNAME"); break; + case GEN_EMAIL : BIO_puts(bio, "GEN_EMAIL" ); break; + case GEN_DNS : BIO_puts(bio, "GEN_DNS" ); break; + case GEN_X400 : BIO_puts(bio, "GEN_X400" ); break; + case GEN_DIRNAME : BIO_puts(bio, "GEN_DIRNAME" ); break; + case GEN_EDIPARTY : BIO_puts(bio, "GEN_EDIPARTY" ); break; + case GEN_URI : BIO_puts(bio, "GEN_URI" ); break; + case GEN_IPADD : BIO_puts(bio, "GEN_IPADD" ); break; + case GEN_RID : BIO_puts(bio, "GEN_RID" ); break; + default : BIO_puts(bio, "[unsupported]"); break; + } + BIO_puts(bio, "\n"); + BIO_free(bio); +} +} +#endif + if (gn->type != GEN_URI) continue; + + uri = gn->d.uniformResourceIdentifier; + *has_ocsp_url = 1; + + conn = ssh_ocsp_conn_new((const char*)uri->data); + if (conn == NULL) { + debug("ssh_aiaocsp_validate: cannot create ocsp connection"); + continue; + } + ret = ssh_ocsp_validate(cert, x509store, conn); + ssh_ocsp_conn_free(&conn); + + if (ret >= 0) break; + } + + return(*has_ocsp_url ? ret : 1); +} + + +static int +ssh_x509_validate4cert(X509 *cert, X509_STORE *x509store) { + int found = 0; + int ret = -1; + int loc = -1; + + if (cert == NULL) return(0); + + for ( loc = X509_get_ext_by_NID(cert, NID_info_access, loc); + loc >= 0; + loc = X509_get_ext_by_NID(cert, NID_info_access, loc) + ) { + X509_EXTENSION *xe; + + xe = X509_get_ext(cert, loc); + if (xe == NULL) { + debug("ssh_x509_validate4cert: cannot get x509 extension"); + continue; + } + + {/*validate from AIA*/ + AUTHORITY_INFO_ACCESS *aia = ssh_aia_get(xe); + if (aia == NULL) continue; + + ret = ssh_aiaocsp_validate(cert, x509store, aia, &found); + + ssh_aia_free(xe, aia); + } + + if (ret >= 0) break; + } + + if (found) { + debug3("ssh_x509_validate4cert: validation result=%d", ret); + } else { + debug3("ssh_x509_validate4cert: no OCSP 'Service Locator' URL"); + } + return(found ? ret : 1); +} +#endif /*def SSH_OCSP_ENABLED*/ + + +int +ssh_x509_validate(X509 *cert, X509_STORE *x509store) { +#ifndef SSH_OCSP_ENABLED + return(1); +#else + int ret = -1; + ssh_ocsp_conn *conn = NULL; + + if (get_log_level() >= SYSLOG_LEVEL_DEBUG3) { + char buf[512]; + X509_NAME_oneline( X509_get_subject_name(cert), buf, sizeof(buf)); + debug3("ssh_x509_validate: for '%.512s'", buf); + } + + switch (va.type) { + default: + /*when something is missing*/ + fatal("ssh_x509_validate: invalid validator type %d", va.type); + break; /*;-)*/ + case SSHVA_NONE: + ret = 1; + break; + case SSHVA_OCSP_CERT: + ret = ssh_x509_validate4cert(cert, x509store); + break; + case SSHVA_OCSP_SPEC: + conn = ssh_ocsp_conn_new(va.responder_url); + if (conn != NULL) { + ret = ssh_ocsp_validate(cert, x509store, conn); + ssh_ocsp_conn_free(&conn); + } + break; + } + + return(ret); +#endif /*def SSH_OCSP_ENABLED*/ +} diff -ruN openssh-3.7.1p2+x509g4/tests/CA/1-cre_cadb.sh openssh-3.7.1p2+x509h/tests/CA/1-cre_cadb.sh --- openssh-3.7.1p2+x509g4/tests/CA/1-cre_cadb.sh 2004-03-03 16:42:59.000000000 +0200 +++ openssh-3.7.1p2+x509h/tests/CA/1-cre_cadb.sh 2004-03-20 12:50:15.000000000 +0200 @@ -53,6 +53,31 @@ # === +# args: +# none +echo_CA_ocsp_options () { +if test "x$SSH_OCSP" = "xyes"; then +cat << EOF + +# OCSP Validator(Responder) URI +# Since OpenSSL OCSP responder support only one issuer certificate +# we should setup for the test cases many responders - each certificate +# type with responder on different port. +EOF + printf "authorityInfoAccess = " +( + port=${SSH_VA_BASEPORT} + for DIGEST in ${RSA_DIGEST_LIST}; do + printf "serviceLocator;URI:http://${SSHD_LISTENADDRESS}:${port}," + port=`expr ${port} + 1` + done + printf "serviceLocator;URI:http://${SSHD_LISTENADDRESS}:${port}" +) +fi +} + + +# === cre_config () { cat << EOF > "$1" [ ca ] @@ -116,6 +141,30 @@ challengePassword = A challenge password challengePassword_min = 4 challengePassword_max = 20 + + +[ ca_cert ] +# PKIX recommendation. + +# This is what PKIX recommends but some broken software chokes on critical +# extensions. +#basicConstraints = critical,CA:true +# So we do this instead. +# Since we generate OpenSSH test CA we comment next line. +#basicConstraints=CA:true + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated OpenSSH Test CA Certificate" + +# Key usage: this is typical for a CA certificate. However since it will +# prevent it being used as an test self-signed certificate it is best +# left out by default. +# Since we generate OpenSSH test CA we comment next line. +#keyUsage = cRLSign, keyCertSign + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier = hash +authorityKeyIdentifier = keyid:always,issuer:always EOF @@ -132,13 +181,15 @@ # keyUsage = nonRepudiation, digitalSignature, keyEncipherment # This will be displayed in Netscape's comment listbox. -nsComment = "OpenSSL Generated Client Test Certificate" +nsComment = "OpenSSL Generated OpenSSH Test Client Certificate" # PKIX recommendations harmless if included in all certificates. subjectKeyIdentifier = hash authorityKeyIdentifier = keyid,issuer:always EOF +echo_CA_ocsp_options >> "$1" + # X.509 extensions: SSH server certificates cat << EOF >> "$1" @@ -160,12 +211,42 @@ # keyUsage = nonRepudiation, digitalSignature, keyEncipherment # This will be displayed in Netscape's comment listbox. -nsComment = "OpenSSL Generated Server Test Certificate" +nsComment = "OpenSSL Generated OpenSSH Test Server Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier = hash +authorityKeyIdentifier = keyid,issuer:always +EOF + +echo_CA_ocsp_options >> "$1" + + +# X.509 extensions: OCSP Validator certificates +if test "x$SSH_OCSP" = "xyes"; then +cat << EOF >> "$1" + + +[ ocsp_cert ] +# These extensions are added when 'ca' signs a request. +basicConstraints = CA:FALSE + +# Normal for validator certificate is: +nsCertType = objsign + +# This is typical in keyUsage for a validator certificate. +keyUsage = nonRepudiation, digitalSignature + +# This should present for a validator certificate. +extendedKeyUsage = OCSPSigning + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated OpenSSH Test OCSP Responder Certificate" # PKIX recommendations harmless if included in all certificates. subjectKeyIdentifier = hash authorityKeyIdentifier = keyid,issuer:always EOF +fi for DIGEST in ${RSA_DIGEST_LIST}; do diff -ruN openssh-3.7.1p2+x509g4/tests/CA/2-cre_cakeys.sh openssh-3.7.1p2+x509h/tests/CA/2-cre_cakeys.sh --- openssh-3.7.1p2+x509g4/tests/CA/2-cre_cakeys.sh 2004-02-16 22:24:38.000000000 +0200 +++ openssh-3.7.1p2+x509h/tests/CA/2-cre_cakeys.sh 2004-03-20 12:40:15.000000000 +0200 @@ -35,20 +35,16 @@ # === -SSH_DN_OU="OpenSSH Test CA Root" -SSH_DN_CN_BASE="OpenSSH Test CA key" - - echo_SSH_CA_DN () { cat <> "$OPENSSH_LOG" \ ; show_status $? "generating ${extd}TEST CA${norm} ${attn}rsa-${DIGEST}${norm} certificate" \ || return $? @@ -129,6 +126,7 @@ -passin pass:${KEY_PASS} \ -key "${TMPDIR}/${CAKEY_PREFIX}-dsa.key" \ -out "${TMPDIR}/${CAKEY_PREFIX}-dsa.crt" \ + -extensions ca_cert \ 2>> "$OPENSSH_LOG" \ ; show_status $? "generating ${extd}TEST CA${norm} ${attn}dsa-sha1${norm} certificate" \ || return $? @@ -186,7 +184,7 @@ create_empty_file "${TMPDIR}/${CACERTFILE}" && for type in ${SSH_SIGN_TYPES}; do F="${SSH_CACERTDIR}/${CAKEY_PREFIX}-${type}.crt.pem" - crt2bundle "$SSH_DN_OU" "${F}" >> "${TMPDIR}/${CACERTFILE}" || exit $? + crt2bundle "${SSH_DN_O}-${type}" "${F}" >> "${TMPDIR}/${CACERTFILE}" || exit $? done update_file "${TMPDIR}/${CACERTFILE}" "${SSH_CAROOT}/${CACERTFILE}" diff -ruN openssh-3.7.1p2+x509g4/tests/CA/3-cre_certs.sh openssh-3.7.1p2+x509h/tests/CA/3-cre_certs.sh --- openssh-3.7.1p2+x509g4/tests/CA/3-cre_certs.sh 2004-02-21 22:09:36.000000000 +0200 +++ openssh-3.7.1p2+x509h/tests/CA/3-cre_certs.sh 2004-03-20 12:54:08.000000000 +0200 @@ -32,7 +32,7 @@ cat < -f[ile] [ssh]key_file_name - -t[ype] certificate type: client or server + -t[ype] certificate type: client, server, ocsp(if enabled) -n[ame] "base" common name EOF exit 1 @@ -74,6 +74,14 @@ server) SSH_X509V3_EXTENSIONS="srv_cert" ;; + ocsp) + if test "x$SSH_OCSP" = "xyes"; then + SSH_X509V3_EXTENSIONS="ocsp_cert" + else + echo "${warn}unsupported type${norm}" + usage + fi + ;; *) echo "${warn}wrong type${norm}" usage @@ -229,6 +237,8 @@ cre_csr && cre_crt || return $? + test "$SSH_X509V3_EXTENSIONS" = "ocsp_cert" && return 0 + cre_OpenSSH_Crt && cre_OpenSSH_PubKey && cre_P12_Crt diff -ruN openssh-3.7.1p2+x509g4/tests/CA/config openssh-3.7.1p2+x509h/tests/CA/config --- openssh-3.7.1p2+x509g4/tests/CA/config 2004-02-16 22:23:19.000000000 +0200 +++ openssh-3.7.1p2+x509h/tests/CA/config 2004-03-20 12:02:17.000000000 +0200 @@ -65,6 +65,7 @@ dn_auth_path agent crl + ocsp " fi @@ -122,7 +123,7 @@ SSHSERVER_USEPRIVILEGESEPARATION="yes" SSHSERVER_SYSLOGFACILITY=AUTH -SSHSERVER_LOGLEVEL=INFO +SSHSERVER_LOGLEVEL=FATAL #SSHSERVER_SYSLOGFACILITY=LOCAL3 #SSHSERVER_LOGLEVEL=DEBUG3 @@ -152,3 +153,12 @@ SSH_DN_O="OpenSSH Test Team" SSH_DN_OU="OpenSSH Testers" SSH_DN_EM="email@not.set" + +# OpenSSL OCSP test responders listen on BASE, BASE+1, ... +if test -z "${SSH_VA_BASEPORT}"; then + SSH_VA_BASEPORT=20080 +fi + +# OpenSSL OCSP responder don't use SO_REUSEADDR :-(, so ocsp tests +# must wait socket to close. +SSH_OPENSLL_OCSP_TMOUT=60 diff -ruN openssh-3.7.1p2+x509g4/tests/CA/Makefile.in openssh-3.7.1p2+x509h/tests/CA/Makefile.in --- openssh-3.7.1p2+x509g4/tests/CA/Makefile.in 2004-02-21 22:11:12.000000000 +0200 +++ openssh-3.7.1p2+x509h/tests/CA/Makefile.in 2004-03-09 21:37:04.000000000 +0200 @@ -1,4 +1,6 @@ srcdir=@srcdir@ +@OCSP_ON@SSH_OCSP=yes +@OCSP_OFF@SSH_OCSP=no all: @@ -7,9 +9,11 @@ clean: rm -f testhostkey_* rm -f testid_* + rm -f testocsp_* rm -fr ca-test/ rm -f openssh_ca-?.log* rm -f openssh_ca-3.*.log* + rm -f va-*.log rm -f sshd_x509.log distclean: clean @@ -17,7 +21,7 @@ # === -check-certs: ca_files hostkeys identities crl_files +check-certs: ca_files hostkeys identities ocsp_certs crl_files @echo $(SHELL) $(srcdir)/openssh_tests.sh @@ -28,6 +32,7 @@ #ca-test/catest.config: $(srcdir)/config ca-test/catest.config: @echo + SSH_OCSP=$(SSH_OCSP) \ $(SHELL) $(srcdir)/1-cre_cadb.sh ca-test/catest-bundle.crt: ca-test/catest.config @@ -84,6 +89,29 @@ # === +@OCSP_OFF@ocsp_certs: +@OCSP_ON@ocsp_certs: testocsp_rsa-rsa_md5.crt testocsp_dsa-rsa_md5.crt + +@OCSP_ON@testocsp_rsa-rsa_md5.crt: testocsp_rsa ca-test/catest-bundle.crt +@OCSP_ON@ @echo; echo "generating RSA ocsp responder certificates." +@OCSP_ON@ SSH_OCSP=$(SSH_OCSP) \ +@OCSP_ON@ $(SHELL) $(srcdir)/3-cre_certs.sh -f testocsp_rsa -t ocsp -n "validator RSA" + +@OCSP_ON@testocsp_rsa: +@OCSP_ON@ @echo; echo "generating RSA 'ocspkey'" +@OCSP_ON@ $(TEST_SSH_SSHKEYGEN) -t rsa -b 1024 -f $@ -N "" + +@OCSP_ON@testocsp_dsa-rsa_md5.crt: testocsp_dsa ca-test/catest-bundle.crt +@OCSP_ON@ @echo; echo "generating DSA ocsp responder certificates." +@OCSP_ON@ SSH_OCSP=$(SSH_OCSP) \ +@OCSP_ON@ $(SHELL) $(srcdir)/3-cre_certs.sh -f testocsp_dsa -t ocsp -n "validator DSA" + +@OCSP_ON@testocsp_dsa: +@OCSP_ON@ @echo; echo "generating DSA 'ocspkey'" +@OCSP_ON@ $(TEST_SSH_SSHKEYGEN) -t dsa -b 1024 -f $@ -N "" + + +# === crl_files: ca-test/catest-bundle.crl ca-test/catest-bundle.crl: testid_rsa-rsa_md5 testid_dsa-rsa_md5 diff -ruN openssh-3.7.1p2+x509g4/tests/CA/openssh_tests.sh openssh-3.7.1p2+x509h/tests/CA/openssh_tests.sh --- openssh-3.7.1p2+x509g4/tests/CA/openssh_tests.sh 2004-03-08 23:50:23.000000000 +0200 +++ openssh-3.7.1p2+x509h/tests/CA/openssh_tests.sh 2004-03-20 11:42:40.000000000 +0200 @@ -53,6 +53,13 @@ testid_dsa " +#OpenSSL OCSP limitation: only rsa keys +#TEST_OCSP_RESPKEYS="\ +# testocsp_rsa +# testocsp_dsa +#" +TEST_OCSP_RESPKEYS="testocsp_rsa" + #TEST_SSHD_HOSTKEY="${CWD}/testhostkey_rsa-rsa_md5" TEST_SSHD_HOSTKEY="${CWD}/testhostkey_rsa" @@ -72,6 +79,7 @@ cat > "$SSHD_CFG" < "${SSHD_LOG}" 2>&1 @@ -80,6 +88,11 @@ else SSH_X509STORE_DISABLED="no" fi +if grep 'Unsupported.*VAType' "${SSHD_LOG}" > /dev/null; then + SSH_OCSP_ENABLED="no" +else + SSH_OCSP_ENABLED="yes" +fi echo SSH_X509STORE_DISABLED=${SSH_X509STORE_DISABLED} if test "x${SSH_X509STORE_DISABLED}" = "xyes"; then @@ -89,6 +102,10 @@ -e 's|dn_auth_path||g' \ -e 's|crl||g'` fi +echo SSH_OCSP_ENABLED=${SSH_OCSP_ENABLED} +if test "x${SSH_OCSP_ENABLED}" = "xno"; then + SSH_X509TESTS=`echo "${SSH_X509TESTS}" | sed -e 's|ocsp||g'` +fi echo SSH_X509TESTS=$SSH_X509TESTS @@ -197,6 +214,7 @@ cat > "${SSH_CFG}" <&2 + while test ${count} -gt 0; do + printf 'O' + sleep 1 + count=`expr ${count} - 1` + done + printf 'X\n' +) +} + + +# === +killResponders() { +( + if test -z "${SSH_OPENSLL_OCSP_TMOUT}"; then + ( + has="" + for pidfile in va-*.pid; do + if test -r "${pidfile}"; then + kill `cat "${pidfile}"` > /dev/null 2>&1 + has="yes" + fi + done + if test -n "${has}"; then + openssl_ocsp_tmout + fi + ) + fi + ( + has="" + for pidfile in va-*.pid; do + if test -r "${pidfile}"; then + kill -9 `cat "${pidfile}"` > /dev/null 2>&1 + rm -f "${pidfile}" + has="yes" + fi + done + if test -n "${has}"; then + openssl_ocsp_tmout + fi + ) + : +) +} + + +# === +OCSPtestBREAK() { + echo + killResponders + testBREAK +} + +trap OCSPtestBREAK INT QUIT ABRT KILL TERM || exit 1 + + +# === +#args: +# $1 - port +#env. vars: +# OCSP_RESPKEY +# type +runResponder() { +( + port=$1 + + pidfile="va-${port}.pid" + test -r "${pidfile}" && exit 1 + + printf ' %s' "starting OCSP ${extd}responder${norm}(${attn}${type}${norm}) on ${attn}${SSHD_LISTENADDRESS}:${port}${norm}" + ( + ${OPENSSL} ocsp \ + -CA "${SSH_CACERTDIR}/${CAKEY_PREFIX}-${type}.crt.pem" \ + -rsigner "${OCSP_RESPKEY}-${type}.crt" \ + -rkey "${OCSP_RESPKEY}" \ + -index "${SSH_CAROOT}/index-${type}.txt" \ + -host ${SSHD_LISTENADDRESS} \ + -port ${port} 2> va-${type}.log & + pid=$! + echo ${pid} > "${pidfile}" + wait ${pid} + rm -f "${pidfile}" + ) 2> /dev/null & + + sleep 1 + test -r "${pidfile}"; show_status $? +) +} + + +# === +test_ocsp_cert () { +( + printSeparator + echo "Begin test ${extd}against${norm} OCSP provider from ${attn}certificate${norm} ..." + + retval=1 + for OCSP_RESPKEY in ${TEST_OCSP_RESPKEYS}; do + printSeparator + echo " respoder key base ${attn}${OCSP_RESPKEY}${norm} ..." + + creTestSSHDcfgFile + cat >> "$SSHD_CFG" <> "$SSHD_CFG" < 0) { +/* + * OpenSSH implementation first verify and validate certificate by + * "X.509 store" with certs and crls from file system. It is fast + * check. After this when certificate chain is correct and + * certificate is not revoked we send a status request to an OCSP + * responder if configured. + * + * RFC2560(OCSP): + * ... + * 2.7 CA Key Compromise + * If an OCSP responder knows that a particular CA's private key + * has been compromised, it MAY return the revoked state for all + * certificates issued by that CA. + * ... + * 5. Security Considerations + * For this service to be effective, certificate using systems must + * connect to the certificate status service provider. In the event + * such a connection cannot be obtained, certificate-using systems + * could implement CRL processing logic as a fall-back position. + * ... + * RFC2560(OCSP)^ + * + * About OpenSSH implementation: + * 1.) We preffer to delegate validation of issuer certificates to + * 'OCSP Provider'. It is easy and simple to configure an OCSP + * responder to return revoked state for all certificates issued + * by a CA. Usually 'OCSP Provider' admins shall be first informed + * for certificates with changed state. In each case this simplify + * 'OCSP client'. + * 2.) To conform to RFC2560 we should use OCSP to check status of + * all certificates in the chain. Since this is network request it + * is good to implement a cache and to save status with lifetime. + * Might is good to have an OCSP cache server ;-). + * + * To minimize network latency and keeping in mind 1.) we send + * 'OCSP request' only for the last certificate in the chain, i.e. + * sended client or server certificate. + * + * Therefore instead to send OCSP request in ssh_x509revoked_cb() + * we do this here. + */ + ret = ssh_x509_validate(_cert, x509store); + } #else /*def SSH_X509STORE_DISABLED*/ if (sshpurpose.index >=0) { @@ -498,7 +542,7 @@ { EVP_PKEY *pkey = X509_get_pubkey(cert); if (pkey == NULL) { - error("ssh_check_crl:unable to devode public key"); + error("ssh_check_crl:unable to decode public key"); X509_STORE_CTX_set_error(_ctx, X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY); return(0); } @@ -572,8 +616,8 @@ static int ssh_x509revoked_cb(int ok, X509_STORE_CTX *ctx) { - X509 *cert; - X509_OBJECT xobj; + X509 *cert; + X509_OBJECT xobj; if (!ok) return(0); if (x509revoked == NULL) diff -ruN openssh-3.7.1p2+x509g4/x509store.h openssh-3.7.1p2+x509h/x509store.h --- openssh-3.7.1p2+x509g4/x509store.h 2004-02-22 00:00:47.000000000 +0200 +++ openssh-3.7.1p2+x509h/x509store.h 2004-03-21 11:09:12.000000000 +0200 @@ -51,7 +51,43 @@ int ssh_x509store_addlocations(const X509StoreOptions *_locations); +int ssh_x509_validate(X509 *cert, X509_STORE *x509store); + #endif /*ndef SSH_X509STORE_DISABLED*/ +#ifdef SSH_X509STORE_DISABLED +#ifdef SSH_OCSP_ENABLED +# include "cannot enable OCSP when x509store is disabled" +#endif /*def SSH_OCSP_ENABLED*/ +#endif /*def SSH_X509STORE_DISABLED*/ + + +#ifdef SSH_OCSP_ENABLED + +enum va_type { + SSHVA_NONE, + SSHVA_OCSP_CERT, + SSHVA_OCSP_SPEC +}; + + +typedef struct { + int type; /*allowed values from enum va_type*/ + + /* file with additional trusted certificates */ + const char *certificate_file; + + /* ssh OCSP Provider(Respoder) URL */ + const char *responder_url; +} VAOptions; + +int ssh_get_default_vatype(void); +int ssh_get_vatype_s(const char* type); + +void ssh_set_validator(const VAOptions *_va); /*fatal on error*/ + +#endif /*def SSH_OCSP_ENABLED*/ + + #endif /* X509STORE_H */