diff -urP --exclude-from=exclude.list openssh-3.1p1/Makefile.in openssh-3.1p1+x509c/Makefile.in --- openssh-3.1p1/Makefile.in Tue Feb 26 21:24:22 2002 +++ openssh-3.1p1+x509c/Makefile.in Fri Jun 14 18:58:56 2002 @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.197 2002/02/26 19:24:22 mouring Exp $ +# $Id$ prefix=@prefix@ exec_prefix=@exec_prefix@ @@ -9,6 +9,7 @@ mandir=@mandir@ mansubdir=@mansubdir@ sysconfdir=@sysconfdir@ +sshcadir=@sshcadir@ piddir=@piddir@ srcdir=@srcdir@ top_srcdir=@top_srcdir@ @@ -20,6 +21,7 @@ SFTP_SERVER=$(libexecdir)/sftp-server PATHS= -DSSHDIR=\"$(sysconfdir)\" \ + -DSSHCADIR=\"$(sshcadir)\" \ -D_PATH_SSH_PROGRAM=\"$(SSH_PROGRAM)\" \ -D_PATH_SSH_ASKPASS_DEFAULT=\"$(ASKPASS_PROGRAM)\" \ -D_PATH_SFTP_SERVER=\"$(SFTP_SERVER)\" \ @@ -50,11 +52,11 @@ TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) ssh-rand-helper${EXEEXT} $(SFTP_PROGS) -LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dh.o dispatch.o fatal.o mac.o hostfile.o key.o kex.o kexdh.o kexgex.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o scard.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o +LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dh.o dispatch.o fatal.o mac.o hostfile.o key.o kex.o kexdh.o kexgex.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o scard.o ssh-dss.o ssh-rsa.o ssh-x509.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o -SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o auth-sia.o sshpty.o sshlogin.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o auth-skey.o auth-bsdauth.o +SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o auth-sia.o sshpty.o sshlogin.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o auth-skey.o auth-bsdauth.o x509store.o MANPAGES = scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out MANPAGES_IN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 @@ -72,6 +74,10 @@ -D/etc/ssh/ssh_host_key=$(sysconfdir)/ssh_host_key \ -D/etc/ssh/ssh_host_dsa_key=$(sysconfdir)/ssh_host_dsa_key \ -D/etc/ssh/ssh_host_rsa_key=$(sysconfdir)/ssh_host_rsa_key \ + -D/etc/ssh/ca/ca-bundle.crt=$(sshcadir)/ca-bundle.crt \ + -D/etc/ssh/ca/crt=$(sshcadir)/crt \ + -D/etc/ssh/ca/ca-bundle.crl=$(sshcadir)/ca-bundle.crl \ + -D/etc/ssh/ca/crl=$(sshcadir)/crl \ -D/var/run/sshd.pid=$(piddir)/sshd.pid \ -D/etc/ssh/moduli=$(sysconfdir)/moduli \ -D/etc/ssh/sshrc=$(sysconfdir)/sshrc \ diff -urP --exclude-from=exclude.list openssh-3.1p1/auth2.c openssh-3.1p1+x509c/auth2.c --- openssh-3.1p1/auth2.c Tue Feb 26 20:09:43 2002 +++ openssh-3.1p1+x509c/auth2.c Fri Jun 14 19:05:02 2002 @@ -51,6 +51,7 @@ #include "hostfile.h" #include "canohost.h" #include "match.h" +#include "ssh-x509.h" /* import */ extern ServerOptions options; @@ -429,7 +430,12 @@ pkalg); goto done; } - key = key_from_blob(pkblob, blen); + if (pktype == KEY_X509_RSA || pktype == KEY_X509_DSA) { + key = x509key_from_blob(pkblob, blen); + } + else { + key = key_from_blob(pkblob, blen); + } if (key == NULL) { error("userauth_pubkey: cannot decode key: %s", pkalg); goto done; diff -urP --exclude-from=exclude.list openssh-3.1p1/authfile.c openssh-3.1p1+x509c/authfile.c --- openssh-3.1p1/authfile.c Tue Mar 5 03:33:38 2002 +++ openssh-3.1p1+x509c/authfile.c Mon Jun 17 17:01:38 2002 @@ -51,6 +51,7 @@ #include "log.h" #include "authfile.h" #include "rsa.h" +#include "ssh-x509.h" /* Version identification string for SSH v1 identity files. */ static const char authfile_id_string[] = @@ -195,6 +196,10 @@ success = PEM_write_RSAPrivateKey(fp, key->rsa, cipher, passphrase, len, NULL, NULL); break; + case KEY_X509_RSA: + case KEY_X509_DSA: + success = x509key_save_pem(fp, key, cipher, passphrase, len); + break; } fclose(fp); return success; @@ -211,6 +216,8 @@ break; case KEY_DSA: case KEY_RSA: + case KEY_X509_RSA: + case KEY_X509_DSA: return key_save_private_pem(key, filename, passphrase, comment); break; @@ -430,6 +437,7 @@ Key *prv = NULL; char *name = ""; + debug("read PEM private key begin"); fp = fdopen(fd, "r"); if (fp == NULL) { error("fdopen failed: %s", strerror(errno)); @@ -462,6 +470,8 @@ error("PEM_read_PrivateKey: mismatch or " "unknown EVP_PKEY save_type %d", pk->save_type); } + if (prv) + x509key_load_cert(prv, fp); fclose(fp); if (pk != NULL) EVP_PKEY_free(pk); @@ -607,6 +617,7 @@ Key *pub; char file[MAXPATHLEN]; + debug3("key_load_public(%.200s,...)", filename); pub = key_load_public_type(KEY_RSA1, filename, commentp); if (pub != NULL) return pub; diff -urP --exclude-from=exclude.list openssh-3.1p1/configure openssh-3.1p1+x509c/configure --- openssh-3.1p1/configure Thu Mar 7 04:22:29 2002 +++ openssh-3.1p1+x509c/configure Fri Jun 14 18:58:56 2002 @@ -716,6 +716,7 @@ --with-ipv4-default Use IPv4 by connections unless '-6' specified --with-4in6 Check for and convert IPv4 in IPv6 mapped addresses --with-bsd-auth Enable BSD auth support + --with-sshca-dir=PATH Specify location of ssh CA root --with-pid-dir=PATH Specify location of ssh.pid file --with-lastlog=FILE|DIR specify lastlog location common locations @@ -929,7 +930,7 @@ fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then - { echo "$as_me:932: loading site script $ac_site_file" >&5 + { echo "$as_me:933: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" @@ -940,7 +941,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:943: loading cache $cache_file" >&5 + { echo "$as_me:944: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; @@ -948,7 +949,7 @@ esac fi else - { echo "$as_me:951: creating cache $cache_file" >&5 + { echo "$as_me:952: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -964,21 +965,21 @@ eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) - { echo "$as_me:967: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 + { echo "$as_me:968: 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:971: error: \`$ac_var' was not set in the previous run" >&5 + { echo "$as_me:972: 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:977: error: \`$ac_var' has changed since the previous run:" >&5 + { echo "$as_me:978: 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:979: former value: $ac_old_val" >&5 + { echo "$as_me:980: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:981: current value: $ac_new_val" >&5 + { echo "$as_me:982: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; @@ -997,9 +998,9 @@ fi done if $ac_cache_corrupted; then - { echo "$as_me:1000: error: changes in the environment can compromise the build" >&5 + { echo "$as_me:1001: 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:1002: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 + { { echo "$as_me:1003: 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 @@ -1019,10 +1020,10 @@ echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh -if { (echo "$as_me:1022: PATH=\".;.\"; conftest.sh") >&5 +if { (echo "$as_me:1023: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? - echo "$as_me:1025: \$? = $ac_status" >&5 + echo "$as_me:1026: \$? = $ac_status" >&5 (exit $ac_status); }; then ac_path_separator=';' else @@ -1041,7 +1042,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:1044: checking for $ac_word" >&5 +echo "$as_me:1045: 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 @@ -1056,7 +1057,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:1059: found $ac_dir/$ac_word" >&5 +echo "$as_me:1060: found $ac_dir/$ac_word" >&5 break done @@ -1064,10 +1065,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1067: result: $CC" >&5 + echo "$as_me:1068: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1070: result: no" >&5 + echo "$as_me:1071: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1076,7 +1077,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:1079: checking for $ac_word" >&5 +echo "$as_me:1080: 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 @@ -1091,7 +1092,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:1094: found $ac_dir/$ac_word" >&5 +echo "$as_me:1095: found $ac_dir/$ac_word" >&5 break done @@ -1099,10 +1100,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1102: result: $ac_ct_CC" >&5 + echo "$as_me:1103: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1105: result: no" >&5 + echo "$as_me:1106: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1115,7 +1116,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:1118: checking for $ac_word" >&5 +echo "$as_me:1119: 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 @@ -1130,7 +1131,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:1133: found $ac_dir/$ac_word" >&5 +echo "$as_me:1134: found $ac_dir/$ac_word" >&5 break done @@ -1138,10 +1139,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1141: result: $CC" >&5 + echo "$as_me:1142: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1144: result: no" >&5 + echo "$as_me:1145: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1150,7 +1151,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:1153: checking for $ac_word" >&5 +echo "$as_me:1154: 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 @@ -1165,7 +1166,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:1168: found $ac_dir/$ac_word" >&5 +echo "$as_me:1169: found $ac_dir/$ac_word" >&5 break done @@ -1173,10 +1174,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1176: result: $ac_ct_CC" >&5 + echo "$as_me:1177: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1179: result: no" >&5 + echo "$as_me:1180: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1189,7 +1190,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:1192: checking for $ac_word" >&5 +echo "$as_me:1193: 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 @@ -1209,7 +1210,7 @@ continue fi ac_cv_prog_CC="cc" -echo "$as_me:1212: found $ac_dir/$ac_word" >&5 +echo "$as_me:1213: found $ac_dir/$ac_word" >&5 break done @@ -1231,10 +1232,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1234: result: $CC" >&5 + echo "$as_me:1235: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1237: result: no" >&5 + echo "$as_me:1238: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1245,7 +1246,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:1248: checking for $ac_word" >&5 +echo "$as_me:1249: 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 @@ -1260,7 +1261,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:1263: found $ac_dir/$ac_word" >&5 +echo "$as_me:1264: found $ac_dir/$ac_word" >&5 break done @@ -1268,10 +1269,10 @@ fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:1271: result: $CC" >&5 + echo "$as_me:1272: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:1274: result: no" >&5 + echo "$as_me:1275: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1284,7 +1285,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:1287: checking for $ac_word" >&5 +echo "$as_me:1288: 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 @@ -1299,7 +1300,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:1302: found $ac_dir/$ac_word" >&5 +echo "$as_me:1303: found $ac_dir/$ac_word" >&5 break done @@ -1307,10 +1308,10 @@ fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then - echo "$as_me:1310: result: $ac_ct_CC" >&5 + echo "$as_me:1311: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else - echo "$as_me:1313: result: no" >&5 + echo "$as_me:1314: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -1322,32 +1323,32 @@ fi -test -z "$CC" && { { echo "$as_me:1325: error: no acceptable cc found in \$PATH" >&5 +test -z "$CC" && { { echo "$as_me:1326: 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:1330:" \ +echo "$as_me:1331:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:1333: \"$ac_compiler --version &5\"") >&5 +{ (eval echo "$as_me:1334: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? - echo "$as_me:1336: \$? = $ac_status" >&5 + echo "$as_me:1337: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1338: \"$ac_compiler -v &5\"") >&5 +{ (eval echo "$as_me:1339: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? - echo "$as_me:1341: \$? = $ac_status" >&5 + echo "$as_me:1342: \$? = $ac_status" >&5 (exit $ac_status); } -{ (eval echo "$as_me:1343: \"$ac_compiler -V &5\"") >&5 +{ (eval echo "$as_me:1344: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? - echo "$as_me:1346: \$? = $ac_status" >&5 + echo "$as_me:1347: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF -#line 1350 "configure" +#line 1351 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -1369,13 +1370,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:1372: checking for C compiler default output" >&5 +echo "$as_me:1373: 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:1375: \"$ac_link_default\"") >&5 +if { (eval echo "$as_me:1376: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? - echo "$as_me:1378: \$? = $ac_status" >&5 + echo "$as_me:1379: \$? = $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 @@ -1398,34 +1399,34 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1401: error: C compiler cannot create executables" >&5 +{ { echo "$as_me:1402: 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:1407: result: $ac_file" >&5 +echo "$as_me:1408: 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:1412: checking whether the C compiler works" >&5 +echo "$as_me:1413: 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:1418: \"$ac_try\"") >&5 + { (eval echo "$as_me:1419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1421: \$? = $ac_status" >&5 + echo "$as_me:1422: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else - { { echo "$as_me:1428: error: cannot run C compiled programs. + { { echo "$as_me:1429: 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;} @@ -1433,24 +1434,24 @@ fi fi fi -echo "$as_me:1436: result: yes" >&5 +echo "$as_me:1437: 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:1443: checking whether we are cross compiling" >&5 +echo "$as_me:1444: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:1445: result: $cross_compiling" >&5 +echo "$as_me:1446: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 -echo "$as_me:1448: checking for executable suffix" >&5 +echo "$as_me:1449: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 -if { (eval echo "$as_me:1450: \"$ac_link\"") >&5 +if { (eval echo "$as_me:1451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:1453: \$? = $ac_status" >&5 + echo "$as_me:1454: \$? = $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 @@ -1466,25 +1467,25 @@ esac done else - { { echo "$as_me:1469: error: cannot compute EXEEXT: cannot compile and link" >&5 + { { echo "$as_me:1470: 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:1475: result: $ac_cv_exeext" >&5 +echo "$as_me:1476: 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:1481: checking for object suffix" >&5 +echo "$as_me:1482: 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 1487 "configure" +#line 1488 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -1502,10 +1503,10 @@ } _ACEOF rm -f conftest.o conftest.obj -if { (eval echo "$as_me:1505: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1508: \$? = $ac_status" >&5 + echo "$as_me:1509: \$? = $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 @@ -1517,24 +1518,24 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:1520: error: cannot compute OBJEXT: cannot compile" >&5 +{ { echo "$as_me:1521: 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:1527: result: $ac_cv_objext" >&5 +echo "$as_me:1528: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -echo "$as_me:1531: checking whether we are using the GNU C compiler" >&5 +echo "$as_me:1532: 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 1537 "configure" +#line 1538 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -1555,16 +1556,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1558: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1559: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1561: \$? = $ac_status" >&5 + echo "$as_me:1562: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1564: \"$ac_try\"") >&5 + { (eval echo "$as_me:1565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1567: \$? = $ac_status" >&5 + echo "$as_me:1568: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else @@ -1576,19 +1577,19 @@ ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -echo "$as_me:1579: result: $ac_cv_c_compiler_gnu" >&5 +echo "$as_me:1580: 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:1585: checking whether $CC accepts -g" >&5 +echo "$as_me:1586: 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 1591 "configure" +#line 1592 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -1606,16 +1607,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1609: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1610: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1612: \$? = $ac_status" >&5 + echo "$as_me:1613: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1615: \"$ac_try\"") >&5 + { (eval echo "$as_me:1616: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1618: \$? = $ac_status" >&5 + echo "$as_me:1619: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else @@ -1625,7 +1626,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:1628: result: $ac_cv_prog_cc_g" >&5 +echo "$as_me:1629: 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 @@ -1652,16 +1653,16 @@ #endif _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1655: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1656: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1658: \$? = $ac_status" >&5 + echo "$as_me:1659: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1661: \"$ac_try\"") >&5 + { (eval echo "$as_me:1662: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1664: \$? = $ac_status" >&5 + echo "$as_me:1665: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ @@ -1673,7 +1674,7 @@ 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF -#line 1676 "configure" +#line 1677 "configure" #include "confdefs.h" #include $ac_declaration @@ -1692,16 +1693,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1695: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1696: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1698: \$? = $ac_status" >&5 + echo "$as_me:1699: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1701: \"$ac_try\"") >&5 + { (eval echo "$as_me:1702: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1704: \$? = $ac_status" >&5 + echo "$as_me:1705: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -1711,7 +1712,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 1714 "configure" +#line 1715 "configure" #include "confdefs.h" $ac_declaration #ifdef F77_DUMMY_MAIN @@ -1729,16 +1730,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1732: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1733: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1735: \$? = $ac_status" >&5 + echo "$as_me:1736: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1738: \"$ac_try\"") >&5 + { (eval echo "$as_me:1739: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1741: \$? = $ac_status" >&5 + echo "$as_me:1742: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -1782,7 +1783,7 @@ fi done if test -z "$ac_aux_dir"; then - { { echo "$as_me:1785: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 + { { echo "$as_me:1786: 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 @@ -1792,11 +1793,11 @@ # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || - { { echo "$as_me:1795: error: cannot run $ac_config_sub" >&5 + { { echo "$as_me:1796: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } -echo "$as_me:1799: checking build system type" >&5 +echo "$as_me:1800: 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 @@ -1805,23 +1806,23 @@ test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && - { { echo "$as_me:1808: error: cannot guess build type; you must specify one" >&5 + { { echo "$as_me:1809: 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:1812: error: $ac_config_sub $ac_cv_build_alias failed." >&5 + { { echo "$as_me:1813: 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:1817: result: $ac_cv_build" >&5 +echo "$as_me:1818: 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:1824: checking host system type" >&5 +echo "$as_me:1825: 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 @@ -1830,26 +1831,26 @@ 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:1833: error: $ac_config_sub $ac_cv_host_alias failed" >&5 + { { echo "$as_me:1834: 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:1838: result: $ac_cv_host" >&5 +echo "$as_me:1839: 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:1845: checking whether byte ordering is bigendian" >&5 +echo "$as_me:1846: 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 else # See if sys/param.h defines the BYTE_ORDER macro. cat >conftest.$ac_ext <<_ACEOF -#line 1852 "configure" +#line 1853 "configure" #include "confdefs.h" #include #include @@ -1872,20 +1873,20 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1875: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1876: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1878: \$? = $ac_status" >&5 + echo "$as_me:1879: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1881: \"$ac_try\"") >&5 + { (eval echo "$as_me:1882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1884: \$? = $ac_status" >&5 + echo "$as_me:1885: \$? = $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 1888 "configure" +#line 1889 "configure" #include "confdefs.h" #include #include @@ -1908,16 +1909,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1911: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1912: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1914: \$? = $ac_status" >&5 + echo "$as_me:1915: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1917: \"$ac_try\"") >&5 + { (eval echo "$as_me:1918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1920: \$? = $ac_status" >&5 + echo "$as_me:1921: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=yes else @@ -1934,7 +1935,7 @@ # try to guess the endianess by grep'ing values into an object file ac_cv_c_bigendian=unknown cat >conftest.$ac_ext <<_ACEOF -#line 1937 "configure" +#line 1938 "configure" #include "confdefs.h" short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; @@ -1957,16 +1958,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:1960: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:1961: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:1963: \$? = $ac_status" >&5 + echo "$as_me:1964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1966: \"$ac_try\"") >&5 + { (eval echo "$as_me:1967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:1969: \$? = $ac_status" >&5 + echo "$as_me:1970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then if fgrep BIGenDianSyS conftest.$ac_objext >/dev/null ; then ac_cv_c_bigendian=yes @@ -1986,7 +1987,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 1989 "configure" +#line 1990 "configure" #include "confdefs.h" int main () @@ -2002,15 +2003,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:2005: \"$ac_link\"") >&5 +if { (eval echo "$as_me:2006: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:2008: \$? = $ac_status" >&5 + echo "$as_me:2009: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:2010: \"$ac_try\"") >&5 + { (eval echo "$as_me:2011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2013: \$? = $ac_status" >&5 + echo "$as_me:2014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=no else @@ -2024,7 +2025,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:2027: result: $ac_cv_c_bigendian" >&5 +echo "$as_me:2028: result: $ac_cv_c_bigendian" >&5 echo "${ECHO_T}$ac_cv_c_bigendian" >&6 case $ac_cv_c_bigendian in yes) @@ -2036,7 +2037,7 @@ no) ;; *) - { { echo "$as_me:2039: error: unknown endianess + { { echo "$as_me:2040: error: unknown endianess presetting ac_cv_c_bigendian=no (or yes) will help" >&5 echo "$as_me: error: unknown endianess presetting ac_cv_c_bigendian=no (or yes) will help" >&2;} @@ -2049,7 +2050,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:2052: checking how to run the C preprocessor" >&5 +echo "$as_me:2053: 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 @@ -2070,18 +2071,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 2073 "configure" +#line 2074 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:2078: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2079: \"$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:2084: \$? = $ac_status" >&5 + echo "$as_me:2085: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2104,17 +2105,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2107 "configure" +#line 2108 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:2111: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2112: \"$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:2117: \$? = $ac_status" >&5 + echo "$as_me:2118: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2151,7 +2152,7 @@ else ac_cv_prog_CPP=$CPP fi -echo "$as_me:2154: result: $CPP" >&5 +echo "$as_me:2155: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -2161,18 +2162,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 2164 "configure" +#line 2165 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:2169: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2170: \"$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:2175: \$? = $ac_status" >&5 + echo "$as_me:2176: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2195,17 +2196,17 @@ # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 2198 "configure" +#line 2199 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:2202: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:2203: \"$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:2208: \$? = $ac_status" >&5 + echo "$as_me:2209: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -2233,7 +2234,7 @@ if $ac_preproc_ok; then : else - { { echo "$as_me:2236: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:2237: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -2247,7 +2248,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:2250: checking for $ac_word" >&5 +echo "$as_me:2251: 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 @@ -2262,7 +2263,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:2265: found $ac_dir/$ac_word" >&5 +echo "$as_me:2266: found $ac_dir/$ac_word" >&5 break done @@ -2270,10 +2271,10 @@ fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:2273: result: $RANLIB" >&5 + echo "$as_me:2274: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:2276: result: no" >&5 + echo "$as_me:2277: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2282,7 +2283,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:2285: checking for $ac_word" >&5 +echo "$as_me:2286: 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 @@ -2297,7 +2298,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:2300: found $ac_dir/$ac_word" >&5 +echo "$as_me:2301: found $ac_dir/$ac_word" >&5 break done @@ -2306,10 +2307,10 @@ fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:2309: result: $ac_ct_RANLIB" >&5 + echo "$as_me:2310: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:2312: result: no" >&5 + echo "$as_me:2313: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2330,7 +2331,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:2333: checking for a BSD compatible install" >&5 +echo "$as_me:2334: 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 @@ -2379,7 +2380,7 @@ INSTALL=$ac_install_sh fi fi -echo "$as_me:2382: result: $INSTALL" >&5 +echo "$as_me:2383: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. @@ -2392,7 +2393,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:2395: checking for $ac_word" >&5 +echo "$as_me:2396: 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 @@ -2409,7 +2410,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:2412: found $ac_dir/$ac_word" >&5 + echo "$as_me:2413: found $ac_dir/$ac_word" >&5 break fi done @@ -2420,10 +2421,10 @@ AR=$ac_cv_path_AR if test -n "$AR"; then - echo "$as_me:2423: result: $AR" >&5 + echo "$as_me:2424: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else - echo "$as_me:2426: result: no" >&5 + echo "$as_me:2427: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2431,7 +2432,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:2434: checking for $ac_word" >&5 +echo "$as_me:2435: 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 @@ -2448,7 +2449,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:2451: found $ac_dir/$ac_word" >&5 + echo "$as_me:2452: found $ac_dir/$ac_word" >&5 break fi done @@ -2459,10 +2460,10 @@ PERL=$ac_cv_path_PERL if test -n "$PERL"; then - echo "$as_me:2462: result: $PERL" >&5 + echo "$as_me:2463: result: $PERL" >&5 echo "${ECHO_T}$PERL" >&6 else - echo "$as_me:2465: result: no" >&5 + echo "$as_me:2466: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2471,7 +2472,7 @@ # Extract the first word of "ent", so it can be a program name with args. set dummy ent; ac_word=$2 -echo "$as_me:2474: checking for $ac_word" >&5 +echo "$as_me:2475: 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 @@ -2488,7 +2489,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:2491: found $ac_dir/$ac_word" >&5 + echo "$as_me:2492: found $ac_dir/$ac_word" >&5 break fi done @@ -2499,10 +2500,10 @@ ENT=$ac_cv_path_ENT if test -n "$ENT"; then - echo "$as_me:2502: result: $ENT" >&5 + echo "$as_me:2503: result: $ENT" >&5 echo "${ECHO_T}$ENT" >&6 else - echo "$as_me:2505: result: no" >&5 + echo "$as_me:2506: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2510,7 +2511,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:2513: checking for $ac_word" >&5 +echo "$as_me:2514: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_FILEPRIV+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2527,7 +2528,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_FILEPRIV="$ac_dir/$ac_word" - echo "$as_me:2530: found $ac_dir/$ac_word" >&5 + echo "$as_me:2531: found $ac_dir/$ac_word" >&5 break fi done @@ -2538,10 +2539,10 @@ FILEPRIV=$ac_cv_path_FILEPRIV if test -n "$FILEPRIV"; then - echo "$as_me:2541: result: $FILEPRIV" >&5 + echo "$as_me:2542: result: $FILEPRIV" >&5 echo "${ECHO_T}$FILEPRIV" >&6 else - echo "$as_me:2544: result: no" >&5 + echo "$as_me:2545: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2551,7 +2552,7 @@ # Extract the first word of "bash", so it can be a program name with args. set dummy bash; ac_word=$2 -echo "$as_me:2554: checking for $ac_word" >&5 +echo "$as_me:2555: 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 @@ -2568,7 +2569,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:2571: found $ac_dir/$ac_word" >&5 + echo "$as_me:2572: found $ac_dir/$ac_word" >&5 break fi done @@ -2579,16 +2580,16 @@ TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then - echo "$as_me:2582: result: $TEST_MINUS_S_SH" >&5 + echo "$as_me:2583: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else - echo "$as_me:2585: result: no" >&5 + echo "$as_me:2586: 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:2591: checking for $ac_word" >&5 +echo "$as_me:2592: 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 @@ -2605,7 +2606,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:2608: found $ac_dir/$ac_word" >&5 + echo "$as_me:2609: found $ac_dir/$ac_word" >&5 break fi done @@ -2616,16 +2617,16 @@ TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then - echo "$as_me:2619: result: $TEST_MINUS_S_SH" >&5 + echo "$as_me:2620: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else - echo "$as_me:2622: result: no" >&5 + echo "$as_me:2623: 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:2628: checking for $ac_word" >&5 +echo "$as_me:2629: 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 @@ -2642,7 +2643,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:2645: found $ac_dir/$ac_word" >&5 + echo "$as_me:2646: found $ac_dir/$ac_word" >&5 break fi done @@ -2653,10 +2654,10 @@ TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then - echo "$as_me:2656: result: $TEST_MINUS_S_SH" >&5 + echo "$as_me:2657: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else - echo "$as_me:2659: result: no" >&5 + echo "$as_me:2660: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -2668,7 +2669,7 @@ fi; if test "$enable_largefile" != no; then - echo "$as_me:2671: checking for special C compiler options needed for large files" >&5 + echo "$as_me:2672: 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 @@ -2680,7 +2681,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 2683 "configure" +#line 2684 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -2706,16 +2707,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2709: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2710: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2712: \$? = $ac_status" >&5 + echo "$as_me:2713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2715: \"$ac_try\"") >&5 + { (eval echo "$as_me:2716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2718: \$? = $ac_status" >&5 + echo "$as_me:2719: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2725,16 +2726,16 @@ rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:2728: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2729: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2731: \$? = $ac_status" >&5 + echo "$as_me:2732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2734: \"$ac_try\"") >&5 + { (eval echo "$as_me:2735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2737: \$? = $ac_status" >&5 + echo "$as_me:2738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -2748,13 +2749,13 @@ rm -f conftest.$ac_ext fi fi -echo "$as_me:2751: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:2752: 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:2757: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:2758: 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 @@ -2762,7 +2763,7 @@ while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 2765 "configure" +#line 2766 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -2788,16 +2789,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2791: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2792: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2794: \$? = $ac_status" >&5 + echo "$as_me:2795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2797: \"$ac_try\"") >&5 + { (eval echo "$as_me:2798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2800: \$? = $ac_status" >&5 + echo "$as_me:2801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2806,7 +2807,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 2809 "configure" +#line 2810 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include @@ -2833,16 +2834,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2836: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2837: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2839: \$? = $ac_status" >&5 + echo "$as_me:2840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2842: \"$ac_try\"") >&5 + { (eval echo "$as_me:2843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2845: \$? = $ac_status" >&5 + echo "$as_me:2846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -2853,7 +2854,7 @@ break done fi -echo "$as_me:2856: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:2857: 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 @@ -2863,7 +2864,7 @@ fi rm -f conftest* - echo "$as_me:2866: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:2867: 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 @@ -2871,7 +2872,7 @@ while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 2874 "configure" +#line 2875 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. @@ -2897,16 +2898,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2900: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2901: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2903: \$? = $ac_status" >&5 + echo "$as_me:2904: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2906: \"$ac_try\"") >&5 + { (eval echo "$as_me:2907: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2909: \$? = $ac_status" >&5 + echo "$as_me:2910: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -2915,7 +2916,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 2918 "configure" +#line 2919 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include @@ -2942,16 +2943,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:2945: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:2946: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:2948: \$? = $ac_status" >&5 + echo "$as_me:2949: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:2951: \"$ac_try\"") >&5 + { (eval echo "$as_me:2952: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:2954: \$? = $ac_status" >&5 + echo "$as_me:2955: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -2962,7 +2963,7 @@ break done fi -echo "$as_me:2965: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:2966: 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 @@ -2975,7 +2976,7 @@ fi if test -z "$AR" ; then - { { echo "$as_me:2978: error: *** 'ar' missing, please install or fix your \$PATH ***" >&5 + { { echo "$as_me:2979: 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 @@ -2990,7 +2991,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:2993: checking for $ac_word" >&5 +echo "$as_me:2994: 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 @@ -3007,7 +3008,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:3010: found $ac_dir/$ac_word" >&5 + echo "$as_me:3011: found $ac_dir/$ac_word" >&5 break fi done @@ -3018,10 +3019,10 @@ LOGIN_PROGRAM_FALLBACK=$ac_cv_path_LOGIN_PROGRAM_FALLBACK if test -n "$LOGIN_PROGRAM_FALLBACK"; then - echo "$as_me:3021: result: $LOGIN_PROGRAM_FALLBACK" >&5 + echo "$as_me:3022: result: $LOGIN_PROGRAM_FALLBACK" >&5 echo "${ECHO_T}$LOGIN_PROGRAM_FALLBACK" >&6 else - echo "$as_me:3024: result: no" >&5 + echo "$as_me:3025: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3037,7 +3038,7 @@ LD=$CC fi -echo "$as_me:3040: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:3041: 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 @@ -3045,7 +3046,7 @@ ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 3048 "configure" +#line 3049 "configure" #include "confdefs.h" #include #include @@ -3100,16 +3101,16 @@ do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3103: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3104: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3106: \$? = $ac_status" >&5 + echo "$as_me:3107: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3109: \"$ac_try\"") >&5 + { (eval echo "$as_me:3110: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3112: \$? = $ac_status" >&5 + echo "$as_me:3113: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -3126,15 +3127,15 @@ case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3129: result: none needed" >&5 + echo "$as_me:3130: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3132: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:3133: 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:3137: checking for inline" >&5 +echo "$as_me:3138: 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 @@ -3142,7 +3143,7 @@ ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 3145 "configure" +#line 3146 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -3151,16 +3152,16 @@ _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3154: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3155: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3157: \$? = $ac_status" >&5 + echo "$as_me:3158: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3160: \"$ac_try\"") >&5 + { (eval echo "$as_me:3161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3163: \$? = $ac_status" >&5 + echo "$as_me:3164: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -3171,7 +3172,7 @@ done fi -echo "$as_me:3174: result: $ac_cv_c_inline" >&5 +echo "$as_me:3175: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -3199,13 +3200,13 @@ if (test "$LD" != "gcc" && test -z "$blibpath"); then blibpath="/usr/lib:/lib:/usr/local/lib" fi - echo "$as_me:3202: checking for authenticate" >&5 + echo "$as_me:3203: 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 3208 "configure" +#line 3209 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char authenticate (); below. */ @@ -3242,16 +3243,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3245: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3246: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3248: \$? = $ac_status" >&5 + echo "$as_me:3249: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3251: \"$ac_try\"") >&5 + { (eval echo "$as_me:3252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3254: \$? = $ac_status" >&5 + echo "$as_me:3255: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_authenticate=yes else @@ -3261,7 +3262,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3264: result: $ac_cv_func_authenticate" >&5 +echo "$as_me:3265: 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 <<\_ACEOF @@ -3396,13 +3397,13 @@ #define WITH_IRIX_AUDIT 1 _ACEOF - echo "$as_me:3399: checking for jlimit_startjob" >&5 + echo "$as_me:3400: 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 3405 "configure" +#line 3406 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char jlimit_startjob (); below. */ @@ -3439,16 +3440,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3442: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3443: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3445: \$? = $ac_status" >&5 + echo "$as_me:3446: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3448: \"$ac_try\"") >&5 + { (eval echo "$as_me:3449: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3451: \$? = $ac_status" >&5 + echo "$as_me:3452: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_jlimit_startjob=yes else @@ -3458,7 +3459,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3461: result: $ac_cv_func_jlimit_startjob" >&5 +echo "$as_me:3462: 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 <<\_ACEOF @@ -3495,7 +3496,7 @@ _ACEOF SONY=1 - echo "$as_me:3498: checking for xatexit in -liberty" >&5 + echo "$as_me:3499: checking for xatexit in -liberty" >&5 echo $ECHO_N "checking for xatexit in -liberty... $ECHO_C" >&6 if test "${ac_cv_lib_iberty_xatexit+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3503,7 +3504,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-liberty $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3506 "configure" +#line 3507 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3528,16 +3529,16 @@ } _ACEOF rm -f conftest.$ac_objext 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='test -s conftest$ac_exeext' - { (eval echo "$as_me:3537: \"$ac_try\"") >&5 + { (eval echo "$as_me:3538: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3540: \$? = $ac_status" >&5 + echo "$as_me:3541: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_iberty_xatexit=yes else @@ -3548,7 +3549,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3551: result: $ac_cv_lib_iberty_xatexit" >&5 +echo "$as_me:3552: result: $ac_cv_lib_iberty_xatexit" >&5 echo "${ECHO_T}$ac_cv_lib_iberty_xatexit" >&6 if test $ac_cv_lib_iberty_xatexit = yes; then cat >>confdefs.h <<\_ACEOF @@ -3556,7 +3557,7 @@ _ACEOF else - { { echo "$as_me:3559: error: *** libiberty missing - please install first or check config.log ***" >&5 + { { echo "$as_me:3560: error: *** libiberty missing - please install first or check config.log ***" >&5 echo "$as_me: error: *** libiberty missing - please install first or check config.log ***" >&2;} { (exit 1); exit 1; }; } @@ -3615,11 +3616,11 @@ # hardwire lastlog location (can't detect it on some versions) conf_lastlog_location="/var/adm/lastlog" - echo "$as_me:3618: checking for obsolete utmp and wtmp in solaris2.x" >&5 + echo "$as_me:3619: 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:3622: result: yes" >&5 + echo "$as_me:3623: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define DISABLE_UTMP 1 @@ -3630,7 +3631,7 @@ _ACEOF else - echo "$as_me:3633: result: no" >&5 + echo "$as_me:3634: result: no" >&5 echo "${ECHO_T}no" >&6 fi ;; @@ -3640,13 +3641,13 @@ for ac_func in getpwanam do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:3643: checking for $ac_func" >&5 +echo "$as_me:3644: 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 3649 "configure" +#line 3650 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -3683,16 +3684,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3686: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3687: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3689: \$? = $ac_status" >&5 + echo "$as_me:3690: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3692: \"$ac_try\"") >&5 + { (eval echo "$as_me:3693: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3695: \$? = $ac_status" >&5 + echo "$as_me:3696: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -3702,7 +3703,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3705: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:3706: 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 <<_ACEOF @@ -3818,13 +3819,13 @@ for ac_func in getluid setluid do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:3821: checking for $ac_func" >&5 +echo "$as_me:3822: 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 3827 "configure" +#line 3828 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -3861,16 +3862,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3864: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3865: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3867: \$? = $ac_status" >&5 + echo "$as_me:3868: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3870: \"$ac_try\"") >&5 + { (eval echo "$as_me:3871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3873: \$? = $ac_status" >&5 + echo "$as_me:3874: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -3880,7 +3881,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3883: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:3884: 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 <<_ACEOF @@ -3918,13 +3919,13 @@ for ac_func in getluid setluid do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:3921: checking for $ac_func" >&5 +echo "$as_me:3922: 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 3927 "configure" +#line 3928 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -3961,16 +3962,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3964: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3965: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3967: \$? = $ac_status" >&5 + echo "$as_me:3968: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3970: \"$ac_try\"") >&5 + { (eval echo "$as_me:3971: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3973: \$? = $ac_status" >&5 + echo "$as_me:3974: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -3980,7 +3981,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:3983: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:3984: 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 <<_ACEOF @@ -4003,7 +4004,7 @@ LIBS="$LIBS -lgen -lrsc" ;; *-dec-osf*) - echo "$as_me:4006: checking for Digital Unix SIA" >&5 + echo "$as_me:4007: checking for Digital Unix SIA" >&5 echo $ECHO_N "checking for Digital Unix SIA... $ECHO_C" >&6 no_osfsia="" @@ -4012,7 +4013,7 @@ withval="$with_osfsia" if test "x$withval" = "xno" ; then - echo "$as_me:4015: result: disabled" >&5 + echo "$as_me:4016: result: disabled" >&5 echo "${ECHO_T}disabled" >&6 no_osfsia=1 fi @@ -4020,7 +4021,7 @@ fi; if test -z "$no_osfsia" ; then if test -f /etc/sia/matrix.conf; then - echo "$as_me:4023: result: yes" >&5 + echo "$as_me:4024: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define HAVE_OSF_SIA 1 @@ -4032,7 +4033,7 @@ LIBS="$LIBS -lsecurity -ldb -lm -laud" else - echo "$as_me:4035: result: no" >&5 + echo "$as_me:4036: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi @@ -4106,13 +4107,13 @@ # Checks for header files. -echo "$as_me:4109: checking for ANSI C header files" >&5 +echo "$as_me:4110: 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 4115 "configure" +#line 4116 "configure" #include "confdefs.h" #include #include @@ -4120,13 +4121,13 @@ #include _ACEOF -if { (eval echo "$as_me:4123: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4124: \"$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:4129: \$? = $ac_status" >&5 + echo "$as_me:4130: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4148,7 +4149,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 4151 "configure" +#line 4152 "configure" #include "confdefs.h" #include @@ -4166,7 +4167,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 4169 "configure" +#line 4170 "configure" #include "confdefs.h" #include @@ -4187,7 +4188,7 @@ : else cat >conftest.$ac_ext <<_ACEOF -#line 4190 "configure" +#line 4191 "configure" #include "confdefs.h" #include #if ((' ' & 0x0FF) == 0x020) @@ -4213,15 +4214,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4216: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4217: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4219: \$? = $ac_status" >&5 + echo "$as_me:4220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4221: \"$ac_try\"") >&5 + { (eval echo "$as_me:4222: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4224: \$? = $ac_status" >&5 + echo "$as_me:4225: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -4234,7 +4235,7 @@ fi fi fi -echo "$as_me:4237: result: $ac_cv_header_stdc" >&5 +echo "$as_me:4238: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -4250,29 +4251,29 @@ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4253: checking for $ac_header" >&5 +echo "$as_me:4254: 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 4259 "configure" +#line 4260 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4266: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4267: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4269: \$? = $ac_status" >&5 + echo "$as_me:4270: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4272: \"$ac_try\"") >&5 + { (eval echo "$as_me:4273: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4275: \$? = $ac_status" >&5 + echo "$as_me:4276: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -4282,7 +4283,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4285: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4286: 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 <<_ACEOF @@ -4306,34 +4307,34 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:4309: checking for $ac_header" >&5 + echo "$as_me:4310: 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 fi -echo "$as_me:4314: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4315: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? -echo "$as_me:4318: checking $ac_header usability" >&5 +echo "$as_me:4319: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 4321 "configure" +#line 4322 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4327: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4328: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4330: \$? = $ac_status" >&5 + echo "$as_me:4331: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4333: \"$ac_try\"") >&5 + { (eval echo "$as_me:4334: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4336: \$? = $ac_status" >&5 + echo "$as_me:4337: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else @@ -4342,24 +4343,24 @@ ac_header_compiler=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:4345: result: $ac_header_compiler" >&5 +echo "$as_me:4346: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? -echo "$as_me:4349: checking $ac_header presence" >&5 +echo "$as_me:4350: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 4352 "configure" +#line 4353 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4356: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4357: \"$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:4362: \$? = $ac_status" >&5 + echo "$as_me:4363: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4377,32 +4378,32 @@ ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext -echo "$as_me:4380: result: $ac_header_preproc" >&5 +echo "$as_me:4381: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc in yes:no ) - { echo "$as_me:4386: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 + { echo "$as_me:4387: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:4388: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:4389: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; no:yes ) - { echo "$as_me:4391: WARNING: $ac_header: present but cannot be compiled." >&5 + { echo "$as_me:4392: WARNING: $ac_header: present but cannot be compiled." >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:4393: WARNING: $ac_header: check for missing prerequisite headers?" >&5 + { echo "$as_me:4394: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:4395: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:4396: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; esac -echo "$as_me:4398: checking for $ac_header" >&5 +echo "$as_me:4399: 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 eval "$as_ac_Header=$ac_header_preproc" fi -echo "$as_me:4405: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4406: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi @@ -4416,13 +4417,13 @@ done # Checks for libraries. -echo "$as_me:4419: checking for yp_match" >&5 +echo "$as_me:4420: 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 4425 "configure" +#line 4426 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char yp_match (); below. */ @@ -4459,16 +4460,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4462: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4463: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4465: \$? = $ac_status" >&5 + echo "$as_me:4466: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4468: \"$ac_try\"") >&5 + { (eval echo "$as_me:4469: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4471: \$? = $ac_status" >&5 + echo "$as_me:4472: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_yp_match=yes else @@ -4478,13 +4479,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4481: result: $ac_cv_func_yp_match" >&5 +echo "$as_me:4482: 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:4487: checking for yp_match in -lnsl" >&5 +echo "$as_me:4488: 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 @@ -4492,7 +4493,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4495 "configure" +#line 4496 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4517,16 +4518,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4520: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4521: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4523: \$? = $ac_status" >&5 + echo "$as_me:4524: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4526: \"$ac_try\"") >&5 + { (eval echo "$as_me:4527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4529: \$? = $ac_status" >&5 + echo "$as_me:4530: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_yp_match=yes else @@ -4537,7 +4538,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4540: result: $ac_cv_lib_nsl_yp_match" >&5 +echo "$as_me:4541: 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 <<_ACEOF @@ -4550,13 +4551,13 @@ fi -echo "$as_me:4553: checking for setsockopt" >&5 +echo "$as_me:4554: 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 4559 "configure" +#line 4560 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setsockopt (); below. */ @@ -4593,16 +4594,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4596: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4597: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4599: \$? = $ac_status" >&5 + echo "$as_me:4600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4602: \"$ac_try\"") >&5 + { (eval echo "$as_me:4603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4605: \$? = $ac_status" >&5 + echo "$as_me:4606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_setsockopt=yes else @@ -4612,13 +4613,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4615: result: $ac_cv_func_setsockopt" >&5 +echo "$as_me:4616: 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:4621: checking for setsockopt in -lsocket" >&5 +echo "$as_me:4622: 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 @@ -4626,7 +4627,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4629 "configure" +#line 4630 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4651,16 +4652,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4654: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4655: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4657: \$? = $ac_status" >&5 + echo "$as_me:4658: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4660: \"$ac_try\"") >&5 + { (eval echo "$as_me:4661: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4663: \$? = $ac_status" >&5 + echo "$as_me:4664: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_setsockopt=yes else @@ -4671,7 +4672,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4674: result: $ac_cv_lib_socket_setsockopt" >&5 +echo "$as_me:4675: 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 <<_ACEOF @@ -4686,7 +4687,7 @@ if test "x$with_tcp_wrappers" != "xno" ; then if test "x$do_sco3_extra_lib_check" = "xyes" ; then - echo "$as_me:4689: checking for innetgr in -lrpc" >&5 + echo "$as_me:4690: 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 @@ -4694,7 +4695,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lrpc -lyp -lrpc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4697 "configure" +#line 4698 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4719,16 +4720,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4722: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4723: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4725: \$? = $ac_status" >&5 + echo "$as_me:4726: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4728: \"$ac_try\"") >&5 + { (eval echo "$as_me:4729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4731: \$? = $ac_status" >&5 + echo "$as_me:4732: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_rpc_innetgr=yes else @@ -4739,7 +4740,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4742: result: $ac_cv_lib_rpc_innetgr" >&5 +echo "$as_me:4743: 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" @@ -4748,13 +4749,13 @@ fi fi -echo "$as_me:4751: checking for getspnam" >&5 +echo "$as_me:4752: 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 4757 "configure" +#line 4758 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getspnam (); below. */ @@ -4791,16 +4792,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4794: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4795: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4797: \$? = $ac_status" >&5 + echo "$as_me:4798: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4800: \"$ac_try\"") >&5 + { (eval echo "$as_me:4801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4803: \$? = $ac_status" >&5 + echo "$as_me:4804: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getspnam=yes else @@ -4810,12 +4811,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4813: result: $ac_cv_func_getspnam" >&5 +echo "$as_me:4814: 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:4818: checking for getspnam in -lgen" >&5 + echo "$as_me:4819: 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 @@ -4823,7 +4824,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4826 "configure" +#line 4827 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -4848,16 +4849,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4851: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4852: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4854: \$? = $ac_status" >&5 + echo "$as_me:4855: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4857: \"$ac_try\"") >&5 + { (eval echo "$as_me:4858: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4860: \$? = $ac_status" >&5 + echo "$as_me:4861: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_getspnam=yes else @@ -4868,7 +4869,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4871: result: $ac_cv_lib_gen_getspnam" >&5 +echo "$as_me:4872: 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" @@ -4894,7 +4895,7 @@ withval="$with_zlib" if test "x$withval" = "xno" ; then - { { echo "$as_me:4897: error: *** zlib is required ***" >&5 + { { echo "$as_me:4898: error: *** zlib is required ***" >&5 echo "$as_me: error: *** zlib is required ***" >&2;} { (exit 1); exit 1; }; } fi @@ -4919,7 +4920,7 @@ fi; -echo "$as_me:4922: checking for deflate in -lz" >&5 +echo "$as_me:4923: 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 @@ -4927,7 +4928,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 4930 "configure" +#line 4931 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -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_lib_z_deflate=yes else @@ -4972,7 +4973,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:4975: result: $ac_cv_lib_z_deflate" >&5 +echo "$as_me:4976: 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 <<_ACEOF @@ -4982,18 +4983,18 @@ LIBS="-lz $LIBS" else - { { echo "$as_me:4985: error: *** zlib missing - please install first or check config.log ***" >&5 + { { echo "$as_me:4986: 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:4990: checking for strcasecmp" >&5 +echo "$as_me:4991: 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 4996 "configure" +#line 4997 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strcasecmp (); below. */ @@ -5030,16 +5031,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5033: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5034: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5036: \$? = $ac_status" >&5 + echo "$as_me:5037: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5039: \"$ac_try\"") >&5 + { (eval echo "$as_me:5040: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5042: \$? = $ac_status" >&5 + echo "$as_me:5043: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_strcasecmp=yes else @@ -5049,12 +5050,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5052: result: $ac_cv_func_strcasecmp" >&5 +echo "$as_me:5053: 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:5057: checking for strcasecmp in -lresolv" >&5 + echo "$as_me:5058: 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 @@ -5062,7 +5063,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5065 "configure" +#line 5066 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5087,16 +5088,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5090: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5091: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5093: \$? = $ac_status" >&5 + echo "$as_me:5094: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5096: \"$ac_try\"") >&5 + { (eval echo "$as_me:5097: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5099: \$? = $ac_status" >&5 + echo "$as_me:5100: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -5107,7 +5108,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5110: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:5111: 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" @@ -5115,13 +5116,13 @@ fi -echo "$as_me:5118: checking for utimes" >&5 +echo "$as_me:5119: 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 5124 "configure" +#line 5125 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char utimes (); below. */ @@ -5158,16 +5159,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5161: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5162: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5164: \$? = $ac_status" >&5 + echo "$as_me:5165: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5167: \"$ac_try\"") >&5 + { (eval echo "$as_me:5168: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5170: \$? = $ac_status" >&5 + echo "$as_me:5171: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_utimes=yes else @@ -5177,12 +5178,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5180: result: $ac_cv_func_utimes" >&5 +echo "$as_me:5181: 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:5185: checking for utimes in -lc89" >&5 + echo "$as_me:5186: 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 @@ -5190,7 +5191,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lc89 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5193 "configure" +#line 5194 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5215,16 +5216,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5218: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5219: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5221: \$? = $ac_status" >&5 + echo "$as_me:5222: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5224: \"$ac_try\"") >&5 + { (eval echo "$as_me:5225: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5227: \$? = $ac_status" >&5 + echo "$as_me:5228: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c89_utimes=yes else @@ -5235,7 +5236,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5238: result: $ac_cv_lib_c89_utimes" >&5 +echo "$as_me:5239: 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 LIBS="$LIBS -lc89" @@ -5247,34 +5248,34 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:5250: checking for $ac_header" >&5 + echo "$as_me:5251: 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 fi -echo "$as_me:5255: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5256: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? -echo "$as_me:5259: checking $ac_header usability" >&5 +echo "$as_me:5260: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 5262 "configure" +#line 5263 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5268: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5271: \$? = $ac_status" >&5 + echo "$as_me:5272: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5274: \"$ac_try\"") >&5 + { (eval echo "$as_me:5275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5277: \$? = $ac_status" >&5 + echo "$as_me:5278: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else @@ -5283,24 +5284,24 @@ ac_header_compiler=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:5286: result: $ac_header_compiler" >&5 +echo "$as_me:5287: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? -echo "$as_me:5290: checking $ac_header presence" >&5 +echo "$as_me:5291: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 5293 "configure" +#line 5294 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5297: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5298: \"$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:5303: \$? = $ac_status" >&5 + echo "$as_me:5304: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5318,32 +5319,32 @@ ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext -echo "$as_me:5321: result: $ac_header_preproc" >&5 +echo "$as_me:5322: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc in yes:no ) - { echo "$as_me:5327: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 + { echo "$as_me:5328: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:5329: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:5330: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; no:yes ) - { echo "$as_me:5332: WARNING: $ac_header: present but cannot be compiled." >&5 + { echo "$as_me:5333: WARNING: $ac_header: present but cannot be compiled." >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:5334: WARNING: $ac_header: check for missing prerequisite headers?" >&5 + { echo "$as_me:5335: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:5336: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:5337: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; esac -echo "$as_me:5339: checking for $ac_header" >&5 +echo "$as_me:5340: 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 eval "$as_ac_Header=$ac_header_preproc" fi -echo "$as_me:5346: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5347: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi @@ -5356,7 +5357,7 @@ done -echo "$as_me:5359: checking for library containing login" >&5 +echo "$as_me:5360: 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 @@ -5364,7 +5365,7 @@ ac_func_search_save_LIBS=$LIBS ac_cv_search_login=no cat >conftest.$ac_ext <<_ACEOF -#line 5367 "configure" +#line 5368 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5389,16 +5390,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5392: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5393: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5395: \$? = $ac_status" >&5 + echo "$as_me:5396: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5398: \"$ac_try\"") >&5 + { (eval echo "$as_me:5399: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5401: \$? = $ac_status" >&5 + echo "$as_me:5402: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="none required" else @@ -5410,7 +5411,7 @@ for ac_lib in util bsd; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5413 "configure" +#line 5414 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5435,16 +5436,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5438: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5439: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5441: \$? = $ac_status" >&5 + echo "$as_me:5442: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5444: \"$ac_try\"") >&5 + { (eval echo "$as_me:5445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5447: \$? = $ac_status" >&5 + echo "$as_me:5448: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="-l$ac_lib" break @@ -5457,7 +5458,7 @@ fi LIBS=$ac_func_search_save_LIBS fi -echo "$as_me:5460: result: $ac_cv_search_login" >&5 +echo "$as_me:5461: 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" @@ -5470,13 +5471,13 @@ for ac_func in logout updwtmp logwtmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5473: checking for $ac_func" >&5 +echo "$as_me:5474: 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 5479 "configure" +#line 5480 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5513,16 +5514,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5516: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5517: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5519: \$? = $ac_status" >&5 + echo "$as_me:5520: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5522: \"$ac_try\"") >&5 + { (eval echo "$as_me:5523: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5525: \$? = $ac_status" >&5 + echo "$as_me:5526: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5532,7 +5533,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5535: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5536: 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 <<_ACEOF @@ -5545,13 +5546,13 @@ for ac_func in strftime do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5548: checking for $ac_func" >&5 +echo "$as_me:5549: 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 5554 "configure" +#line 5555 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5588,16 +5589,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5591: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5592: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5594: \$? = $ac_status" >&5 + echo "$as_me:5595: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5597: \"$ac_try\"") >&5 + { (eval echo "$as_me:5598: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5600: \$? = $ac_status" >&5 + echo "$as_me:5601: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5607,7 +5608,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5610: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5611: 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 <<_ACEOF @@ -5616,7 +5617,7 @@ else # strftime is in -lintl on SCO UNIX. -echo "$as_me:5619: checking for strftime in -lintl" >&5 +echo "$as_me:5620: 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 @@ -5624,7 +5625,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 5627 "configure" +#line 5628 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -5649,16 +5650,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5652: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5653: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5655: \$? = $ac_status" >&5 + echo "$as_me:5656: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5658: \"$ac_try\"") >&5 + { (eval echo "$as_me:5659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5661: \$? = $ac_status" >&5 + echo "$as_me:5662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_intl_strftime=yes else @@ -5669,7 +5670,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:5672: result: $ac_cv_lib_intl_strftime" >&5 +echo "$as_me:5673: 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 <<\_ACEOF @@ -5683,10 +5684,10 @@ done # Check for ALTDIRFUNC glob() extension -echo "$as_me:5686: checking for GLOB_ALTDIRFUNC support" >&5 +echo "$as_me:5687: checking for GLOB_ALTDIRFUNC support" >&5 echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 5689 "configure" +#line 5690 "configure" #include "confdefs.h" #include @@ -5702,22 +5703,22 @@ #define GLOB_HAS_ALTDIRFUNC 1 _ACEOF - echo "$as_me:5705: result: yes" >&5 + echo "$as_me:5706: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:5710: result: no" >&5 + echo "$as_me:5711: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* # Check for g.gl_matchc glob() extension -echo "$as_me:5717: checking for gl_matchc field in glob_t" >&5 +echo "$as_me:5718: 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 5720 "configure" +#line 5721 "configure" #include "confdefs.h" #include @@ -5731,26 +5732,26 @@ #define GLOB_HAS_GL_MATCHC 1 _ACEOF - echo "$as_me:5734: result: yes" >&5 + echo "$as_me:5735: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:5739: result: no" >&5 + echo "$as_me:5740: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* -echo "$as_me:5745: checking whether struct dirent allocates space for d_name" >&5 +echo "$as_me:5746: 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:5748: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:5749: 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 5753 "configure" +#line 5754 "configure" #include "confdefs.h" #include @@ -5759,24 +5760,24 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5762: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5763: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5765: \$? = $ac_status" >&5 + echo "$as_me:5766: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5767: \"$ac_try\"") >&5 + { (eval echo "$as_me:5768: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5770: \$? = $ac_status" >&5 + echo "$as_me:5771: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:5772: result: yes" >&5 + echo "$as_me:5773: 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:5779: result: no" >&5 + echo "$as_me:5780: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\_ACEOF #define BROKEN_ONE_BYTE_DIRENT_D_NAME 1 @@ -5807,15 +5808,15 @@ LIBS="-lskey $LIBS" SKEY_MSG="yes" - echo "$as_me:5810: checking for s/key support" >&5 + echo "$as_me:5811: 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:5813: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:5814: 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 5818 "configure" +#line 5819 "configure" #include "confdefs.h" #include @@ -5824,26 +5825,26 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5827: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5828: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5830: \$? = $ac_status" >&5 + echo "$as_me:5831: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5832: \"$ac_try\"") >&5 + { (eval echo "$as_me:5833: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5835: \$? = $ac_status" >&5 + echo "$as_me:5836: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:5837: result: yes" >&5 + echo "$as_me:5838: 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:5844: result: no" >&5 + echo "$as_me:5845: result: no" >&5 echo "${ECHO_T}no" >&6 - { { echo "$as_me:5846: error: ** Incomplete or missing s/key libraries." >&5 + { { echo "$as_me:5847: error: ** Incomplete or missing s/key libraries." >&5 echo "$as_me: error: ** Incomplete or missing s/key libraries." >&2;} { (exit 1); exit 1; }; } @@ -5887,10 +5888,10 @@ fi LIBWRAP="-lwrap" LIBS="$LIBWRAP $LIBS" - echo "$as_me:5890: checking for libwrap" >&5 + echo "$as_me:5891: checking for libwrap" >&5 echo $ECHO_N "checking for libwrap... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 5893 "configure" +#line 5894 "configure" #include "confdefs.h" #include @@ -5911,19 +5912,19 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5914: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5915: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5917: \$? = $ac_status" >&5 + echo "$as_me:5918: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5920: \"$ac_try\"") >&5 + { (eval echo "$as_me:5921: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5923: \$? = $ac_status" >&5 + echo "$as_me:5924: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:5926: result: yes" >&5 + echo "$as_me:5927: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define LIBWRAP 1 @@ -5935,7 +5936,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - { { echo "$as_me:5938: error: *** libwrap missing" >&5 + { { echo "$as_me:5939: error: *** libwrap missing" >&5 echo "$as_me: error: *** libwrap missing" >&2;} { (exit 1); exit 1; }; } @@ -5959,13 +5960,13 @@ vhangup vsnprintf waitpid __b64_ntop _getpty do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5962: checking for $ac_func" >&5 +echo "$as_me:5963: 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 5968 "configure" +#line 5969 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6002,16 +6003,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6005: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6006: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6008: \$? = $ac_status" >&5 + echo "$as_me:6009: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6011: \"$ac_try\"") >&5 + { (eval echo "$as_me:6012: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6014: \$? = $ac_status" >&5 + echo "$as_me:6015: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6021,7 +6022,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6024: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6025: 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 <<_ACEOF @@ -6034,13 +6035,13 @@ for ac_func in dirname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6037: checking for $ac_func" >&5 +echo "$as_me:6038: 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 6043 "configure" +#line 6044 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6077,16 +6078,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6080: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6081: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6083: \$? = $ac_status" >&5 + echo "$as_me:6084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6086: \"$ac_try\"") >&5 + { (eval echo "$as_me:6087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6089: \$? = $ac_status" >&5 + echo "$as_me:6090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6096,7 +6097,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6099: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6100: 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 <<_ACEOF @@ -6107,34 +6108,34 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:6110: checking for $ac_header" >&5 + echo "$as_me:6111: 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 fi -echo "$as_me:6115: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6116: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? -echo "$as_me:6119: checking $ac_header usability" >&5 +echo "$as_me:6120: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6122 "configure" +#line 6123 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6128: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6129: \"$ac_compile\"") >&5 (eval $ac_compile) 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_objext' - { (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 ac_header_compiler=yes else @@ -6143,24 +6144,24 @@ ac_header_compiler=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:6146: result: $ac_header_compiler" >&5 +echo "$as_me:6147: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? -echo "$as_me:6150: checking $ac_header presence" >&5 +echo "$as_me:6151: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6153 "configure" +#line 6154 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6157: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6158: \"$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:6163: \$? = $ac_status" >&5 + echo "$as_me:6164: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6178,32 +6179,32 @@ ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext -echo "$as_me:6181: result: $ac_header_preproc" >&5 +echo "$as_me:6182: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc in yes:no ) - { echo "$as_me:6187: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 + { echo "$as_me:6188: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:6189: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:6190: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; no:yes ) - { echo "$as_me:6192: WARNING: $ac_header: present but cannot be compiled." >&5 + { echo "$as_me:6193: WARNING: $ac_header: present but cannot be compiled." >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:6194: WARNING: $ac_header: check for missing prerequisite headers?" >&5 + { echo "$as_me:6195: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:6196: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:6197: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; esac -echo "$as_me:6199: checking for $ac_header" >&5 +echo "$as_me:6200: 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 eval "$as_ac_Header=$ac_header_preproc" fi -echo "$as_me:6206: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6207: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi @@ -6218,7 +6219,7 @@ else - echo "$as_me:6221: checking for dirname in -lgen" >&5 + echo "$as_me:6222: 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 @@ -6226,7 +6227,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6229 "configure" +#line 6230 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6251,16 +6252,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6255: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6257: \$? = $ac_status" >&5 + echo "$as_me:6258: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6260: \"$ac_try\"") >&5 + { (eval echo "$as_me:6261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6263: \$? = $ac_status" >&5 + echo "$as_me:6264: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_dirname=yes else @@ -6271,11 +6272,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6274: result: $ac_cv_lib_gen_dirname" >&5 +echo "$as_me:6275: 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:6278: checking for broken dirname" >&5 + echo "$as_me:6279: 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 @@ -6284,12 +6285,12 @@ save_LIBS="$LIBS" LIBS="$LIBS -lgen" if test "$cross_compiling" = yes; then - { { echo "$as_me:6287: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:6288: 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 6292 "configure" +#line 6293 "configure" #include "confdefs.h" #include @@ -6309,15 +6310,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6312: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6313: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6315: \$? = $ac_status" >&5 + echo "$as_me:6316: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6317: \"$ac_try\"") >&5 + { (eval echo "$as_me:6318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6320: \$? = $ac_status" >&5 + echo "$as_me:6321: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_broken_dirname="no" else @@ -6332,7 +6333,7 @@ LIBS="$save_LIBS" fi -echo "$as_me:6335: result: $ac_cv_have_broken_dirname" >&5 +echo "$as_me:6336: 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" @@ -6344,34 +6345,34 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:6347: checking for $ac_header" >&5 + echo "$as_me:6348: 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 fi -echo "$as_me:6352: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6353: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? -echo "$as_me:6356: checking $ac_header usability" >&5 +echo "$as_me:6357: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6359 "configure" +#line 6360 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6365: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6366: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6368: \$? = $ac_status" >&5 + echo "$as_me:6369: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6371: \"$ac_try\"") >&5 + { (eval echo "$as_me:6372: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6374: \$? = $ac_status" >&5 + echo "$as_me:6375: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else @@ -6380,24 +6381,24 @@ ac_header_compiler=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:6383: result: $ac_header_compiler" >&5 +echo "$as_me:6384: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? -echo "$as_me:6387: checking $ac_header presence" >&5 +echo "$as_me:6388: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6390 "configure" +#line 6391 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6394: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6395: \"$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:6400: \$? = $ac_status" >&5 + echo "$as_me:6401: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6415,32 +6416,32 @@ ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext -echo "$as_me:6418: result: $ac_header_preproc" >&5 +echo "$as_me:6419: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc in yes:no ) - { echo "$as_me:6424: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 + { echo "$as_me:6425: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:6426: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:6427: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; no:yes ) - { echo "$as_me:6429: WARNING: $ac_header: present but cannot be compiled." >&5 + { echo "$as_me:6430: WARNING: $ac_header: present but cannot be compiled." >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:6431: WARNING: $ac_header: check for missing prerequisite headers?" >&5 + { echo "$as_me:6432: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:6433: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:6434: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; esac -echo "$as_me:6436: checking for $ac_header" >&5 +echo "$as_me:6437: 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 eval "$as_ac_Header=$ac_header_preproc" fi -echo "$as_me:6443: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6444: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi @@ -6463,13 +6464,13 @@ for ac_func in gettimeofday time do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6466: checking for $ac_func" >&5 +echo "$as_me:6467: 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 6472 "configure" +#line 6473 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6506,16 +6507,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6509: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6510: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6512: \$? = $ac_status" >&5 + echo "$as_me:6513: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6515: \"$ac_try\"") >&5 + { (eval echo "$as_me:6516: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6518: \$? = $ac_status" >&5 + echo "$as_me:6519: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6525,7 +6526,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6528: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6529: 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 <<_ACEOF @@ -6538,13 +6539,13 @@ for ac_func in endutent getutent getutid getutline pututline setutent do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6541: checking for $ac_func" >&5 +echo "$as_me:6542: 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 6547 "configure" +#line 6548 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6581,16 +6582,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6584: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6585: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6587: \$? = $ac_status" >&5 + echo "$as_me:6588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6590: \"$ac_try\"") >&5 + { (eval echo "$as_me:6591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6593: \$? = $ac_status" >&5 + echo "$as_me:6594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6600,7 +6601,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6603: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6604: 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 <<_ACEOF @@ -6613,13 +6614,13 @@ for ac_func in utmpname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6616: checking for $ac_func" >&5 +echo "$as_me:6617: 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 6622 "configure" +#line 6623 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6656,16 +6657,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6659: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6660: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6662: \$? = $ac_status" >&5 + echo "$as_me:6663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6665: \"$ac_try\"") >&5 + { (eval echo "$as_me:6666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6668: \$? = $ac_status" >&5 + echo "$as_me:6669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6675,7 +6676,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6678: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6679: 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 <<_ACEOF @@ -6688,13 +6689,13 @@ for ac_func in endutxent getutxent getutxid getutxline pututxline do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6691: checking for $ac_func" >&5 +echo "$as_me:6692: 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 6697 "configure" +#line 6698 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6731,16 +6732,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6734: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6735: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6737: \$? = $ac_status" >&5 + echo "$as_me:6738: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6740: \"$ac_try\"") >&5 + { (eval echo "$as_me:6741: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6743: \$? = $ac_status" >&5 + echo "$as_me:6744: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6750,7 +6751,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6753: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6754: 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 <<_ACEOF @@ -6763,13 +6764,13 @@ for ac_func in setutxent utmpxname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6766: checking for $ac_func" >&5 +echo "$as_me:6767: 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 6772 "configure" +#line 6773 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -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 eval "$as_ac_var=yes" else @@ -6825,7 +6826,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6828: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6829: 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 <<_ACEOF @@ -6835,13 +6836,13 @@ fi done -echo "$as_me:6838: checking for getuserattr" >&5 +echo "$as_me:6839: checking for getuserattr" >&5 echo $ECHO_N "checking for getuserattr... $ECHO_C" >&6 if test "${ac_cv_func_getuserattr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6844 "configure" +#line 6845 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getuserattr (); below. */ @@ -6878,16 +6879,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6881: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6882: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6884: \$? = $ac_status" >&5 + echo "$as_me:6885: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6887: \"$ac_try\"") >&5 + { (eval echo "$as_me:6888: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6890: \$? = $ac_status" >&5 + echo "$as_me:6891: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getuserattr=yes else @@ -6897,7 +6898,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6900: result: $ac_cv_func_getuserattr" >&5 +echo "$as_me:6901: result: $ac_cv_func_getuserattr" >&5 echo "${ECHO_T}$ac_cv_func_getuserattr" >&6 if test $ac_cv_func_getuserattr = yes; then cat >>confdefs.h <<\_ACEOF @@ -6905,7 +6906,7 @@ _ACEOF else - echo "$as_me:6908: checking for getuserattr in -ls" >&5 + echo "$as_me:6909: checking for getuserattr in -ls" >&5 echo $ECHO_N "checking for getuserattr in -ls... $ECHO_C" >&6 if test "${ac_cv_lib_s_getuserattr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6913,7 +6914,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ls $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 6916 "configure" +#line 6917 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -6938,16 +6939,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6941: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6942: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6944: \$? = $ac_status" >&5 + echo "$as_me:6945: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6947: \"$ac_try\"") >&5 + { (eval echo "$as_me:6948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6950: \$? = $ac_status" >&5 + echo "$as_me:6951: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_s_getuserattr=yes else @@ -6958,7 +6959,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:6961: result: $ac_cv_lib_s_getuserattr" >&5 +echo "$as_me:6962: result: $ac_cv_lib_s_getuserattr" >&5 echo "${ECHO_T}$ac_cv_lib_s_getuserattr" >&6 if test $ac_cv_lib_s_getuserattr = yes; then LIBS="$LIBS -ls"; cat >>confdefs.h <<\_ACEOF @@ -6969,13 +6970,13 @@ fi -echo "$as_me:6972: checking for daemon" >&5 +echo "$as_me:6973: 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 6978 "configure" +#line 6979 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char daemon (); below. */ @@ -7012,16 +7013,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7015: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7016: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7018: \$? = $ac_status" >&5 + echo "$as_me:7019: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7021: \"$ac_try\"") >&5 + { (eval echo "$as_me:7022: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7024: \$? = $ac_status" >&5 + echo "$as_me:7025: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_daemon=yes else @@ -7031,7 +7032,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7034: result: $ac_cv_func_daemon" >&5 +echo "$as_me:7035: 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 <<\_ACEOF @@ -7039,7 +7040,7 @@ _ACEOF else - echo "$as_me:7042: checking for daemon in -lbsd" >&5 + echo "$as_me:7043: 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 @@ -7047,7 +7048,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7050 "configure" +#line 7051 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -7072,16 +7073,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7075: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7076: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7078: \$? = $ac_status" >&5 + echo "$as_me:7079: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7081: \"$ac_try\"") >&5 + { (eval echo "$as_me:7082: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7084: \$? = $ac_status" >&5 + echo "$as_me:7085: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_daemon=yes else @@ -7092,7 +7093,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:7095: result: $ac_cv_lib_bsd_daemon" >&5 +echo "$as_me:7096: 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 <<\_ACEOF @@ -7103,13 +7104,13 @@ fi -echo "$as_me:7106: checking for getpagesize" >&5 +echo "$as_me:7107: 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 7112 "configure" +#line 7113 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpagesize (); below. */ @@ -7146,16 +7147,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7149: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7150: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7152: \$? = $ac_status" >&5 + echo "$as_me:7153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7155: \"$ac_try\"") >&5 + { (eval echo "$as_me:7156: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7158: \$? = $ac_status" >&5 + echo "$as_me:7159: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpagesize=yes else @@ -7165,7 +7166,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7168: result: $ac_cv_func_getpagesize" >&5 +echo "$as_me:7169: 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 <<\_ACEOF @@ -7173,7 +7174,7 @@ _ACEOF else - echo "$as_me:7176: checking for getpagesize in -lucb" >&5 + echo "$as_me:7177: 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 @@ -7181,7 +7182,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lucb $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7184 "configure" +#line 7185 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -7206,16 +7207,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7209: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7210: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7212: \$? = $ac_status" >&5 + echo "$as_me:7213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7215: \"$ac_try\"") >&5 + { (eval echo "$as_me:7216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7218: \$? = $ac_status" >&5 + echo "$as_me:7219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ucb_getpagesize=yes else @@ -7226,7 +7227,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:7229: result: $ac_cv_lib_ucb_getpagesize" >&5 +echo "$as_me:7230: 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 <<\_ACEOF @@ -7239,15 +7240,15 @@ # Check for broken snprintf if test "x$ac_cv_func_snprintf" = "xyes" ; then - echo "$as_me:7242: checking whether snprintf correctly terminates long strings" >&5 + echo "$as_me:7243: 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:7245: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:7246: 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 7250 "configure" +#line 7251 "configure" #include "confdefs.h" #include @@ -7255,30 +7256,30 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7258: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7259: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7261: \$? = $ac_status" >&5 + echo "$as_me:7262: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7263: \"$ac_try\"") >&5 + { (eval echo "$as_me:7264: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7266: \$? = $ac_status" >&5 + echo "$as_me:7267: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:7268: result: yes" >&5 + echo "$as_me:7269: 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:7275: result: no" >&5 + echo "$as_me:7276: result: no" >&5 echo "${ECHO_T}no" >&6 cat >>confdefs.h <<\_ACEOF #define BROKEN_SNPRINTF 1 _ACEOF - { echo "$as_me:7281: WARNING: ****** Your snprintf() function is broken, complain to your vendor" >&5 + { echo "$as_me:7282: 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 @@ -7286,14 +7287,14 @@ fi fi -echo "$as_me:7289: checking whether getpgrp takes no argument" >&5 +echo "$as_me:7290: 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 7296 "configure" +#line 7297 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -7311,16 +7312,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7314: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7315: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7317: \$? = $ac_status" >&5 + echo "$as_me:7318: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7320: \"$ac_try\"") >&5 + { (eval echo "$as_me:7321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7323: \$? = $ac_status" >&5 + echo "$as_me:7324: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_1=yes else @@ -7331,7 +7332,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext # Use it with no arg. cat >conftest.$ac_ext <<_ACEOF -#line 7334 "configure" +#line 7335 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -7349,16 +7350,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7352: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7353: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7355: \$? = $ac_status" >&5 + echo "$as_me:7356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7358: \"$ac_try\"") >&5 + { (eval echo "$as_me:7359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7361: \$? = $ac_status" >&5 + echo "$as_me:7362: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_0=yes else @@ -7372,12 +7373,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:7375: error: cannot check getpgrp if cross compiling" >&5 + { { echo "$as_me:7376: 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 7380 "configure" +#line 7381 "configure" #include "confdefs.h" $ac_includes_default @@ -7431,15 +7432,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7434: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7435: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7437: \$? = $ac_status" >&5 + echo "$as_me:7438: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7439: \"$ac_try\"") >&5 + { (eval echo "$as_me:7440: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7442: \$? = $ac_status" >&5 + echo "$as_me:7443: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpgrp_void=yes else @@ -7453,7 +7454,7 @@ esac # $ac_func_getpgrp_0:$ac_func_getpgrp_1 fi -echo "$as_me:7456: result: $ac_cv_func_getpgrp_void" >&5 +echo "$as_me:7457: 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 @@ -7472,12 +7473,12 @@ if test "x$withval" != "xno" ; then if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then - { { echo "$as_me:7475: error: PAM headers not found" >&5 + { { echo "$as_me:7476: error: PAM headers not found" >&5 echo "$as_me: error: PAM headers not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:7480: checking for dlopen in -ldl" >&5 +echo "$as_me:7481: 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 @@ -7485,7 +7486,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7488 "configure" +#line 7489 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -7510,16 +7511,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7513: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7514: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7516: \$? = $ac_status" >&5 + echo "$as_me:7517: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7519: \"$ac_try\"") >&5 + { (eval echo "$as_me:7520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7522: \$? = $ac_status" >&5 + echo "$as_me:7523: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else @@ -7530,7 +7531,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:7533: result: $ac_cv_lib_dl_dlopen" >&5 +echo "$as_me:7534: 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 <<_ACEOF @@ -7541,7 +7542,7 @@ fi -echo "$as_me:7544: checking for pam_set_item in -lpam" >&5 +echo "$as_me:7545: 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 @@ -7549,7 +7550,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lpam $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 7552 "configure" +#line 7553 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -7574,16 +7575,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7577: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7578: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7580: \$? = $ac_status" >&5 + echo "$as_me:7581: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7583: \"$ac_try\"") >&5 + { (eval echo "$as_me:7584: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7586: \$? = $ac_status" >&5 + echo "$as_me:7587: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pam_pam_set_item=yes else @@ -7594,7 +7595,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:7597: result: $ac_cv_lib_pam_pam_set_item" >&5 +echo "$as_me:7598: 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 <<_ACEOF @@ -7604,7 +7605,7 @@ LIBS="-lpam $LIBS" else - { { echo "$as_me:7607: error: *** libpam missing" >&5 + { { echo "$as_me:7608: error: *** libpam missing" >&5 echo "$as_me: error: *** libpam missing" >&2;} { (exit 1); exit 1; }; } fi @@ -7612,13 +7613,13 @@ for ac_func in pam_getenvlist do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7615: checking for $ac_func" >&5 +echo "$as_me:7616: 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 7621 "configure" +#line 7622 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7655,16 +7656,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7658: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7661: \$? = $ac_status" >&5 + echo "$as_me:7662: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7664: \"$ac_try\"") >&5 + { (eval echo "$as_me:7665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7667: \$? = $ac_status" >&5 + echo "$as_me:7668: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7674,7 +7675,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7677: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7678: 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 <<_ACEOF @@ -7704,10 +7705,10 @@ # Check for older PAM if test "x$PAM_MSG" = "xyes" ; then # Check PAM strerror arguments (old PAM) - echo "$as_me:7707: checking whether pam_strerror takes only one argument" >&5 + echo "$as_me:7708: 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 7710 "configure" +#line 7711 "configure" #include "confdefs.h" #include @@ -7728,18 +7729,18 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7731: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7732: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7734: \$? = $ac_status" >&5 + echo "$as_me:7735: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7737: \"$ac_try\"") >&5 + { (eval echo "$as_me:7738: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7740: \$? = $ac_status" >&5 + echo "$as_me:7741: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:7742: result: no" >&5 + echo "$as_me:7743: result: no" >&5 echo "${ECHO_T}no" >&6 else echo "$as_me: failed program was:" >&5 @@ -7749,7 +7750,7 @@ #define HAVE_OLD_PAM 1 _ACEOF - echo "$as_me:7752: result: yes" >&5 + echo "$as_me:7753: result: yes" >&5 echo "${ECHO_T}yes" >&6 PAM_MSG="yes (old library)" @@ -7775,7 +7776,7 @@ if test "x$prefix" != "xNONE" ; then tryssldir="$tryssldir $prefix" fi -echo "$as_me:7778: checking for OpenSSL directory" >&5 +echo "$as_me:7779: checking for OpenSSL directory" >&5 echo $ECHO_N "checking for OpenSSL directory... $ECHO_C" >&6 if test "${ac_cv_openssldir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7816,12 +7817,12 @@ # Basic test to check for compatible version and correct linking # *does not* test for RSA - that comes later. if test "$cross_compiling" = yes; then - { { echo "$as_me:7819: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:7820: 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 7824 "configure" +#line 7825 "configure" #include "confdefs.h" #include @@ -7836,15 +7837,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7839: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7840: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7842: \$? = $ac_status" >&5 + echo "$as_me:7843: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7844: \"$ac_try\"") >&5 + { (eval echo "$as_me:7845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7847: \$? = $ac_status" >&5 + echo "$as_me:7848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then found_crypto=1 @@ -7865,7 +7866,7 @@ done if test -z "$found_crypto" ; then - { { echo "$as_me:7868: error: Could not find working OpenSSL library, please install or check config.log" >&5 + { { echo "$as_me:7869: error: Could not find working OpenSSL library, please install or check config.log" >&5 echo "$as_me: error: Could not find working OpenSSL library, please install or check config.log" >&2;} { (exit 1); exit 1; }; } fi @@ -7876,7 +7877,7 @@ ac_cv_openssldir=$ssldir fi -echo "$as_me:7879: result: $ac_cv_openssldir" >&5 +echo "$as_me:7880: result: $ac_cv_openssldir" >&5 echo "${ECHO_T}$ac_cv_openssldir" >&6 if (test ! -z "$ac_cv_openssldir" && test "x$ac_cv_openssldir" != "x(system)") ; then @@ -7912,7 +7913,7 @@ # Now test RSA support saved_LIBS="$LIBS" -echo "$as_me:7915: checking for RSA support" >&5 +echo "$as_me:7916: checking for RSA support" >&5 echo $ECHO_N "checking for RSA support... $ECHO_C" >&6 for WANTS_RSAREF in "" 1 ; do if test -z "$WANTS_RSAREF" ; then @@ -7921,12 +7922,12 @@ LIBS="$saved_LIBS -lRSAglue -lrsaref" fi if test "$cross_compiling" = yes; then - { { echo "$as_me:7924: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:7925: 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 7929 "configure" +#line 7930 "configure" #include "confdefs.h" #include @@ -7946,15 +7947,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:7949: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7950: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7952: \$? = $ac_status" >&5 + echo "$as_me:7953: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:7954: \"$ac_try\"") >&5 + { (eval echo "$as_me:7955: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7957: \$? = $ac_status" >&5 + echo "$as_me:7958: \$? = $ac_status" >&5 (exit $ac_status); }; }; then rsa_works=1 @@ -7971,22 +7972,22 @@ LIBS="$saved_LIBS" if test ! -z "$no_rsa" ; then - echo "$as_me:7974: result: disabled" >&5 + echo "$as_me:7975: result: disabled" >&5 echo "${ECHO_T}disabled" >&6 RSA_MSG="disabled" else if test -z "$rsa_works" ; then - { echo "$as_me:7979: WARNING: *** No RSA support found *** " >&5 + { echo "$as_me:7980: WARNING: *** No RSA support found *** " >&5 echo "$as_me: WARNING: *** No RSA support found *** " >&2;} RSA_MSG="no" else if test -z "$WANTS_RSAREF" ; then - echo "$as_me:7984: result: yes" >&5 + echo "$as_me:7985: result: yes" >&5 echo "${ECHO_T}yes" >&6 RSA_MSG="yes" else RSA_MSG="yes (using RSAref)" - echo "$as_me:7989: result: using RSAref" >&5 + echo "$as_me:7990: result: using RSAref" >&5 echo "${ECHO_T}using RSAref" >&6 LIBS="$LIBS -lcrypto -lRSAglue -lrsaref" fi @@ -7994,15 +7995,15 @@ fi # Sanity check OpenSSL headers -echo "$as_me:7997: checking whether OpenSSL's headers match the library" >&5 +echo "$as_me:7998: 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:8000: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:8001: 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 8005 "configure" +#line 8006 "configure" #include "confdefs.h" #include @@ -8011,18 +8012,18 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8014: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8015: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8017: \$? = $ac_status" >&5 + echo "$as_me:8018: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8019: \"$ac_try\"") >&5 + { (eval echo "$as_me:8020: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8022: \$? = $ac_status" >&5 + echo "$as_me:8023: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:8025: result: yes" >&5 + echo "$as_me:8026: result: yes" >&5 echo "${ECHO_T}yes" >&6 else @@ -8030,9 +8031,9 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8033: result: no" >&5 + echo "$as_me:8034: result: no" >&5 echo "${ECHO_T}no" >&6 - { { echo "$as_me:8035: error: Your OpenSSL headers do not match your library" >&5 + { { echo "$as_me:8036: error: Your OpenSSL headers do not match your library" >&5 echo "$as_me: error: Your OpenSSL headers do not match your library" >&2;} { (exit 1); exit 1; }; } @@ -8043,7 +8044,7 @@ # Some Linux systems (Slackware) need crypt() from libcrypt, *not* the # version in OpenSSL. Skip this for PAM if test "x$PAM_MSG" = "xno" -a "x$check_for_libcrypt_later" = "x1"; then - echo "$as_me:8046: checking for crypt in -lcrypt" >&5 + echo "$as_me:8047: 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 @@ -8051,7 +8052,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lcrypt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 8054 "configure" +#line 8055 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -8076,16 +8077,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8079: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8080: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8082: \$? = $ac_status" >&5 + echo "$as_me:8083: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8085: \"$ac_try\"") >&5 + { (eval echo "$as_me:8086: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8088: \$? = $ac_status" >&5 + echo "$as_me:8089: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_crypt_crypt=yes else @@ -8096,7 +8097,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:8099: result: $ac_cv_lib_crypt_crypt" >&5 +echo "$as_me:8100: 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" @@ -8107,15 +8108,15 @@ ### Configure cryptographic random number support # Check wheter OpenSSL seeds itself -echo "$as_me:8110: checking whether OpenSSL's PRNG is internally seeded" >&5 +echo "$as_me:8111: 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:8113: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:8114: 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 8118 "configure" +#line 8119 "configure" #include "confdefs.h" #include @@ -8124,19 +8125,19 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:8127: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8128: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8130: \$? = $ac_status" >&5 + echo "$as_me:8131: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:8132: \"$ac_try\"") >&5 + { (eval echo "$as_me:8133: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8135: \$? = $ac_status" >&5 + echo "$as_me:8136: \$? = $ac_status" >&5 (exit $ac_status); }; }; then OPENSSL_SEEDS_ITSELF=yes - echo "$as_me:8139: result: yes" >&5 + echo "$as_me:8140: result: yes" >&5 echo "${ECHO_T}yes" >&6 else @@ -8144,7 +8145,7 @@ echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:8147: result: no" >&5 + echo "$as_me:8148: result: no" >&5 echo "${ECHO_T}no" >&6 # Default to use of the rand helper if OpenSSL doesn't # seed itself @@ -8164,7 +8165,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:8167: WARNING: *** Forcing use of OpenSSL's non-self-seeding PRNG" >&5 + { echo "$as_me:8168: 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="" @@ -8205,7 +8206,7 @@ [0-9]*) ;; *) - { { echo "$as_me:8208: error: You must specify a numeric port number for --with-prngd-port" >&5 + { { echo "$as_me:8209: 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; }; } ;; @@ -8236,7 +8237,7 @@ /*) ;; *) - { { echo "$as_me:8239: error: You must specify an absolute path to the entropy socket" >&5 + { { echo "$as_me:8240: 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; }; } ;; @@ -8244,12 +8245,12 @@ if test ! -z "$withval" ; then if test ! -z "$PRNGD_PORT" ; then - { { echo "$as_me:8247: error: You may not specify both a PRNGD/EGD port and socket" >&5 + { { echo "$as_me:8248: 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:8252: WARNING: Entropy socket is not readable" >&5 + { echo "$as_me:8253: WARNING: Entropy socket is not readable" >&5 echo "$as_me: WARNING: Entropy socket is not readable" >&2;} fi PRNGD_SOCKET="$withval" @@ -8263,7 +8264,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:8266: checking for PRNGD/EGD socket" >&5 + echo "$as_me:8267: 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 @@ -8277,10 +8278,10 @@ fi done if test ! -z "$PRNGD_SOCKET" ; then - echo "$as_me:8280: result: $PRNGD_SOCKET" >&5 + echo "$as_me:8281: result: $PRNGD_SOCKET" >&5 echo "${ECHO_T}$PRNGD_SOCKET" >&6 else - echo "$as_me:8283: result: not found" >&5 + echo "$as_me:8284: result: not found" >&5 echo "${ECHO_T}not found" >&6 fi fi @@ -8308,7 +8309,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:8311: checking for $ac_word" >&5 +echo "$as_me:8312: 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 @@ -8325,7 +8326,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:8328: found $ac_dir/$ac_word" >&5 + echo "$as_me:8329: found $ac_dir/$ac_word" >&5 break fi done @@ -8336,10 +8337,10 @@ PROG_LS=$ac_cv_path_PROG_LS if test -n "$PROG_LS"; then - echo "$as_me:8339: result: $PROG_LS" >&5 + echo "$as_me:8340: result: $PROG_LS" >&5 echo "${ECHO_T}$PROG_LS" >&6 else - echo "$as_me:8342: result: no" >&5 + echo "$as_me:8343: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8349,7 +8350,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:8352: checking for $ac_word" >&5 +echo "$as_me:8353: 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 @@ -8366,7 +8367,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:8369: found $ac_dir/$ac_word" >&5 + echo "$as_me:8370: found $ac_dir/$ac_word" >&5 break fi done @@ -8377,10 +8378,10 @@ PROG_NETSTAT=$ac_cv_path_PROG_NETSTAT if test -n "$PROG_NETSTAT"; then - echo "$as_me:8380: result: $PROG_NETSTAT" >&5 + echo "$as_me:8381: result: $PROG_NETSTAT" >&5 echo "${ECHO_T}$PROG_NETSTAT" >&6 else - echo "$as_me:8383: result: no" >&5 + echo "$as_me:8384: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8390,7 +8391,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:8393: checking for $ac_word" >&5 +echo "$as_me:8394: 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 @@ -8407,7 +8408,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:8410: found $ac_dir/$ac_word" >&5 + echo "$as_me:8411: found $ac_dir/$ac_word" >&5 break fi done @@ -8418,10 +8419,10 @@ PROG_ARP=$ac_cv_path_PROG_ARP if test -n "$PROG_ARP"; then - echo "$as_me:8421: result: $PROG_ARP" >&5 + echo "$as_me:8422: result: $PROG_ARP" >&5 echo "${ECHO_T}$PROG_ARP" >&6 else - echo "$as_me:8424: result: no" >&5 + echo "$as_me:8425: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8431,7 +8432,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:8434: checking for $ac_word" >&5 +echo "$as_me:8435: 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 @@ -8448,7 +8449,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:8451: found $ac_dir/$ac_word" >&5 + echo "$as_me:8452: found $ac_dir/$ac_word" >&5 break fi done @@ -8459,10 +8460,10 @@ PROG_IFCONFIG=$ac_cv_path_PROG_IFCONFIG if test -n "$PROG_IFCONFIG"; then - echo "$as_me:8462: result: $PROG_IFCONFIG" >&5 + echo "$as_me:8463: result: $PROG_IFCONFIG" >&5 echo "${ECHO_T}$PROG_IFCONFIG" >&6 else - echo "$as_me:8465: result: no" >&5 + echo "$as_me:8466: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8472,7 +8473,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:8475: checking for $ac_word" >&5 +echo "$as_me:8476: 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 @@ -8489,7 +8490,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:8492: found $ac_dir/$ac_word" >&5 + echo "$as_me:8493: found $ac_dir/$ac_word" >&5 break fi done @@ -8500,10 +8501,10 @@ PROG_JSTAT=$ac_cv_path_PROG_JSTAT if test -n "$PROG_JSTAT"; then - echo "$as_me:8503: result: $PROG_JSTAT" >&5 + echo "$as_me:8504: result: $PROG_JSTAT" >&5 echo "${ECHO_T}$PROG_JSTAT" >&6 else - echo "$as_me:8506: result: no" >&5 + echo "$as_me:8507: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8513,7 +8514,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:8516: checking for $ac_word" >&5 +echo "$as_me:8517: 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 @@ -8530,7 +8531,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:8533: found $ac_dir/$ac_word" >&5 + echo "$as_me:8534: found $ac_dir/$ac_word" >&5 break fi done @@ -8541,10 +8542,10 @@ PROG_PS=$ac_cv_path_PROG_PS if test -n "$PROG_PS"; then - echo "$as_me:8544: result: $PROG_PS" >&5 + echo "$as_me:8545: result: $PROG_PS" >&5 echo "${ECHO_T}$PROG_PS" >&6 else - echo "$as_me:8547: result: no" >&5 + echo "$as_me:8548: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8554,7 +8555,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:8557: checking for $ac_word" >&5 +echo "$as_me:8558: 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 @@ -8571,7 +8572,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:8574: found $ac_dir/$ac_word" >&5 + echo "$as_me:8575: found $ac_dir/$ac_word" >&5 break fi done @@ -8582,10 +8583,10 @@ PROG_SAR=$ac_cv_path_PROG_SAR if test -n "$PROG_SAR"; then - echo "$as_me:8585: result: $PROG_SAR" >&5 + echo "$as_me:8586: result: $PROG_SAR" >&5 echo "${ECHO_T}$PROG_SAR" >&6 else - echo "$as_me:8588: result: no" >&5 + echo "$as_me:8589: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8595,7 +8596,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:8598: checking for $ac_word" >&5 +echo "$as_me:8599: 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 @@ -8612,7 +8613,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:8615: found $ac_dir/$ac_word" >&5 + echo "$as_me:8616: found $ac_dir/$ac_word" >&5 break fi done @@ -8623,10 +8624,10 @@ PROG_W=$ac_cv_path_PROG_W if test -n "$PROG_W"; then - echo "$as_me:8626: result: $PROG_W" >&5 + echo "$as_me:8627: result: $PROG_W" >&5 echo "${ECHO_T}$PROG_W" >&6 else - echo "$as_me:8629: result: no" >&5 + echo "$as_me:8630: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8636,7 +8637,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:8639: checking for $ac_word" >&5 +echo "$as_me:8640: 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 @@ -8653,7 +8654,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:8656: found $ac_dir/$ac_word" >&5 + echo "$as_me:8657: found $ac_dir/$ac_word" >&5 break fi done @@ -8664,10 +8665,10 @@ PROG_WHO=$ac_cv_path_PROG_WHO if test -n "$PROG_WHO"; then - echo "$as_me:8667: result: $PROG_WHO" >&5 + echo "$as_me:8668: result: $PROG_WHO" >&5 echo "${ECHO_T}$PROG_WHO" >&6 else - echo "$as_me:8670: result: no" >&5 + echo "$as_me:8671: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8677,7 +8678,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:8680: checking for $ac_word" >&5 +echo "$as_me:8681: 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 @@ -8694,7 +8695,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:8697: found $ac_dir/$ac_word" >&5 + echo "$as_me:8698: found $ac_dir/$ac_word" >&5 break fi done @@ -8705,10 +8706,10 @@ PROG_LAST=$ac_cv_path_PROG_LAST if test -n "$PROG_LAST"; then - echo "$as_me:8708: result: $PROG_LAST" >&5 + echo "$as_me:8709: result: $PROG_LAST" >&5 echo "${ECHO_T}$PROG_LAST" >&6 else - echo "$as_me:8711: result: no" >&5 + echo "$as_me:8712: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8718,7 +8719,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:8721: checking for $ac_word" >&5 +echo "$as_me:8722: 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 @@ -8735,7 +8736,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:8738: found $ac_dir/$ac_word" >&5 + echo "$as_me:8739: found $ac_dir/$ac_word" >&5 break fi done @@ -8746,10 +8747,10 @@ PROG_LASTLOG=$ac_cv_path_PROG_LASTLOG if test -n "$PROG_LASTLOG"; then - echo "$as_me:8749: result: $PROG_LASTLOG" >&5 + echo "$as_me:8750: result: $PROG_LASTLOG" >&5 echo "${ECHO_T}$PROG_LASTLOG" >&6 else - echo "$as_me:8752: result: no" >&5 + echo "$as_me:8753: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8759,7 +8760,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:8762: checking for $ac_word" >&5 +echo "$as_me:8763: 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 @@ -8776,7 +8777,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:8779: found $ac_dir/$ac_word" >&5 + echo "$as_me:8780: found $ac_dir/$ac_word" >&5 break fi done @@ -8787,10 +8788,10 @@ PROG_DF=$ac_cv_path_PROG_DF if test -n "$PROG_DF"; then - echo "$as_me:8790: result: $PROG_DF" >&5 + echo "$as_me:8791: result: $PROG_DF" >&5 echo "${ECHO_T}$PROG_DF" >&6 else - echo "$as_me:8793: result: no" >&5 + echo "$as_me:8794: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8800,7 +8801,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:8803: checking for $ac_word" >&5 +echo "$as_me:8804: 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 @@ -8817,7 +8818,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:8820: found $ac_dir/$ac_word" >&5 + echo "$as_me:8821: found $ac_dir/$ac_word" >&5 break fi done @@ -8828,10 +8829,10 @@ PROG_VMSTAT=$ac_cv_path_PROG_VMSTAT if test -n "$PROG_VMSTAT"; then - echo "$as_me:8831: result: $PROG_VMSTAT" >&5 + echo "$as_me:8832: result: $PROG_VMSTAT" >&5 echo "${ECHO_T}$PROG_VMSTAT" >&6 else - echo "$as_me:8834: result: no" >&5 + echo "$as_me:8835: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8841,7 +8842,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:8844: checking for $ac_word" >&5 +echo "$as_me:8845: 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 @@ -8858,7 +8859,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:8861: found $ac_dir/$ac_word" >&5 + echo "$as_me:8862: found $ac_dir/$ac_word" >&5 break fi done @@ -8869,10 +8870,10 @@ PROG_UPTIME=$ac_cv_path_PROG_UPTIME if test -n "$PROG_UPTIME"; then - echo "$as_me:8872: result: $PROG_UPTIME" >&5 + echo "$as_me:8873: result: $PROG_UPTIME" >&5 echo "${ECHO_T}$PROG_UPTIME" >&6 else - echo "$as_me:8875: result: no" >&5 + echo "$as_me:8876: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8882,7 +8883,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:8885: checking for $ac_word" >&5 +echo "$as_me:8886: 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 @@ -8899,7 +8900,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:8902: found $ac_dir/$ac_word" >&5 + echo "$as_me:8903: found $ac_dir/$ac_word" >&5 break fi done @@ -8910,10 +8911,10 @@ PROG_IPCS=$ac_cv_path_PROG_IPCS if test -n "$PROG_IPCS"; then - echo "$as_me:8913: result: $PROG_IPCS" >&5 + echo "$as_me:8914: result: $PROG_IPCS" >&5 echo "${ECHO_T}$PROG_IPCS" >&6 else - echo "$as_me:8916: result: no" >&5 + echo "$as_me:8917: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8923,7 +8924,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:8926: checking for $ac_word" >&5 +echo "$as_me:8927: 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 @@ -8940,7 +8941,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:8943: found $ac_dir/$ac_word" >&5 + echo "$as_me:8944: found $ac_dir/$ac_word" >&5 break fi done @@ -8951,10 +8952,10 @@ PROG_TAIL=$ac_cv_path_PROG_TAIL if test -n "$PROG_TAIL"; then - echo "$as_me:8954: result: $PROG_TAIL" >&5 + echo "$as_me:8955: result: $PROG_TAIL" >&5 echo "${ECHO_T}$PROG_TAIL" >&6 else - echo "$as_me:8957: result: no" >&5 + echo "$as_me:8958: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -8982,13 +8983,13 @@ fi # Checks for data types -echo "$as_me:8985: checking for char" >&5 +echo "$as_me:8986: 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 8991 "configure" +#line 8992 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9009,16 +9010,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9012: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9013: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9015: \$? = $ac_status" >&5 + echo "$as_me:9016: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9018: \"$ac_try\"") >&5 + { (eval echo "$as_me:9019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9021: \$? = $ac_status" >&5 + echo "$as_me:9022: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_char=yes else @@ -9028,10 +9029,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9031: result: $ac_cv_type_char" >&5 +echo "$as_me:9032: result: $ac_cv_type_char" >&5 echo "${ECHO_T}$ac_cv_type_char" >&6 -echo "$as_me:9034: checking size of char" >&5 +echo "$as_me:9035: 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 @@ -9040,7 +9041,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 9043 "configure" +#line 9044 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9058,21 +9059,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9061: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9062: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9064: \$? = $ac_status" >&5 + echo "$as_me:9065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9067: \"$ac_try\"") >&5 + { (eval echo "$as_me:9068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9070: \$? = $ac_status" >&5 + echo "$as_me:9071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9075 "configure" +#line 9076 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9090,16 +9091,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9093: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9094: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9096: \$? = $ac_status" >&5 + echo "$as_me:9097: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9099: \"$ac_try\"") >&5 + { (eval echo "$as_me:9100: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9102: \$? = $ac_status" >&5 + echo "$as_me:9103: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -9115,7 +9116,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9118 "configure" +#line 9119 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9133,16 +9134,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9136: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9137: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9139: \$? = $ac_status" >&5 + echo "$as_me:9140: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9142: \"$ac_try\"") >&5 + { (eval echo "$as_me:9143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9145: \$? = $ac_status" >&5 + echo "$as_me:9146: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -9158,7 +9159,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 9161 "configure" +#line 9162 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9176,16 +9177,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9179: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9180: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9182: \$? = $ac_status" >&5 + echo "$as_me:9183: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9185: \"$ac_try\"") >&5 + { (eval echo "$as_me:9186: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9188: \$? = $ac_status" >&5 + echo "$as_me:9189: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -9198,12 +9199,12 @@ ac_cv_sizeof_char=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:9201: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:9202: 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 9206 "configure" +#line 9207 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9225,15 +9226,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:9228: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9229: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9231: \$? = $ac_status" >&5 + echo "$as_me:9232: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:9233: \"$ac_try\"") >&5 + { (eval echo "$as_me:9234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9236: \$? = $ac_status" >&5 + echo "$as_me:9237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_char=`cat conftest.val` else @@ -9249,19 +9250,19 @@ ac_cv_sizeof_char=0 fi fi -echo "$as_me:9252: result: $ac_cv_sizeof_char" >&5 +echo "$as_me:9253: result: $ac_cv_sizeof_char" >&5 echo "${ECHO_T}$ac_cv_sizeof_char" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_CHAR $ac_cv_sizeof_char _ACEOF -echo "$as_me:9258: checking for short int" >&5 +echo "$as_me:9259: 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 9264 "configure" +#line 9265 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9282,16 +9283,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9285: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9286: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9288: \$? = $ac_status" >&5 + echo "$as_me:9289: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9291: \"$ac_try\"") >&5 + { (eval echo "$as_me:9292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9294: \$? = $ac_status" >&5 + echo "$as_me:9295: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_short_int=yes else @@ -9301,10 +9302,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9304: result: $ac_cv_type_short_int" >&5 +echo "$as_me:9305: result: $ac_cv_type_short_int" >&5 echo "${ECHO_T}$ac_cv_type_short_int" >&6 -echo "$as_me:9307: checking size of short int" >&5 +echo "$as_me:9308: 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 @@ -9313,7 +9314,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 9316 "configure" +#line 9317 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9331,21 +9332,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9334: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9335: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9337: \$? = $ac_status" >&5 + echo "$as_me:9338: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9340: \"$ac_try\"") >&5 + { (eval echo "$as_me:9341: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9343: \$? = $ac_status" >&5 + echo "$as_me:9344: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9348 "configure" +#line 9349 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9363,16 +9364,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9366: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9367: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9369: \$? = $ac_status" >&5 + echo "$as_me:9370: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9372: \"$ac_try\"") >&5 + { (eval echo "$as_me:9373: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9375: \$? = $ac_status" >&5 + echo "$as_me:9376: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -9388,7 +9389,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9391 "configure" +#line 9392 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9406,16 +9407,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9409: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9410: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9412: \$? = $ac_status" >&5 + echo "$as_me:9413: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9415: \"$ac_try\"") >&5 + { (eval echo "$as_me:9416: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9418: \$? = $ac_status" >&5 + echo "$as_me:9419: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -9431,7 +9432,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 9434 "configure" +#line 9435 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9449,16 +9450,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9452: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9453: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9455: \$? = $ac_status" >&5 + echo "$as_me:9456: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9458: \"$ac_try\"") >&5 + { (eval echo "$as_me:9459: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9461: \$? = $ac_status" >&5 + echo "$as_me:9462: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -9471,12 +9472,12 @@ ac_cv_sizeof_short_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:9474: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:9475: 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 9479 "configure" +#line 9480 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9498,15 +9499,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:9501: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9502: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9504: \$? = $ac_status" >&5 + echo "$as_me:9505: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:9506: \"$ac_try\"") >&5 + { (eval echo "$as_me:9507: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9509: \$? = $ac_status" >&5 + echo "$as_me:9510: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_short_int=`cat conftest.val` else @@ -9522,19 +9523,19 @@ ac_cv_sizeof_short_int=0 fi fi -echo "$as_me:9525: result: $ac_cv_sizeof_short_int" >&5 +echo "$as_me:9526: result: $ac_cv_sizeof_short_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_short_int" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_SHORT_INT $ac_cv_sizeof_short_int _ACEOF -echo "$as_me:9531: checking for int" >&5 +echo "$as_me:9532: 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 9537 "configure" +#line 9538 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9555,16 +9556,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9558: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9559: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9561: \$? = $ac_status" >&5 + echo "$as_me:9562: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9564: \"$ac_try\"") >&5 + { (eval echo "$as_me:9565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9567: \$? = $ac_status" >&5 + echo "$as_me:9568: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -9574,10 +9575,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9577: result: $ac_cv_type_int" >&5 +echo "$as_me:9578: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:9580: checking size of int" >&5 +echo "$as_me:9581: 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 @@ -9586,7 +9587,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 9589 "configure" +#line 9590 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9604,21 +9605,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9607: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9608: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9610: \$? = $ac_status" >&5 + echo "$as_me:9611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9613: \"$ac_try\"") >&5 + { (eval echo "$as_me:9614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9616: \$? = $ac_status" >&5 + echo "$as_me:9617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9621 "configure" +#line 9622 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9636,16 +9637,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9639: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9640: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9642: \$? = $ac_status" >&5 + echo "$as_me:9643: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9645: \"$ac_try\"") >&5 + { (eval echo "$as_me:9646: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9648: \$? = $ac_status" >&5 + echo "$as_me:9649: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -9661,7 +9662,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9664 "configure" +#line 9665 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9679,16 +9680,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9682: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9683: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9685: \$? = $ac_status" >&5 + echo "$as_me:9686: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9688: \"$ac_try\"") >&5 + { (eval echo "$as_me:9689: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9691: \$? = $ac_status" >&5 + echo "$as_me:9692: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -9704,7 +9705,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 9707 "configure" +#line 9708 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9722,16 +9723,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9725: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9726: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9728: \$? = $ac_status" >&5 + echo "$as_me:9729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9731: \"$ac_try\"") >&5 + { (eval echo "$as_me:9732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9734: \$? = $ac_status" >&5 + echo "$as_me:9735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -9744,12 +9745,12 @@ ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:9747: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:9748: 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 9752 "configure" +#line 9753 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9771,15 +9772,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:9774: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9775: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9777: \$? = $ac_status" >&5 + echo "$as_me:9778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:9779: \"$ac_try\"") >&5 + { (eval echo "$as_me:9780: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9782: \$? = $ac_status" >&5 + echo "$as_me:9783: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -9795,19 +9796,19 @@ ac_cv_sizeof_int=0 fi fi -echo "$as_me:9798: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:9799: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_INT $ac_cv_sizeof_int _ACEOF -echo "$as_me:9804: checking for long int" >&5 +echo "$as_me:9805: 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 9810 "configure" +#line 9811 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9828,16 +9829,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9831: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9832: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9834: \$? = $ac_status" >&5 + echo "$as_me:9835: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9837: \"$ac_try\"") >&5 + { (eval echo "$as_me:9838: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9840: \$? = $ac_status" >&5 + echo "$as_me:9841: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_int=yes else @@ -9847,10 +9848,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:9850: result: $ac_cv_type_long_int" >&5 +echo "$as_me:9851: result: $ac_cv_type_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_int" >&6 -echo "$as_me:9853: checking size of long int" >&5 +echo "$as_me:9854: 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 @@ -9859,7 +9860,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 9862 "configure" +#line 9863 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9877,21 +9878,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9880: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9881: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9883: \$? = $ac_status" >&5 + echo "$as_me:9884: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9886: \"$ac_try\"") >&5 + { (eval echo "$as_me:9887: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9889: \$? = $ac_status" >&5 + echo "$as_me:9890: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9894 "configure" +#line 9895 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9909,16 +9910,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9912: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9913: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9915: \$? = $ac_status" >&5 + echo "$as_me:9916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9918: \"$ac_try\"") >&5 + { (eval echo "$as_me:9919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9921: \$? = $ac_status" >&5 + echo "$as_me:9922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -9934,7 +9935,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 9937 "configure" +#line 9938 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9952,16 +9953,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9955: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9956: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9958: \$? = $ac_status" >&5 + echo "$as_me:9959: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9961: \"$ac_try\"") >&5 + { (eval echo "$as_me:9962: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9964: \$? = $ac_status" >&5 + echo "$as_me:9965: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -9977,7 +9978,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 9980 "configure" +#line 9981 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -9995,16 +9996,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9998: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9999: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10001: \$? = $ac_status" >&5 + echo "$as_me:10002: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10004: \"$ac_try\"") >&5 + { (eval echo "$as_me:10005: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10007: \$? = $ac_status" >&5 + echo "$as_me:10008: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -10017,12 +10018,12 @@ ac_cv_sizeof_long_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:10020: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:10021: 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 10025 "configure" +#line 10026 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -10044,15 +10045,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:10047: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10048: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10050: \$? = $ac_status" >&5 + echo "$as_me:10051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (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_cv_sizeof_long_int=`cat conftest.val` else @@ -10068,19 +10069,19 @@ ac_cv_sizeof_long_int=0 fi fi -echo "$as_me:10071: result: $ac_cv_sizeof_long_int" >&5 +echo "$as_me:10072: result: $ac_cv_sizeof_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_int" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_LONG_INT $ac_cv_sizeof_long_int _ACEOF -echo "$as_me:10077: checking for long long int" >&5 +echo "$as_me:10078: 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 10083 "configure" +#line 10084 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -10101,16 +10102,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10104: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10105: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10107: \$? = $ac_status" >&5 + echo "$as_me:10108: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10110: \"$ac_try\"") >&5 + { (eval echo "$as_me:10111: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10113: \$? = $ac_status" >&5 + echo "$as_me:10114: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_long_int=yes else @@ -10120,10 +10121,10 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10123: result: $ac_cv_type_long_long_int" >&5 +echo "$as_me:10124: result: $ac_cv_type_long_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_long_int" >&6 -echo "$as_me:10126: checking size of long long int" >&5 +echo "$as_me:10127: 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 @@ -10132,7 +10133,7 @@ if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 10135 "configure" +#line 10136 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -10150,21 +10151,21 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10153: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10154: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10156: \$? = $ac_status" >&5 + echo "$as_me:10157: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10159: \"$ac_try\"") >&5 + { (eval echo "$as_me:10160: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10162: \$? = $ac_status" >&5 + echo "$as_me:10163: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10167 "configure" +#line 10168 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -10182,16 +10183,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10185: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10186: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10188: \$? = $ac_status" >&5 + echo "$as_me:10189: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10191: \"$ac_try\"") >&5 + { (eval echo "$as_me:10192: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10194: \$? = $ac_status" >&5 + echo "$as_me:10195: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -10207,7 +10208,7 @@ ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 10210 "configure" +#line 10211 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -10225,16 +10226,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10228: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10229: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10231: \$? = $ac_status" >&5 + echo "$as_me:10232: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10234: \"$ac_try\"") >&5 + { (eval echo "$as_me:10235: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10237: \$? = $ac_status" >&5 + echo "$as_me:10238: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -10250,7 +10251,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 10253 "configure" +#line 10254 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -10268,16 +10269,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10271: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10272: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10274: \$? = $ac_status" >&5 + echo "$as_me:10275: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10277: \"$ac_try\"") >&5 + { (eval echo "$as_me:10278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10280: \$? = $ac_status" >&5 + echo "$as_me:10281: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -10290,12 +10291,12 @@ ac_cv_sizeof_long_long_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:10293: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:10294: 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 10298 "configure" +#line 10299 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -10317,15 +10318,15 @@ } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:10320: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10321: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10323: \$? = $ac_status" >&5 + echo "$as_me:10324: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:10325: \"$ac_try\"") >&5 + { (eval echo "$as_me:10326: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10328: \$? = $ac_status" >&5 + echo "$as_me:10329: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_long_int=`cat conftest.val` else @@ -10341,21 +10342,21 @@ ac_cv_sizeof_long_long_int=0 fi fi -echo "$as_me:10344: result: $ac_cv_sizeof_long_long_int" >&5 +echo "$as_me:10345: result: $ac_cv_sizeof_long_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_long_int" >&6 cat >>confdefs.h <<_ACEOF #define SIZEOF_LONG_LONG_INT $ac_cv_sizeof_long_long_int _ACEOF # More checks for data types -echo "$as_me:10351: checking for u_int type" >&5 +echo "$as_me:10352: 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 10358 "configure" +#line 10359 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10373,16 +10374,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10376: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10377: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10379: \$? = $ac_status" >&5 + echo "$as_me:10380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10382: \"$ac_try\"") >&5 + { (eval echo "$as_me:10383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10385: \$? = $ac_status" >&5 + echo "$as_me:10386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int="yes" else @@ -10394,7 +10395,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10397: result: $ac_cv_have_u_int" >&5 +echo "$as_me:10398: 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 <<\_ACEOF @@ -10404,14 +10405,14 @@ have_u_int=1 fi -echo "$as_me:10407: checking for intXX_t types" >&5 +echo "$as_me:10408: 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 10414 "configure" +#line 10415 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10429,16 +10430,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10432: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10433: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10435: \$? = $ac_status" >&5 + echo "$as_me:10436: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10438: \"$ac_try\"") >&5 + { (eval echo "$as_me:10439: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10441: \$? = $ac_status" >&5 + echo "$as_me:10442: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_intxx_t="yes" else @@ -10450,7 +10451,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10453: result: $ac_cv_have_intxx_t" >&5 +echo "$as_me:10454: 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 <<\_ACEOF @@ -10463,10 +10464,10 @@ if (test -z "$have_intxx_t" && \ test "x$ac_cv_header_stdint_h" = "xyes") then - echo "$as_me:10466: checking for intXX_t types in stdint.h" >&5 + echo "$as_me:10467: 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 10469 "configure" +#line 10470 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10484,43 +10485,43 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10487: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10488: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10490: \$? = $ac_status" >&5 + echo "$as_me:10491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10493: \"$ac_try\"") >&5 + { (eval echo "$as_me:10494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10496: \$? = $ac_status" >&5 + echo "$as_me:10497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\_ACEOF #define HAVE_INTXX_T 1 _ACEOF - echo "$as_me:10503: result: yes" >&5 + echo "$as_me:10504: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:10509: result: no" >&5 + echo "$as_me:10510: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10516: checking for int64_t type" >&5 +echo "$as_me:10517: 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 10523 "configure" +#line 10524 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10538,16 +10539,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10541: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10542: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10544: \$? = $ac_status" >&5 + echo "$as_me:10545: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10547: \"$ac_try\"") >&5 + { (eval echo "$as_me:10548: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10550: \$? = $ac_status" >&5 + echo "$as_me:10551: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_int64_t="yes" else @@ -10559,7 +10560,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10562: result: $ac_cv_have_int64_t" >&5 +echo "$as_me:10563: 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 <<\_ACEOF @@ -10570,10 +10571,10 @@ fi if test -z "$have_int64_t" ; then - echo "$as_me:10573: checking for int64_t type in sys/socket.h" >&5 + echo "$as_me:10574: checking for int64_t type in sys/socket.h" >&5 echo $ECHO_N "checking for int64_t type in sys/socket.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10576 "configure" +#line 10577 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10591,29 +10592,29 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10594: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10595: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10597: \$? = $ac_status" >&5 + echo "$as_me:10598: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10600: \"$ac_try\"") >&5 + { (eval echo "$as_me:10601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10603: \$? = $ac_status" >&5 + echo "$as_me:10604: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\_ACEOF #define HAVE_INT64_T 1 _ACEOF - echo "$as_me:10610: result: yes" >&5 + echo "$as_me:10611: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:10616: result: no" >&5 + echo "$as_me:10617: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -10621,10 +10622,10 @@ fi if test -z "$have_int64_t" ; then - echo "$as_me:10624: checking for int64_t type in sys/bitypes.h" >&5 + echo "$as_me:10625: checking for int64_t type in sys/bitypes.h" >&5 echo $ECHO_N "checking for int64_t type in sys/bitypes.h... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10627 "configure" +#line 10628 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10642,43 +10643,43 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10645: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10646: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10648: \$? = $ac_status" >&5 + echo "$as_me:10649: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10651: \"$ac_try\"") >&5 + { (eval echo "$as_me:10652: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10654: \$? = $ac_status" >&5 + echo "$as_me:10655: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\_ACEOF #define HAVE_INT64_T 1 _ACEOF - echo "$as_me:10661: result: yes" >&5 + echo "$as_me:10662: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:10667: result: no" >&5 + echo "$as_me:10668: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10674: checking for u_intXX_t types" >&5 +echo "$as_me:10675: 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 10681 "configure" +#line 10682 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10696,16 +10697,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10699: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10702: \$? = $ac_status" >&5 + echo "$as_me:10703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10705: \"$ac_try\"") >&5 + { (eval echo "$as_me:10706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10708: \$? = $ac_status" >&5 + echo "$as_me:10709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_intxx_t="yes" else @@ -10717,7 +10718,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10720: result: $ac_cv_have_u_intxx_t" >&5 +echo "$as_me:10721: 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 <<\_ACEOF @@ -10728,10 +10729,10 @@ fi if test -z "$have_u_intxx_t" ; then - echo "$as_me:10731: checking for u_intXX_t types in sys/socket.h" >&5 + echo "$as_me:10732: 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 10734 "configure" +#line 10735 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10749,43 +10750,43 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10752: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10753: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10755: \$? = $ac_status" >&5 + echo "$as_me:10756: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10758: \"$ac_try\"") >&5 + { (eval echo "$as_me:10759: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10761: \$? = $ac_status" >&5 + echo "$as_me:10762: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\_ACEOF #define HAVE_U_INTXX_T 1 _ACEOF - echo "$as_me:10768: result: yes" >&5 + echo "$as_me:10769: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:10774: result: no" >&5 + echo "$as_me:10775: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10781: checking for u_int64_t types" >&5 +echo "$as_me:10782: 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 10788 "configure" +#line 10789 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10803,16 +10804,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10806: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10807: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10809: \$? = $ac_status" >&5 + echo "$as_me:10810: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10812: \"$ac_try\"") >&5 + { (eval echo "$as_me:10813: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10815: \$? = $ac_status" >&5 + echo "$as_me:10816: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int64_t="yes" else @@ -10824,7 +10825,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10827: result: $ac_cv_have_u_int64_t" >&5 +echo "$as_me:10828: 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 <<\_ACEOF @@ -10835,10 +10836,10 @@ fi if test -z "$have_u_int64_t" ; then - echo "$as_me:10838: checking for u_int64_t type in sys/bitypes.h" >&5 + echo "$as_me:10839: 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 10841 "configure" +#line 10842 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10856,29 +10857,29 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10859: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10860: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10862: \$? = $ac_status" >&5 + echo "$as_me:10863: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10865: \"$ac_try\"") >&5 + { (eval echo "$as_me:10866: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10868: \$? = $ac_status" >&5 + echo "$as_me:10869: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\_ACEOF #define HAVE_U_INT64_T 1 _ACEOF - echo "$as_me:10875: result: yes" >&5 + echo "$as_me:10876: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:10881: result: no" >&5 + echo "$as_me:10882: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -10886,14 +10887,14 @@ fi if test -z "$have_u_intxx_t" ; then - echo "$as_me:10889: checking for uintXX_t types" >&5 + echo "$as_me:10890: 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 10896 "configure" +#line 10897 "configure" #include "confdefs.h" #include @@ -10913,16 +10914,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10916: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10917: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10919: \$? = $ac_status" >&5 + echo "$as_me:10920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10922: \"$ac_try\"") >&5 + { (eval echo "$as_me:10923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10925: \$? = $ac_status" >&5 + echo "$as_me:10926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_uintxx_t="yes" else @@ -10934,7 +10935,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:10937: result: $ac_cv_have_uintxx_t" >&5 +echo "$as_me:10938: 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 <<\_ACEOF @@ -10945,10 +10946,10 @@ fi if test -z "$have_uintxx_t" ; then - echo "$as_me:10948: checking for uintXX_t types in stdint.h" >&5 + echo "$as_me:10949: 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 10951 "configure" +#line 10952 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -10966,29 +10967,29 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10969: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10970: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10972: \$? = $ac_status" >&5 + echo "$as_me:10973: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10975: \"$ac_try\"") >&5 + { (eval echo "$as_me:10976: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10978: \$? = $ac_status" >&5 + echo "$as_me:10979: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\_ACEOF #define HAVE_UINTXX_T 1 _ACEOF - echo "$as_me:10985: result: yes" >&5 + echo "$as_me:10986: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:10991: result: no" >&5 + echo "$as_me:10992: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -10998,10 +10999,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:11001: checking for intXX_t and u_intXX_t types in sys/bitypes.h" >&5 + echo "$as_me:11002: 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 11004 "configure" +#line 11005 "configure" #include "confdefs.h" #include @@ -11025,16 +11026,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11028: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11029: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11031: \$? = $ac_status" >&5 + echo "$as_me:11032: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11034: \"$ac_try\"") >&5 + { (eval echo "$as_me:11035: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11037: \$? = $ac_status" >&5 + echo "$as_me:11038: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\_ACEOF @@ -11045,27 +11046,27 @@ #define HAVE_INTXX_T 1 _ACEOF - echo "$as_me:11048: result: yes" >&5 + echo "$as_me:11049: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:11054: result: no" >&5 +echo "$as_me:11055: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11061: checking for u_char" >&5 +echo "$as_me:11062: 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 11068 "configure" +#line 11069 "configure" #include "confdefs.h" #include @@ -11085,16 +11086,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11088: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11089: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11091: \$? = $ac_status" >&5 + echo "$as_me:11092: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11094: \"$ac_try\"") >&5 + { (eval echo "$as_me:11095: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11097: \$? = $ac_status" >&5 + echo "$as_me:11098: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_char="yes" else @@ -11106,7 +11107,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11109: result: $ac_cv_have_u_char" >&5 +echo "$as_me:11110: 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 <<\_ACEOF @@ -11115,13 +11116,13 @@ fi - echo "$as_me:11118: checking for socklen_t" >&5 + echo "$as_me:11119: 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 11124 "configure" +#line 11125 "configure" #include "confdefs.h" #include #include @@ -11144,16 +11145,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11147: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11148: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11150: \$? = $ac_status" >&5 + echo "$as_me:11151: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11153: \"$ac_try\"") >&5 + { (eval echo "$as_me:11154: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11156: \$? = $ac_status" >&5 + echo "$as_me:11157: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -11163,13 +11164,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11166: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:11167: 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:11172: checking for socklen_t equivalent" >&5 + echo "$as_me:11173: 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 @@ -11181,7 +11182,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 11184 "configure" +#line 11185 "configure" #include "confdefs.h" #include @@ -11207,16 +11208,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11210: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11211: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11213: \$? = $ac_status" >&5 + echo "$as_me:11214: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11216: \"$ac_try\"") >&5 + { (eval echo "$as_me:11217: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11219: \$? = $ac_status" >&5 + echo "$as_me:11220: \$? = $ac_status" >&5 (exit $ac_status); }; }; then curl_cv_socklen_t_equiv="$t" @@ -11231,14 +11232,14 @@ done if test "x$curl_cv_socklen_t_equiv" = x; then - { { echo "$as_me:11234: error: Cannot find a type to use in place of socklen_t" >&5 + { { echo "$as_me:11235: 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:11241: result: $curl_cv_socklen_t_equiv" >&5 + echo "$as_me:11242: result: $curl_cv_socklen_t_equiv" >&5 echo "${ECHO_T}$curl_cv_socklen_t_equiv" >&6 cat >>confdefs.h <<_ACEOF @@ -11247,13 +11248,13 @@ fi -echo "$as_me:11250: checking for sig_atomic_t" >&5 +echo "$as_me:11251: 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 11256 "configure" +#line 11257 "configure" #include "confdefs.h" #include @@ -11275,16 +11276,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11278: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11279: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11281: \$? = $ac_status" >&5 + echo "$as_me:11282: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11284: \"$ac_try\"") >&5 + { (eval echo "$as_me:11285: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11287: \$? = $ac_status" >&5 + echo "$as_me:11288: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_sig_atomic_t=yes else @@ -11294,7 +11295,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11297: result: $ac_cv_type_sig_atomic_t" >&5 +echo "$as_me:11298: 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 @@ -11304,14 +11305,14 @@ fi -echo "$as_me:11307: checking for size_t" >&5 +echo "$as_me:11308: 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 11314 "configure" +#line 11315 "configure" #include "confdefs.h" #include @@ -11331,16 +11332,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11334: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11335: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11337: \$? = $ac_status" >&5 + echo "$as_me:11338: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11340: \"$ac_try\"") >&5 + { (eval echo "$as_me:11341: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11343: \$? = $ac_status" >&5 + echo "$as_me:11344: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_size_t="yes" else @@ -11352,7 +11353,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11355: result: $ac_cv_have_size_t" >&5 +echo "$as_me:11356: 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 <<\_ACEOF @@ -11361,14 +11362,14 @@ fi -echo "$as_me:11364: checking for ssize_t" >&5 +echo "$as_me:11365: 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 11371 "configure" +#line 11372 "configure" #include "confdefs.h" #include @@ -11388,16 +11389,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11391: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11392: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11394: \$? = $ac_status" >&5 + echo "$as_me:11395: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11397: \"$ac_try\"") >&5 + { (eval echo "$as_me:11398: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11400: \$? = $ac_status" >&5 + echo "$as_me:11401: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ssize_t="yes" else @@ -11409,7 +11410,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11412: result: $ac_cv_have_ssize_t" >&5 +echo "$as_me:11413: 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 <<\_ACEOF @@ -11418,14 +11419,14 @@ fi -echo "$as_me:11421: checking for clock_t" >&5 +echo "$as_me:11422: 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 11428 "configure" +#line 11429 "configure" #include "confdefs.h" #include @@ -11445,16 +11446,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11448: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11449: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11451: \$? = $ac_status" >&5 + echo "$as_me:11452: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11454: \"$ac_try\"") >&5 + { (eval echo "$as_me:11455: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11457: \$? = $ac_status" >&5 + echo "$as_me:11458: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_clock_t="yes" else @@ -11466,7 +11467,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11469: result: $ac_cv_have_clock_t" >&5 +echo "$as_me:11470: 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 <<\_ACEOF @@ -11475,14 +11476,14 @@ fi -echo "$as_me:11478: checking for sa_family_t" >&5 +echo "$as_me:11479: 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 11485 "configure" +#line 11486 "configure" #include "confdefs.h" #include @@ -11503,23 +11504,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11506: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11507: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11509: \$? = $ac_status" >&5 + echo "$as_me:11510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11512: \"$ac_try\"") >&5 + { (eval echo "$as_me:11513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11515: \$? = $ac_status" >&5 + echo "$as_me:11516: \$? = $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 11522 "configure" +#line 11523 "configure" #include "confdefs.h" #include @@ -11541,16 +11542,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11544: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11545: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11547: \$? = $ac_status" >&5 + echo "$as_me:11548: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11550: \"$ac_try\"") >&5 + { (eval echo "$as_me:11551: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11553: \$? = $ac_status" >&5 + echo "$as_me:11554: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_sa_family_t="yes" else @@ -11565,7 +11566,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11568: result: $ac_cv_have_sa_family_t" >&5 +echo "$as_me:11569: 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 <<\_ACEOF @@ -11574,14 +11575,14 @@ fi -echo "$as_me:11577: checking for pid_t" >&5 +echo "$as_me:11578: 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 11584 "configure" +#line 11585 "configure" #include "confdefs.h" #include @@ -11601,16 +11602,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11604: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11605: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11607: \$? = $ac_status" >&5 + echo "$as_me:11608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11610: \"$ac_try\"") >&5 + { (eval echo "$as_me:11611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11613: \$? = $ac_status" >&5 + echo "$as_me:11614: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pid_t="yes" else @@ -11622,7 +11623,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11625: result: $ac_cv_have_pid_t" >&5 +echo "$as_me:11626: 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 <<\_ACEOF @@ -11631,14 +11632,14 @@ fi -echo "$as_me:11634: checking for mode_t" >&5 +echo "$as_me:11635: 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 11641 "configure" +#line 11642 "configure" #include "confdefs.h" #include @@ -11658,16 +11659,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11661: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11662: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11664: \$? = $ac_status" >&5 + echo "$as_me:11665: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11667: \"$ac_try\"") >&5 + { (eval echo "$as_me:11668: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11670: \$? = $ac_status" >&5 + echo "$as_me:11671: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_mode_t="yes" else @@ -11679,7 +11680,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11682: result: $ac_cv_have_mode_t" >&5 +echo "$as_me:11683: 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 <<\_ACEOF @@ -11688,14 +11689,14 @@ fi -echo "$as_me:11691: checking for struct sockaddr_storage" >&5 +echo "$as_me:11692: 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 11698 "configure" +#line 11699 "configure" #include "confdefs.h" #include @@ -11716,16 +11717,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11719: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11720: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11722: \$? = $ac_status" >&5 + echo "$as_me:11723: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11725: \"$ac_try\"") >&5 + { (eval echo "$as_me:11726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11728: \$? = $ac_status" >&5 + echo "$as_me:11729: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_storage="yes" else @@ -11737,7 +11738,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11740: result: $ac_cv_have_struct_sockaddr_storage" >&5 +echo "$as_me:11741: 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 <<\_ACEOF @@ -11746,14 +11747,14 @@ fi -echo "$as_me:11749: checking for struct sockaddr_in6" >&5 +echo "$as_me:11750: 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 11756 "configure" +#line 11757 "configure" #include "confdefs.h" #include @@ -11774,16 +11775,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11777: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11778: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11780: \$? = $ac_status" >&5 + echo "$as_me:11781: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11783: \"$ac_try\"") >&5 + { (eval echo "$as_me:11784: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11786: \$? = $ac_status" >&5 + echo "$as_me:11787: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_in6="yes" else @@ -11795,7 +11796,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11798: result: $ac_cv_have_struct_sockaddr_in6" >&5 +echo "$as_me:11799: 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 <<\_ACEOF @@ -11804,14 +11805,14 @@ fi -echo "$as_me:11807: checking for struct in6_addr" >&5 +echo "$as_me:11808: 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 11814 "configure" +#line 11815 "configure" #include "confdefs.h" #include @@ -11832,16 +11833,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11835: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11836: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11838: \$? = $ac_status" >&5 + echo "$as_me:11839: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11841: \"$ac_try\"") >&5 + { (eval echo "$as_me:11842: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11844: \$? = $ac_status" >&5 + echo "$as_me:11845: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_in6_addr="yes" else @@ -11853,7 +11854,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11856: result: $ac_cv_have_struct_in6_addr" >&5 +echo "$as_me:11857: 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 <<\_ACEOF @@ -11862,14 +11863,14 @@ fi -echo "$as_me:11865: checking for struct addrinfo" >&5 +echo "$as_me:11866: 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 11872 "configure" +#line 11873 "configure" #include "confdefs.h" #include @@ -11891,16 +11892,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11894: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11895: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11897: \$? = $ac_status" >&5 + echo "$as_me:11898: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11900: \"$ac_try\"") >&5 + { (eval echo "$as_me:11901: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11903: \$? = $ac_status" >&5 + echo "$as_me:11904: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_addrinfo="yes" else @@ -11912,7 +11913,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11915: result: $ac_cv_have_struct_addrinfo" >&5 +echo "$as_me:11916: 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 <<\_ACEOF @@ -11921,14 +11922,14 @@ fi -echo "$as_me:11924: checking for struct timeval" >&5 +echo "$as_me:11925: 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 11931 "configure" +#line 11932 "configure" #include "confdefs.h" #include #ifdef F77_DUMMY_MAIN @@ -11946,16 +11947,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11949: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11950: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11952: \$? = $ac_status" >&5 + echo "$as_me:11953: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11955: \"$ac_try\"") >&5 + { (eval echo "$as_me:11956: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11958: \$? = $ac_status" >&5 + echo "$as_me:11959: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_timeval="yes" else @@ -11967,7 +11968,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:11970: result: $ac_cv_have_struct_timeval" >&5 +echo "$as_me:11971: 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 <<\_ACEOF @@ -11985,12 +11986,12 @@ NO_SFTP='#' else if test "$cross_compiling" = yes; then - { { echo "$as_me:11988: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:11989: 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 11993 "configure" +#line 11994 "configure" #include "confdefs.h" #include @@ -12018,15 +12019,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:12021: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12022: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12024: \$? = $ac_status" >&5 + echo "$as_me:12025: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:12026: \"$ac_try\"") >&5 + { (eval echo "$as_me:12027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12029: \$? = $ac_status" >&5 + echo "$as_me:12030: \$? = $ac_status" >&5 (exit $ac_status); }; }; then true else @@ -12045,14 +12046,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:12048: checking for ut_host field in utmp.h" >&5 + echo "$as_me:12049: 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 12055 "configure" +#line 12056 "configure" #include "confdefs.h" #include @@ -12069,7 +12070,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12072: result: $ossh_result" >&5 + echo "$as_me:12073: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12078,21 +12079,21 @@ fi else - echo "$as_me:12081: result: no" >&5 + echo "$as_me:12082: 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:12088: checking for ut_host field in utmpx.h" >&5 + echo "$as_me:12089: 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 12095 "configure" +#line 12096 "configure" #include "confdefs.h" #include @@ -12109,7 +12110,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12112: result: $ossh_result" >&5 + echo "$as_me:12113: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12118,21 +12119,21 @@ fi else - echo "$as_me:12121: result: no" >&5 + echo "$as_me:12122: 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:12128: checking for syslen field in utmpx.h" >&5 + echo "$as_me:12129: 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 12135 "configure" +#line 12136 "configure" #include "confdefs.h" #include @@ -12149,7 +12150,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12152: result: $ossh_result" >&5 + echo "$as_me:12153: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12158,21 +12159,21 @@ fi else - echo "$as_me:12161: result: no" >&5 + echo "$as_me:12162: 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:12168: checking for ut_pid field in utmp.h" >&5 + echo "$as_me:12169: 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 12175 "configure" +#line 12176 "configure" #include "confdefs.h" #include @@ -12189,7 +12190,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12192: result: $ossh_result" >&5 + echo "$as_me:12193: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12198,21 +12199,21 @@ fi else - echo "$as_me:12201: result: no" >&5 + echo "$as_me:12202: 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:12208: checking for ut_type field in utmp.h" >&5 + echo "$as_me:12209: 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 12215 "configure" +#line 12216 "configure" #include "confdefs.h" #include @@ -12229,7 +12230,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12232: result: $ossh_result" >&5 + echo "$as_me:12233: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12238,21 +12239,21 @@ fi else - echo "$as_me:12241: result: no" >&5 + echo "$as_me:12242: 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:12248: checking for ut_type field in utmpx.h" >&5 + echo "$as_me:12249: 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 12255 "configure" +#line 12256 "configure" #include "confdefs.h" #include @@ -12269,7 +12270,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12272: result: $ossh_result" >&5 + echo "$as_me:12273: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12278,21 +12279,21 @@ fi else - echo "$as_me:12281: result: no" >&5 + echo "$as_me:12282: 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:12288: checking for ut_tv field in utmp.h" >&5 + echo "$as_me:12289: 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 12295 "configure" +#line 12296 "configure" #include "confdefs.h" #include @@ -12309,7 +12310,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12312: result: $ossh_result" >&5 + echo "$as_me:12313: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12318,21 +12319,21 @@ fi else - echo "$as_me:12321: result: no" >&5 + echo "$as_me:12322: 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:12328: checking for ut_id field in utmp.h" >&5 + echo "$as_me:12329: 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 12335 "configure" +#line 12336 "configure" #include "confdefs.h" #include @@ -12349,7 +12350,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12352: result: $ossh_result" >&5 + echo "$as_me:12353: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12358,21 +12359,21 @@ fi else - echo "$as_me:12361: result: no" >&5 + echo "$as_me:12362: 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:12368: checking for ut_id field in utmpx.h" >&5 + echo "$as_me:12369: 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 12375 "configure" +#line 12376 "configure" #include "confdefs.h" #include @@ -12389,7 +12390,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12392: result: $ossh_result" >&5 + echo "$as_me:12393: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12398,21 +12399,21 @@ fi else - echo "$as_me:12401: result: no" >&5 + echo "$as_me:12402: 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:12408: checking for ut_addr field in utmp.h" >&5 + echo "$as_me:12409: 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 12415 "configure" +#line 12416 "configure" #include "confdefs.h" #include @@ -12429,7 +12430,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12432: result: $ossh_result" >&5 + echo "$as_me:12433: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12438,21 +12439,21 @@ fi else - echo "$as_me:12441: result: no" >&5 + echo "$as_me:12442: 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:12448: checking for ut_addr field in utmpx.h" >&5 + echo "$as_me:12449: 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 12455 "configure" +#line 12456 "configure" #include "confdefs.h" #include @@ -12469,7 +12470,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12472: result: $ossh_result" >&5 + echo "$as_me:12473: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12478,21 +12479,21 @@ fi else - echo "$as_me:12481: result: no" >&5 + echo "$as_me:12482: 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:12488: checking for ut_addr_v6 field in utmp.h" >&5 + echo "$as_me:12489: 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 12495 "configure" +#line 12496 "configure" #include "confdefs.h" #include @@ -12509,7 +12510,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12512: result: $ossh_result" >&5 + echo "$as_me:12513: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12518,21 +12519,21 @@ fi else - echo "$as_me:12521: result: no" >&5 + echo "$as_me:12522: 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:12528: checking for ut_addr_v6 field in utmpx.h" >&5 + echo "$as_me:12529: 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 12535 "configure" +#line 12536 "configure" #include "confdefs.h" #include @@ -12549,7 +12550,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12552: result: $ossh_result" >&5 + echo "$as_me:12553: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12558,21 +12559,21 @@ fi else - echo "$as_me:12561: result: no" >&5 + echo "$as_me:12562: 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:12568: checking for ut_exit field in utmp.h" >&5 + echo "$as_me:12569: 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 12575 "configure" +#line 12576 "configure" #include "confdefs.h" #include @@ -12589,7 +12590,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12592: result: $ossh_result" >&5 + echo "$as_me:12593: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12598,21 +12599,21 @@ fi else - echo "$as_me:12601: result: no" >&5 + echo "$as_me:12602: 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:12608: checking for ut_time field in utmp.h" >&5 + echo "$as_me:12609: 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 12615 "configure" +#line 12616 "configure" #include "confdefs.h" #include @@ -12629,7 +12630,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12632: result: $ossh_result" >&5 + echo "$as_me:12633: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12638,21 +12639,21 @@ fi else - echo "$as_me:12641: result: no" >&5 + echo "$as_me:12642: 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:12648: checking for ut_time field in utmpx.h" >&5 + echo "$as_me:12649: 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 12655 "configure" +#line 12656 "configure" #include "confdefs.h" #include @@ -12669,7 +12670,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12672: result: $ossh_result" >&5 + echo "$as_me:12673: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12678,21 +12679,21 @@ fi else - echo "$as_me:12681: result: no" >&5 + echo "$as_me:12682: 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:12688: checking for ut_tv field in utmpx.h" >&5 + echo "$as_me:12689: 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 12695 "configure" +#line 12696 "configure" #include "confdefs.h" #include @@ -12709,7 +12710,7 @@ ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then - echo "$as_me:12712: result: $ossh_result" >&5 + echo "$as_me:12713: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then cat >>confdefs.h <<\_ACEOF @@ -12718,17 +12719,17 @@ fi else - echo "$as_me:12721: result: no" >&5 + echo "$as_me:12722: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:12725: checking for struct stat.st_blksize" >&5 +echo "$as_me:12726: 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 12731 "configure" +#line 12732 "configure" #include "confdefs.h" $ac_includes_default #ifdef F77_DUMMY_MAIN @@ -12748,16 +12749,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12751: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12752: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12754: \$? = $ac_status" >&5 + echo "$as_me:12755: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12757: \"$ac_try\"") >&5 + { (eval echo "$as_me:12758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12760: \$? = $ac_status" >&5 + echo "$as_me:12761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_member_struct_stat_st_blksize=yes else @@ -12767,7 +12768,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12770: result: $ac_cv_member_struct_stat_st_blksize" >&5 +echo "$as_me:12771: 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 @@ -12777,14 +12778,14 @@ fi -echo "$as_me:12780: checking for ss_family field in struct sockaddr_storage" >&5 +echo "$as_me:12781: 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 12787 "configure" +#line 12788 "configure" #include "confdefs.h" #include @@ -12805,16 +12806,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12808: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12809: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12811: \$? = $ac_status" >&5 + echo "$as_me:12812: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12814: \"$ac_try\"") >&5 + { (eval echo "$as_me:12815: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12817: \$? = $ac_status" >&5 + echo "$as_me:12818: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ss_family_in_struct_ss="yes" else @@ -12825,7 +12826,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12828: result: $ac_cv_have_ss_family_in_struct_ss" >&5 +echo "$as_me:12829: 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 <<\_ACEOF @@ -12834,14 +12835,14 @@ fi -echo "$as_me:12837: checking for __ss_family field in struct sockaddr_storage" >&5 +echo "$as_me:12838: 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 12844 "configure" +#line 12845 "configure" #include "confdefs.h" #include @@ -12862,16 +12863,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12865: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12866: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12868: \$? = $ac_status" >&5 + echo "$as_me:12869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12871: \"$ac_try\"") >&5 + { (eval echo "$as_me:12872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12874: \$? = $ac_status" >&5 + echo "$as_me:12875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have___ss_family_in_struct_ss="yes" else @@ -12883,7 +12884,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12886: result: $ac_cv_have___ss_family_in_struct_ss" >&5 +echo "$as_me:12887: 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 <<\_ACEOF @@ -12892,14 +12893,14 @@ fi -echo "$as_me:12895: checking for pw_class field in struct passwd" >&5 +echo "$as_me:12896: 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 12902 "configure" +#line 12903 "configure" #include "confdefs.h" #include @@ -12919,16 +12920,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12922: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12923: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12925: \$? = $ac_status" >&5 + echo "$as_me:12926: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12928: \"$ac_try\"") >&5 + { (eval echo "$as_me:12929: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12931: \$? = $ac_status" >&5 + echo "$as_me:12932: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_class_in_struct_passwd="yes" else @@ -12940,7 +12941,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:12943: result: $ac_cv_have_pw_class_in_struct_passwd" >&5 +echo "$as_me:12944: 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 <<\_ACEOF @@ -12949,14 +12950,14 @@ fi -echo "$as_me:12952: checking for pw_expire field in struct passwd" >&5 +echo "$as_me:12953: 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 12959 "configure" +#line 12960 "configure" #include "confdefs.h" #include @@ -12976,16 +12977,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12980: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12982: \$? = $ac_status" >&5 + echo "$as_me:12983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12985: \"$ac_try\"") >&5 + { (eval echo "$as_me:12986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12988: \$? = $ac_status" >&5 + echo "$as_me:12989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_expire_in_struct_passwd="yes" else @@ -12997,7 +12998,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13000: result: $ac_cv_have_pw_expire_in_struct_passwd" >&5 +echo "$as_me:13001: 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 <<\_ACEOF @@ -13006,14 +13007,14 @@ fi -echo "$as_me:13009: checking for pw_change field in struct passwd" >&5 +echo "$as_me:13010: 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 13016 "configure" +#line 13017 "configure" #include "confdefs.h" #include @@ -13033,16 +13034,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13036: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13037: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13039: \$? = $ac_status" >&5 + echo "$as_me:13040: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13042: \"$ac_try\"") >&5 + { (eval echo "$as_me:13043: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13045: \$? = $ac_status" >&5 + echo "$as_me:13046: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_change_in_struct_passwd="yes" else @@ -13054,7 +13055,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:13057: result: $ac_cv_have_pw_change_in_struct_passwd" >&5 +echo "$as_me:13058: 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 <<\_ACEOF @@ -13063,14 +13064,14 @@ fi -echo "$as_me:13066: checking if libc defines __progname" >&5 +echo "$as_me:13067: 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 13073 "configure" +#line 13074 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -13088,16 +13089,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13091: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13092: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13094: \$? = $ac_status" >&5 + echo "$as_me:13095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13097: \"$ac_try\"") >&5 + { (eval echo "$as_me:13098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13100: \$? = $ac_status" >&5 + echo "$as_me:13101: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines___progname="yes" else @@ -13109,7 +13110,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13112: result: $ac_cv_libc_defines___progname" >&5 +echo "$as_me:13113: 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 <<\_ACEOF @@ -13118,14 +13119,14 @@ fi -echo "$as_me:13121: checking whether getopt has optreset support" >&5 +echo "$as_me:13122: 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 13128 "configure" +#line 13129 "configure" #include "confdefs.h" #include @@ -13145,16 +13146,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13148: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13149: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13151: \$? = $ac_status" >&5 + echo "$as_me:13152: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13154: \"$ac_try\"") >&5 + { (eval echo "$as_me:13155: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13157: \$? = $ac_status" >&5 + echo "$as_me:13158: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_getopt_optreset="yes" else @@ -13166,7 +13167,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13169: result: $ac_cv_have_getopt_optreset" >&5 +echo "$as_me:13170: 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 <<\_ACEOF @@ -13175,14 +13176,14 @@ fi -echo "$as_me:13178: checking if libc defines sys_errlist" >&5 +echo "$as_me:13179: 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 13185 "configure" +#line 13186 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -13200,16 +13201,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13203: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13204: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13206: \$? = $ac_status" >&5 + echo "$as_me:13207: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13209: \"$ac_try\"") >&5 + { (eval echo "$as_me:13210: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13212: \$? = $ac_status" >&5 + echo "$as_me:13213: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines_sys_errlist="yes" else @@ -13221,7 +13222,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13224: result: $ac_cv_libc_defines_sys_errlist" >&5 +echo "$as_me:13225: 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 <<\_ACEOF @@ -13230,14 +13231,14 @@ fi -echo "$as_me:13233: checking if libc defines sys_nerr" >&5 +echo "$as_me:13234: 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 13240 "configure" +#line 13241 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -13255,16 +13256,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13258: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13259: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13261: \$? = $ac_status" >&5 + echo "$as_me:13262: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13264: \"$ac_try\"") >&5 + { (eval echo "$as_me:13265: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13267: \$? = $ac_status" >&5 + echo "$as_me:13268: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines_sys_nerr="yes" else @@ -13276,7 +13277,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:13279: result: $ac_cv_libc_defines_sys_nerr" >&5 +echo "$as_me:13280: 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 <<\_ACEOF @@ -13308,34 +13309,34 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:13311: checking for $ac_header" >&5 + echo "$as_me:13312: 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 fi -echo "$as_me:13316: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:13317: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? -echo "$as_me:13320: checking $ac_header usability" >&5 +echo "$as_me:13321: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13323 "configure" +#line 13324 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13329: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13330: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13332: \$? = $ac_status" >&5 + echo "$as_me:13333: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13335: \"$ac_try\"") >&5 + { (eval echo "$as_me:13336: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13338: \$? = $ac_status" >&5 + echo "$as_me:13339: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else @@ -13344,24 +13345,24 @@ ac_header_compiler=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:13347: result: $ac_header_compiler" >&5 +echo "$as_me:13348: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? -echo "$as_me:13351: checking $ac_header presence" >&5 +echo "$as_me:13352: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13354 "configure" +#line 13355 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:13358: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:13359: \"$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:13364: \$? = $ac_status" >&5 + echo "$as_me:13365: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -13379,32 +13380,32 @@ ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext -echo "$as_me:13382: result: $ac_header_preproc" >&5 +echo "$as_me:13383: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc in yes:no ) - { echo "$as_me:13388: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 + { echo "$as_me:13389: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:13390: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:13391: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; no:yes ) - { echo "$as_me:13393: WARNING: $ac_header: present but cannot be compiled." >&5 + { echo "$as_me:13394: WARNING: $ac_header: present but cannot be compiled." >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:13395: WARNING: $ac_header: check for missing prerequisite headers?" >&5 + { echo "$as_me:13396: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:13397: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:13398: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; esac -echo "$as_me:13400: checking for $ac_header" >&5 +echo "$as_me:13401: 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 eval "$as_ac_Header=$ac_header_preproc" fi -echo "$as_me:13407: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:13408: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi @@ -13418,12 +13419,12 @@ done if test "$ac_cv_header_sectok_h" != yes; then - { { echo "$as_me:13421: error: Can't find sectok.h" >&5 + { { echo "$as_me:13422: 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:13426: checking for sectok_open in -lsectok" >&5 +echo "$as_me:13427: 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 @@ -13431,7 +13432,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lsectok $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13434 "configure" +#line 13435 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13456,16 +13457,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13459: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13460: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13462: \$? = $ac_status" >&5 + echo "$as_me:13463: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13465: \"$ac_try\"") >&5 + { (eval echo "$as_me:13466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13468: \$? = $ac_status" >&5 + echo "$as_me:13469: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_sectok_sectok_open=yes else @@ -13476,7 +13477,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13479: result: $ac_cv_lib_sectok_sectok_open" >&5 +echo "$as_me:13480: 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 <<_ACEOF @@ -13488,7 +13489,7 @@ fi if test "$ac_cv_lib_sectok_sectok_open" != yes; then - { { echo "$as_me:13491: error: Can't find libsectok" >&5 + { { echo "$as_me:13492: error: Can't find libsectok" >&5 echo "$as_me: error: Can't find libsectok" >&2;} { (exit 1); exit 1; }; } fi @@ -13528,34 +13529,34 @@ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:13531: checking for $ac_header" >&5 + echo "$as_me:13532: 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 fi -echo "$as_me:13536: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:13537: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? -echo "$as_me:13540: checking $ac_header usability" >&5 +echo "$as_me:13541: checking $ac_header usability" >&5 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13543 "configure" +#line 13544 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13549: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13550: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13552: \$? = $ac_status" >&5 + echo "$as_me:13553: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13555: \"$ac_try\"") >&5 + { (eval echo "$as_me:13556: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13558: \$? = $ac_status" >&5 + echo "$as_me:13559: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_header_compiler=yes else @@ -13564,24 +13565,24 @@ ac_header_compiler=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:13567: result: $ac_header_compiler" >&5 +echo "$as_me:13568: result: $ac_header_compiler" >&5 echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? -echo "$as_me:13571: checking $ac_header presence" >&5 +echo "$as_me:13572: checking $ac_header presence" >&5 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13574 "configure" +#line 13575 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:13578: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:13579: \"$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:13584: \$? = $ac_status" >&5 + echo "$as_me:13585: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -13599,32 +13600,32 @@ ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext -echo "$as_me:13602: result: $ac_header_preproc" >&5 +echo "$as_me:13603: result: $ac_header_preproc" >&5 echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc in yes:no ) - { echo "$as_me:13608: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 + { echo "$as_me:13609: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:13610: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:13611: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; no:yes ) - { echo "$as_me:13613: WARNING: $ac_header: present but cannot be compiled." >&5 + { echo "$as_me:13614: WARNING: $ac_header: present but cannot be compiled." >&5 echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:13615: WARNING: $ac_header: check for missing prerequisite headers?" >&5 + { echo "$as_me:13616: WARNING: $ac_header: check for missing prerequisite headers?" >&5 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:13617: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 + { echo "$as_me:13618: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};; esac -echo "$as_me:13620: checking for $ac_header" >&5 +echo "$as_me:13621: 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 eval "$as_ac_Header=$ac_header_preproc" fi -echo "$as_me:13627: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:13628: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi @@ -13638,11 +13639,11 @@ done if test "$ac_cv_header_krb_h" != yes; then - { echo "$as_me:13641: WARNING: Cannot find krb.h, build may fail" >&5 + { echo "$as_me:13642: WARNING: Cannot find krb.h, build may fail" >&5 echo "$as_me: WARNING: Cannot find krb.h, build may fail" >&2;} fi -echo "$as_me:13645: checking for main in -lkrb" >&5 +echo "$as_me:13646: checking for main in -lkrb" >&5 echo $ECHO_N "checking for main in -lkrb... $ECHO_C" >&6 if test "${ac_cv_lib_krb_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13650,7 +13651,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lkrb $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13653 "configure" +#line 13654 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -13668,16 +13669,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13671: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13672: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13674: \$? = $ac_status" >&5 + echo "$as_me:13675: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13677: \"$ac_try\"") >&5 + { (eval echo "$as_me:13678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13680: \$? = $ac_status" >&5 + echo "$as_me:13681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_krb_main=yes else @@ -13688,7 +13689,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13691: result: $ac_cv_lib_krb_main" >&5 +echo "$as_me:13692: result: $ac_cv_lib_krb_main" >&5 echo "${ECHO_T}$ac_cv_lib_krb_main" >&6 if test $ac_cv_lib_krb_main = yes; then cat >>confdefs.h <<_ACEOF @@ -13701,7 +13702,7 @@ if test "$ac_cv_lib_krb_main" != yes; then -echo "$as_me:13704: checking for main in -lkrb4" >&5 +echo "$as_me:13705: checking for main in -lkrb4" >&5 echo $ECHO_N "checking for main in -lkrb4... $ECHO_C" >&6 if test "${ac_cv_lib_krb4_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13709,7 +13710,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lkrb4 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13712 "configure" +#line 13713 "configure" #include "confdefs.h" #ifdef F77_DUMMY_MAIN @@ -13727,16 +13728,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13730: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13731: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13733: \$? = $ac_status" >&5 + echo "$as_me:13734: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13736: \"$ac_try\"") >&5 + { (eval echo "$as_me:13737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13739: \$? = $ac_status" >&5 + echo "$as_me:13740: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_krb4_main=yes else @@ -13747,7 +13748,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13750: result: $ac_cv_lib_krb4_main" >&5 +echo "$as_me:13751: result: $ac_cv_lib_krb4_main" >&5 echo "${ECHO_T}$ac_cv_lib_krb4_main" >&6 if test $ac_cv_lib_krb4_main = yes; then cat >>confdefs.h <<_ACEOF @@ -13759,7 +13760,7 @@ fi if test "$ac_cv_lib_krb4_main" != yes; then - { echo "$as_me:13762: WARNING: Cannot find libkrb nor libkrb4, build may fail" >&5 + { echo "$as_me:13763: WARNING: Cannot find libkrb nor libkrb4, build may fail" >&5 echo "$as_me: WARNING: Cannot find libkrb nor libkrb4, build may fail" >&2;} else KLIBS="-lkrb4" @@ -13768,7 +13769,7 @@ KLIBS="-lkrb" fi -echo "$as_me:13771: checking for des_cbc_encrypt in -ldes" >&5 +echo "$as_me:13772: checking for des_cbc_encrypt in -ldes" >&5 echo $ECHO_N "checking for des_cbc_encrypt in -ldes... $ECHO_C" >&6 if test "${ac_cv_lib_des_des_cbc_encrypt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13776,7 +13777,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldes $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13779 "configure" +#line 13780 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13801,16 +13802,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13804: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13805: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13807: \$? = $ac_status" >&5 + echo "$as_me:13808: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13810: \"$ac_try\"") >&5 + { (eval echo "$as_me:13811: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13813: \$? = $ac_status" >&5 + echo "$as_me:13814: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_des_des_cbc_encrypt=yes else @@ -13821,7 +13822,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13824: result: $ac_cv_lib_des_des_cbc_encrypt" >&5 +echo "$as_me:13825: result: $ac_cv_lib_des_des_cbc_encrypt" >&5 echo "${ECHO_T}$ac_cv_lib_des_des_cbc_encrypt" >&6 if test $ac_cv_lib_des_des_cbc_encrypt = yes; then cat >>confdefs.h <<_ACEOF @@ -13834,7 +13835,7 @@ if test "$ac_cv_lib_des_des_cbc_encrypt" != yes; then -echo "$as_me:13837: checking for des_cbc_encrypt in -ldes425" >&5 +echo "$as_me:13838: checking for des_cbc_encrypt in -ldes425" >&5 echo $ECHO_N "checking for des_cbc_encrypt in -ldes425... $ECHO_C" >&6 if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13842,7 +13843,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-ldes425 $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13845 "configure" +#line 13846 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13867,16 +13868,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13870: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13871: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13873: \$? = $ac_status" >&5 + echo "$as_me:13874: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13876: \"$ac_try\"") >&5 + { (eval echo "$as_me:13877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13879: \$? = $ac_status" >&5 + echo "$as_me:13880: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_des425_des_cbc_encrypt=yes else @@ -13887,7 +13888,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13890: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5 +echo "$as_me:13891: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5 echo "${ECHO_T}$ac_cv_lib_des425_des_cbc_encrypt" >&6 if test $ac_cv_lib_des425_des_cbc_encrypt = yes; then cat >>confdefs.h <<_ACEOF @@ -13899,7 +13900,7 @@ fi if test "$ac_cv_lib_des425_des_cbc_encrypt" != yes; then - { echo "$as_me:13902: WARNING: Cannot find libdes nor libdes425, build may fail" >&5 + { echo "$as_me:13903: WARNING: Cannot find libdes nor libdes425, build may fail" >&5 echo "$as_me: WARNING: Cannot find libdes nor libdes425, build may fail" >&2;} else KLIBS="-ldes425" @@ -13908,7 +13909,7 @@ KLIBS="-ldes" fi -echo "$as_me:13911: checking for dn_expand in -lresolv" >&5 +echo "$as_me:13912: checking for dn_expand in -lresolv" >&5 echo $ECHO_N "checking for dn_expand in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_dn_expand+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -13916,7 +13917,7 @@ ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 13919 "configure" +#line 13920 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -13941,16 +13942,16 @@ } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13944: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13945: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13947: \$? = $ac_status" >&5 + echo "$as_me:13948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13950: \"$ac_try\"") >&5 + { (eval echo "$as_me:13951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13953: \$? = $ac_status" >&5 + echo "$as_me:13954: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_dn_expand=yes else @@ -13961,7 +13962,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:13964: result: $ac_cv_lib_resolv_dn_expand" >&5 +echo "$as_me:13965: result: $ac_cv_lib_resolv_dn_expand" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_dn_expand" >&6 if test $ac_cv_lib_resolv_dn_expand = yes; then cat >>confdefs.h <<_ACEOF @@ -13997,7 +13998,7 @@ fi if test -z "$KRB4" ; then - { echo "$as_me:14000: WARNING: AFS requires Kerberos IV support, build may fail" >&5 + { echo "$as_me:14001: WARNING: AFS requires Kerberos IV support, build may fail" >&5 echo "$as_me: WARNING: AFS requires Kerberos IV support, build may fail" >&2;} fi @@ -14029,7 +14030,7 @@ # Extract the first word of "rsh", so it can be a program name with args. set dummy rsh; ac_word=$2 -echo "$as_me:14032: checking for $ac_word" >&5 +echo "$as_me:14033: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_rsh_path+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14046,7 +14047,7 @@ test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_rsh_path="$ac_dir/$ac_word" - echo "$as_me:14049: found $ac_dir/$ac_word" >&5 + echo "$as_me:14050: found $ac_dir/$ac_word" >&5 break fi done @@ -14057,10 +14058,10 @@ rsh_path=$ac_cv_path_rsh_path if test -n "$rsh_path"; then - echo "$as_me:14060: result: $rsh_path" >&5 + echo "$as_me:14061: result: $rsh_path" >&5 echo "${ECHO_T}$rsh_path" >&6 else - echo "$as_me:14063: result: no" >&5 + echo "$as_me:14064: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -14078,7 +14079,7 @@ # Extract the first word of "xauth", so it can be a program name with args. set dummy xauth; ac_word=$2 -echo "$as_me:14081: checking for $ac_word" >&5 +echo "$as_me:14082: 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 @@ -14095,7 +14096,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:14098: found $ac_dir/$ac_word" >&5 + echo "$as_me:14099: found $ac_dir/$ac_word" >&5 break fi done @@ -14106,10 +14107,10 @@ xauth_path=$ac_cv_path_xauth_path if test -n "$xauth_path"; then - echo "$as_me:14109: result: $xauth_path" >&5 + echo "$as_me:14110: result: $xauth_path" >&5 echo "${ECHO_T}$xauth_path" >&6 else - echo "$as_me:14112: result: no" >&5 + echo "$as_me:14113: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -14147,13 +14148,13 @@ fi if test -z "$no_dev_ptmx" ; then - echo "$as_me:14150: checking for \"/dev/ptmx\"" >&5 + echo "$as_me:14151: 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:14156: error: cannot check for file existence when cross compiling" >&5 + { { echo "$as_me:14157: 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 @@ -14162,7 +14163,7 @@ ac_cv_file___dev_ptmx_=no fi fi -echo "$as_me:14165: result: $ac_cv_file___dev_ptmx_" >&5 +echo "$as_me:14166: 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 @@ -14175,13 +14176,13 @@ fi fi -echo "$as_me:14178: checking for \"/dev/ptc\"" >&5 +echo "$as_me:14179: 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:14184: error: cannot check for file existence when cross compiling" >&5 + { { echo "$as_me:14185: 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 @@ -14190,7 +14191,7 @@ ac_cv_file___dev_ptc_=no fi fi -echo "$as_me:14193: result: $ac_cv_file___dev_ptc_" >&5 +echo "$as_me:14194: 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 @@ -14213,7 +14214,7 @@ MANTYPE=$withval ;; *) - { { echo "$as_me:14216: error: invalid man type: $withval" >&5 + { { echo "$as_me:14217: error: invalid man type: $withval" >&5 echo "$as_me: error: invalid man type: $withval" >&2;} { (exit 1); exit 1; }; } ;; @@ -14225,7 +14226,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:14228: checking for $ac_word" >&5 +echo "$as_me:14229: 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 @@ -14242,7 +14243,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:14245: found $ac_dir/$ac_word" >&5 + echo "$as_me:14246: found $ac_dir/$ac_word" >&5 break fi done @@ -14253,10 +14254,10 @@ NROFF=$ac_cv_path_NROFF if test -n "$NROFF"; then - echo "$as_me:14256: result: $NROFF" >&5 + echo "$as_me:14257: result: $NROFF" >&5 echo "${ECHO_T}$NROFF" >&6 else - echo "$as_me:14259: result: no" >&5 + echo "$as_me:14260: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -14313,10 +14314,10 @@ fi; if test -z "$disable_shadow" ; then - echo "$as_me:14316: checking if the systems has expire shadow information" >&5 + echo "$as_me:14317: 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 14319 "configure" +#line 14320 "configure" #include "confdefs.h" #include @@ -14338,16 +14339,16 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14341: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14342: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14344: \$? = $ac_status" >&5 + echo "$as_me:14345: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14347: \"$ac_try\"") >&5 + { (eval echo "$as_me:14348: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14350: \$? = $ac_status" >&5 + echo "$as_me:14351: \$? = $ac_status" >&5 (exit $ac_status); }; }; then sp_expire_available=yes else @@ -14358,14 +14359,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "x$sp_expire_available" = "xyes" ; then - echo "$as_me:14361: result: yes" >&5 + echo "$as_me:14362: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define HAS_SHADOW_EXPIRE 1 _ACEOF else - echo "$as_me:14368: result: no" >&5 + echo "$as_me:14369: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi @@ -14414,7 +14415,7 @@ else cat >conftest.$ac_ext <<_ACEOF -#line 14417 "configure" +#line 14418 "configure" #include "confdefs.h" /* find out what STDPATH is */ @@ -14447,15 +14448,15 @@ _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:14450: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14453: \$? = $ac_status" >&5 + echo "$as_me:14454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:14455: \"$ac_try\"") >&5 + { (eval echo "$as_me:14456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14458: \$? = $ac_status" >&5 + echo "$as_me:14459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then user_path=`cat conftest.stdpath` else @@ -14479,7 +14480,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:14482: result: Adding $t_bindir to USER_PATH so scp will work" >&5 + echo "$as_me:14483: 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 @@ -14506,7 +14507,7 @@ fi; -echo "$as_me:14509: checking if we need to convert IPv4 in IPv6-mapped addresses" >&5 +echo "$as_me:14510: 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" @@ -14515,7 +14516,7 @@ withval="$with_4in6" if test "x$withval" != "xno" ; then - echo "$as_me:14518: result: yes" >&5 + echo "$as_me:14519: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define IPV4_IN_IPV6 1 @@ -14523,14 +14524,14 @@ IPV4_IN6_HACK_MSG="yes" else - echo "$as_me:14526: result: no" >&5 + echo "$as_me:14527: result: no" >&5 echo "${ECHO_T}no" >&6 fi else if test "x$inet6_default_4in6" = "xyes"; then - echo "$as_me:14533: result: yes (default)" >&5 + echo "$as_me:14534: result: yes (default)" >&5 echo "${ECHO_T}yes (default)" >&6 cat >>confdefs.h <<\_ACEOF #define IPV4_IN_IPV6 1 @@ -14538,7 +14539,7 @@ IPV4_IN6_HACK_MSG="yes" else - echo "$as_me:14541: result: no (default)" >&5 + echo "$as_me:14542: result: no (default)" >&5 echo "${ECHO_T}no (default)" >&6 fi @@ -14561,29 +14562,46 @@ fi; -echo "$as_me:14564: checking whether to install ssh as suid root" >&5 +echo "$as_me:14565: checking whether to install ssh as suid root" >&5 echo $ECHO_N "checking whether to install ssh as suid root... $ECHO_C" >&6 # Check whether --enable-suid-ssh or --disable-suid-ssh was given. if test "${enable_suid_ssh+set}" = set; then enableval="$enable_suid_ssh" case "$enableval" in no) - echo "$as_me:14571: result: no" >&5 + echo "$as_me:14572: result: no" >&5 echo "${ECHO_T}no" >&6 SSHMODE=0711 ;; - *) echo "$as_me:14575: result: yes" >&5 + *) echo "$as_me:14576: result: yes" >&5 echo "${ECHO_T}yes" >&6 SSHMODE=4711 ;; esac else - echo "$as_me:14581: result: yes" >&5 + echo "$as_me:14582: result: yes" >&5 echo "${ECHO_T}yes" >&6 SSHMODE=4711 fi; +# Where to place ssh CA root +sshcadir='${sysconfdir}/ca' + +# Check whether --with-sshca-dir or --without-sshca-dir was given. +if test "${with_sshca_dir+set}" = set; then + withval="$with_sshca_dir" + + if test "x$withval" != "xno" ; then + sshcadir=$withval + fi + +fi; + +cat >>confdefs.h <<_ACEOF +#define SSHCADIR "$sshcadir" +_ACEOF + # Where to place sshd.pid piddir=/var/run @@ -14689,10 +14707,10 @@ fi; -echo "$as_me:14692: checking if your system defines LASTLOG_FILE" >&5 +echo "$as_me:14710: 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 14695 "configure" +#line 14713 "configure" #include "confdefs.h" #include @@ -14722,29 +14740,29 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14725: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14743: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14728: \$? = $ac_status" >&5 + echo "$as_me:14746: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14731: \"$ac_try\"") >&5 + { (eval echo "$as_me:14749: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14734: \$? = $ac_status" >&5 + echo "$as_me:14752: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:14736: result: yes" >&5 + echo "$as_me:14754: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:14742: result: no" >&5 + echo "$as_me:14760: result: no" >&5 echo "${ECHO_T}no" >&6 - echo "$as_me:14744: checking if your system defines _PATH_LASTLOG" >&5 + echo "$as_me:14762: 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 14747 "configure" +#line 14765 "configure" #include "confdefs.h" #include @@ -14771,24 +14789,24 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14774: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14792: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14777: \$? = $ac_status" >&5 + echo "$as_me:14795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14780: \"$ac_try\"") >&5 + { (eval echo "$as_me:14798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14783: \$? = $ac_status" >&5 + echo "$as_me:14801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:14785: result: yes" >&5 + echo "$as_me:14803: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:14791: result: no" >&5 + echo "$as_me:14809: result: no" >&5 echo "${ECHO_T}no" >&6 system_lastlog_path=no @@ -14806,7 +14824,7 @@ fi done if test -z "$conf_lastlog_location"; then - { echo "$as_me:14809: WARNING: ** Cannot find lastlog **" >&5 + { echo "$as_me:14827: WARNING: ** Cannot find lastlog **" >&5 echo "$as_me: WARNING: ** Cannot find lastlog **" >&2;} fi fi @@ -14819,10 +14837,10 @@ fi -echo "$as_me:14822: checking if your system defines UTMP_FILE" >&5 +echo "$as_me:14840: 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 14825 "configure" +#line 14843 "configure" #include "confdefs.h" #include @@ -14846,23 +14864,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14849: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14867: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14852: \$? = $ac_status" >&5 + echo "$as_me:14870: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14855: \"$ac_try\"") >&5 + { (eval echo "$as_me:14873: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14858: \$? = $ac_status" >&5 + echo "$as_me:14876: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:14860: result: yes" >&5 + echo "$as_me:14878: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:14865: result: no" >&5 + echo "$as_me:14883: result: no" >&5 echo "${ECHO_T}no" >&6 system_utmp_path=no @@ -14890,10 +14908,10 @@ fi -echo "$as_me:14893: checking if your system defines WTMP_FILE" >&5 +echo "$as_me:14911: 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 14896 "configure" +#line 14914 "configure" #include "confdefs.h" #include @@ -14917,23 +14935,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14920: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14938: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14923: \$? = $ac_status" >&5 + echo "$as_me:14941: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14926: \"$ac_try\"") >&5 + { (eval echo "$as_me:14944: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14929: \$? = $ac_status" >&5 + echo "$as_me:14947: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:14931: result: yes" >&5 + echo "$as_me:14949: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:14936: result: no" >&5 + echo "$as_me:14954: result: no" >&5 echo "${ECHO_T}no" >&6 system_wtmp_path=no @@ -14961,10 +14979,10 @@ fi -echo "$as_me:14964: checking if your system defines UTMPX_FILE" >&5 +echo "$as_me:14982: 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 14967 "configure" +#line 14985 "configure" #include "confdefs.h" #include @@ -14991,23 +15009,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14994: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15012: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14997: \$? = $ac_status" >&5 + echo "$as_me:15015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15000: \"$ac_try\"") >&5 + { (eval echo "$as_me:15018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15003: \$? = $ac_status" >&5 + echo "$as_me:15021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:15005: result: yes" >&5 + echo "$as_me:15023: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:15010: result: no" >&5 + echo "$as_me:15028: result: no" >&5 echo "${ECHO_T}no" >&6 system_utmpx_path=no @@ -15027,10 +15045,10 @@ fi -echo "$as_me:15030: checking if your system defines WTMPX_FILE" >&5 +echo "$as_me:15048: 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 15033 "configure" +#line 15051 "configure" #include "confdefs.h" #include @@ -15057,23 +15075,23 @@ } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15060: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15078: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15063: \$? = $ac_status" >&5 + echo "$as_me:15081: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15066: \"$ac_try\"") >&5 + { (eval echo "$as_me:15084: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15069: \$? = $ac_status" >&5 + echo "$as_me:15087: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:15071: result: yes" >&5 + echo "$as_me:15089: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - echo "$as_me:15076: result: no" >&5 + echo "$as_me:15094: result: no" >&5 echo "${ECHO_T}no" >&6 system_wtmpx_path=no @@ -15095,7 +15113,7 @@ if test ! -z "$blibpath" ; then LDFLAGS="$LDFLAGS -blibpath:$blibpath" - { echo "$as_me:15098: WARNING: Please check and edit -blibpath in LDFLAGS in Makefile" >&5 + { echo "$as_me:15116: 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 @@ -15106,7 +15124,7 @@ LIBS=`echo $LIBS | sed 's/-ldl //'` fi -ac_config_files="$ac_config_files Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds" +ac_config_files="$ac_config_files Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds tests/CA/config" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -15187,7 +15205,7 @@ : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:15190: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:15208: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -15387,7 +15405,7 @@ echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:15390: error: ambiguous option: $1 + { { echo "$as_me:15408: 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;} @@ -15406,7 +15424,7 @@ ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:15409: error: unrecognized option: $1 + -*) { { echo "$as_me:15427: 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;} @@ -15429,8 +15447,9 @@ "openbsd-compat/Makefile" ) CONFIG_FILES="$CONFIG_FILES openbsd-compat/Makefile" ;; "scard/Makefile" ) CONFIG_FILES="$CONFIG_FILES scard/Makefile" ;; "ssh_prng_cmds" ) CONFIG_FILES="$CONFIG_FILES ssh_prng_cmds" ;; + "tests/CA/config" ) CONFIG_FILES="$CONFIG_FILES tests/CA/config" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - *) { { echo "$as_me:15433: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:15452: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -15568,6 +15587,7 @@ s,@mansubdir@,$mansubdir,;t t s,@user_path@,$user_path,;t t s,@SSHMODE@,$SSHMODE,;t t +s,@sshcadir@,$sshcadir,;t t s,@piddir@,$piddir,;t t CEOF @@ -15651,7 +15671,7 @@ as_incr_dir=$as_incr_dir/$as_mkdir_dir test -d "$as_incr_dir" || mkdir "$as_incr_dir" || - { { echo "$as_me:15654: error: cannot create \"$ac_dir\"" >&5 + { { echo "$as_me:15674: error: cannot create \"$ac_dir\"" >&5 echo "$as_me: error: cannot create \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -15688,7 +15708,7 @@ esac if test x"$ac_file" != x-; then - { echo "$as_me:15691: creating $ac_file" >&5 + { echo "$as_me:15711: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -15706,7 +15726,7 @@ -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:15709: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:15729: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -15719,7 +15739,7 @@ echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:15722: error: cannot find input file: $f" >&5 + { { echo "$as_me:15742: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -15780,7 +15800,7 @@ * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:15783: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:15803: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -15791,7 +15811,7 @@ -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:15794: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:15814: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -15804,7 +15824,7 @@ echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:15807: error: cannot find input file: $f" >&5 + { { echo "$as_me:15827: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -15921,7 +15941,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:15924: $ac_file is unchanged" >&5 + { echo "$as_me:15944: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ @@ -15948,7 +15968,7 @@ as_incr_dir=$as_incr_dir/$as_mkdir_dir test -d "$as_incr_dir" || mkdir "$as_incr_dir" || - { { echo "$as_me:15951: error: cannot create \"$ac_dir\"" >&5 + { { echo "$as_me:15971: error: cannot create \"$ac_dir\"" >&5 echo "$as_me: error: cannot create \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -16001,12 +16021,14 @@ F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}` G=`eval echo ${piddir}` ; G=`eval echo ${G}` H=`eval echo ${user_path}` ; H=`eval echo ${H}` +I=`eval echo ${sshcadir}` ; I=`eval echo ${I}` echo "" echo "OpenSSH has been configured with the following options:" echo " User binaries: $B" echo " System binaries: $C" echo " Configuration files: $D" +echo " CA root: $I" echo " Askpass program: $E" echo " Manual pages: $F" echo " PID file: $G" diff -urP --exclude-from=exclude.list openssh-3.1p1/configure.ac openssh-3.1p1+x509c/configure.ac --- openssh-3.1p1/configure.ac Wed Feb 27 08:12:35 2002 +++ openssh-3.1p1+x509c/configure.ac Fri Jun 14 18:58:56 2002 @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.23 2002/02/27 06:12:35 tim Exp $ +# $Id$ AC_INIT AC_CONFIG_SRCDIR([ssh.c]) @@ -2005,6 +2005,21 @@ AC_SUBST(SSHMODE) +# Where to place ssh CA root +sshcadir='${sysconfdir}/ca' +AC_ARG_WITH(sshca-dir, + [ --with-sshca-dir=PATH Specify location of ssh CA root], + [ + if test "x$withval" != "xno" ; then + sshcadir=$withval + fi + ] +) + +AC_DEFINE_UNQUOTED(SSHCADIR, "$sshcadir") +AC_SUBST(sshcadir) + + # Where to place sshd.pid piddir=/var/run AC_ARG_WITH(pid-dir, @@ -2262,7 +2277,7 @@ fi AC_EXEEXT -AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds]) +AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds tests/CA/config]) AC_OUTPUT # Print summary of options @@ -2276,12 +2291,14 @@ F=`eval echo ${mandir}/${mansubdir}X` ; F=`eval echo ${F}` G=`eval echo ${piddir}` ; G=`eval echo ${G}` H=`eval echo ${user_path}` ; H=`eval echo ${H}` +I=`eval echo ${sshcadir}` ; I=`eval echo ${I}` echo "" echo "OpenSSH has been configured with the following options:" echo " User binaries: $B" echo " System binaries: $C" echo " Configuration files: $D" +echo " CA root: $I" echo " Askpass program: $E" echo " Manual pages: $F" echo " PID file: $G" diff -urP --exclude-from=exclude.list openssh-3.1p1/key.c openssh-3.1p1+x509c/key.c --- openssh-3.1p1/key.c Tue Mar 5 03:33:38 2002 +++ openssh-3.1p1+x509c/key.c Fri Jun 14 18:58:56 2002 @@ -41,6 +41,7 @@ #include "rsa.h" #include "ssh-dss.h" #include "ssh-rsa.h" +#include "ssh-x509.h" #include "uuencode.h" #include "buffer.h" #include "bufaux.h" @@ -57,6 +58,7 @@ k->flags = 0; k->dsa = NULL; k->rsa = NULL; + k->x509 = NULL; switch (k->type) { case KEY_RSA1: case KEY_RSA: @@ -81,6 +83,11 @@ fatal("key_new: BN_new failed"); k->dsa = dsa; break; + case KEY_X509_RSA: + case KEY_X509_DSA: + k->x509 = X509_new(); + debug ("key_new: KEY_X509_XXX - more ... ?"); + break; case KEY_UNSPEC: break; default: @@ -135,6 +142,21 @@ DSA_free(k->dsa); k->dsa = NULL; break; + case KEY_X509_RSA: + case KEY_X509_DSA: + if (k->dsa != NULL) { + DSA_free(k->dsa); + k->dsa = NULL; + } + if (k->rsa != NULL) { + RSA_free(k->rsa); + k->rsa = NULL; + } + if (k->x509 != NULL) { + X509_free(k->x509); + k->x509 = NULL; + } + break; case KEY_UNSPEC: break; default: @@ -149,12 +171,24 @@ if (a == NULL || b == NULL || a->type != b->type) return 0; switch (a->type) { + case KEY_X509_RSA: + if(a->rsa == NULL || b->rsa == NULL) { + return X509_subject_name_cmp(a->x509, b->x509) == 0; + break; + } + /* no break !!!*/ case KEY_RSA1: case KEY_RSA: return a->rsa != NULL && b->rsa != NULL && BN_cmp(a->rsa->e, b->rsa->e) == 0 && BN_cmp(a->rsa->n, b->rsa->n) == 0; break; + case KEY_X509_DSA: + if(a->dsa == NULL || b->dsa == NULL) { + return X509_subject_name_cmp(a->x509, b->x509) == 0; + break; + } + /* no break !!!*/ case KEY_DSA: return a->dsa != NULL && b->dsa != NULL && BN_cmp(a->dsa->p, b->dsa->p) == 0 && @@ -203,6 +237,8 @@ break; case KEY_DSA: case KEY_RSA: + case KEY_X509_RSA: /*XXX*/ + case KEY_X509_DSA: /*XXX*/ key_to_blob(k, &blob, &len); break; case KEY_UNSPEC: @@ -405,6 +441,8 @@ case KEY_UNSPEC: case KEY_RSA: case KEY_DSA: + case KEY_X509_RSA: + case KEY_X509_DSA: space = strchr(cp, ' '); if (space == NULL) { debug3("key_read: no space"); @@ -429,6 +467,9 @@ debug3("key_read: type mismatch"); return -1; } + k = x509key_from_subject(type, cp); + if(k != NULL) + goto noblob; len = 2*strlen(cp); blob = xmalloc(len); n = uudecode(cp, blob, len); @@ -437,7 +478,12 @@ xfree(blob); return -1; } - k = key_from_blob(blob, n); + if (type == KEY_X509_RSA || + type == KEY_X509_DSA) { + k = x509key_from_blob(blob, n); + } + else + k = key_from_blob(blob, n); xfree(blob); if (k == NULL) { error("key_read: key_from_blob %s failed", cp); @@ -448,7 +494,30 @@ key_free(k); return -1; } +noblob: /*XXXX*/ + if (ret->type == KEY_X509_RSA || + ret->type == KEY_X509_DSA ) { + if (ret->rsa != NULL) + RSA_free(ret->rsa); + ret->rsa = k->rsa; + k->rsa = NULL; + if (ret->dsa != NULL) + DSA_free(ret->dsa); + ret->dsa = k->dsa; + k->dsa = NULL; + if (ret->x509 != NULL) + X509_free(ret->x509); + ret->x509 = k->x509; + k->x509 = NULL; +#ifdef DEBUG_PK + if (ret->type == KEY_X509_RSA) + RSA_print_fp(stderr, ret->rsa, 8); + else + DSA_print_fp(stderr, ret->dsa, 8); +#endif + success = 1; + } else if (ret->type == KEY_RSA) { if (ret->rsa != NULL) RSA_free(ret->rsa); @@ -513,6 +582,8 @@ } xfree(blob); xfree(uu); + } else if ( (key->type == KEY_X509_RSA) || (key->type == KEY_X509_DSA) ) { + success = x509key_write(key, f); } return success; } @@ -529,6 +600,14 @@ case KEY_DSA: return "DSA"; break; + case KEY_X509_RSA: + if(k->rsa) return "RSA+cert"; + return "X509(rsa)"; + break; + case KEY_X509_DSA: + if(k->dsa) return "DSA+cert"; + return "X509(dsa)"; + break; } return "unknown"; } @@ -542,6 +621,12 @@ case KEY_DSA: return "ssh-dss"; break; + case KEY_X509_RSA: + return "x509v3-sign-rsa"; + break; + case KEY_X509_DSA: + return "x509v3-sign-dss"; + break; } return "ssh-unknown"; } @@ -630,6 +715,7 @@ int key_type_from_name(char *name) { + debug3("call key_type_from_name(%.200s) ...", name); if (strcmp(name, "rsa1") == 0) { return KEY_RSA1; } else if (strcmp(name, "rsa") == 0) { @@ -640,6 +726,10 @@ return KEY_RSA; } else if (strcmp(name, "ssh-dss") == 0) { return KEY_DSA; + } else if (strcmp(name, "x509v3-sign-rsa") == 0) { + return KEY_X509_RSA; + } else if (strcmp(name, "x509v3-sign-dss") == 0) { + return KEY_X509_DSA; } debug2("key_type_from_name: unknown key type '%s'", name); return KEY_UNSPEC; @@ -674,6 +764,7 @@ char *ktype; int rlen, type; Key *key = NULL; + debug3("key_from_blob(..., %d)", blen); #ifdef DEBUG_PK dump_base64(stderr, blob, blen); @@ -682,6 +773,7 @@ buffer_append(&b, blob, blen); ktype = buffer_get_string(&b, NULL); type = key_type_from_name(ktype); + debug3("key_from_blob(..., ...) ktype=%.30s", ktype); switch (type) { case KEY_RSA: @@ -742,6 +834,11 @@ buffer_put_bignum2(&b, key->rsa->e); buffer_put_bignum2(&b, key->rsa->n); break; + case KEY_X509_RSA: + case KEY_X509_DSA: + if (!x509key_to_blob(key, &b)) + return 0; + break; default: error("key_to_blob: unsupported key type %d", key->type); buffer_free(&b); @@ -772,6 +869,10 @@ case KEY_RSA: return ssh_rsa_sign(key, sigp, lenp, data, datalen); break; + case KEY_X509_RSA: + case KEY_X509_DSA: + return ssh_x509_sign(key, sigp, lenp, data, datalen); + break; default: error("key_sign: illegal key type %d", key->type); return -1; @@ -794,6 +895,10 @@ break; case KEY_RSA: return ssh_rsa_verify(key, signature, signaturelen, data, datalen); + break; + case KEY_X509_RSA: + case KEY_X509_DSA: + return ssh_x509_verify(key, signature, signaturelen, data, datalen); break; default: error("key_verify: illegal key type %d", key->type); diff -urP --exclude-from=exclude.list openssh-3.1p1/key.h openssh-3.1p1+x509c/key.h --- openssh-3.1p1/key.h Tue Feb 26 20:09:44 2002 +++ openssh-3.1p1+x509c/key.h Fri Jun 14 18:58:56 2002 @@ -28,12 +28,15 @@ #include #include +#include typedef struct Key Key; enum types { KEY_RSA1, KEY_RSA, KEY_DSA, + KEY_X509_RSA, + KEY_X509_DSA, KEY_UNSPEC }; enum fp_type { @@ -53,6 +56,7 @@ int flags; RSA *rsa; DSA *dsa; + X509 *x509; }; Key *key_new(int); diff -urP --exclude-from=exclude.list openssh-3.1p1/pathnames.h openssh-3.1p1+x509c/pathnames.h --- openssh-3.1p1/pathnames.h Sun Feb 10 09:32:29 2002 +++ openssh-3.1p1+x509c/pathnames.h Fri Jun 14 18:58:56 2002 @@ -18,6 +18,10 @@ #define SSHDIR ETCDIR "/ssh" #endif +#ifndef SSHCADIR +#define SSHCADIR SSHDIR "/ca" +#endif + #ifndef _PATH_SSH_PIDDIR #define _PATH_SSH_PIDDIR "/var/run" #endif @@ -42,6 +46,12 @@ #define _PATH_DH_MODULI SSHDIR "/moduli" /* Backwards compatibility */ #define _PATH_DH_PRIMES SSHDIR "/primes" + +/* x509 store */ +#define _PATH_CA_CERTIFICATE_FILE SSHCADIR "/ca-bundle.crt" +#define _PATH_CA_CERTIFICATE_PATH SSHCADIR "/crt" +#define _PATH_CA_REVOCATION_FILE SSHCADIR "/ca-bundle.crl" +#define _PATH_CA_REVOCATION_PATH SSHCADIR "/crl" #ifndef _PATH_SSH_PROGRAM #define _PATH_SSH_PROGRAM "/usr/bin/ssh" diff -urP --exclude-from=exclude.list openssh-3.1p1/servconf.c openssh-3.1p1+x509c/servconf.c --- openssh-3.1p1/servconf.c Tue Feb 5 03:26:35 2002 +++ openssh-3.1p1+x509c/servconf.c Fri Jun 14 18:58:56 2002 @@ -110,6 +110,11 @@ options->client_alive_count_max = -1; options->authorized_keys_file = NULL; options->authorized_keys_file2 = NULL; + options->num_allowedcertpurposes = 0; + options->ca_certificate_file = NULL; + options->ca_certificate_path = NULL; + options->ca_revocation_file = NULL; + options->ca_revocation_path = NULL; } void @@ -235,6 +240,15 @@ } if (options->authorized_keys_file == NULL) options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS; + /* options->num_allowedcertpurposes is zero by default */ + if (options->ca_certificate_file == NULL) + options->ca_certificate_file = _PATH_CA_CERTIFICATE_FILE; + if (options->ca_certificate_path == NULL) + options->ca_certificate_path = _PATH_CA_CERTIFICATE_PATH; + if (options->ca_revocation_file == NULL) + options->ca_revocation_file = _PATH_CA_REVOCATION_FILE; + if (options->ca_revocation_path == NULL) + options->ca_revocation_path = _PATH_CA_REVOCATION_PATH; } /* Keyword tokens. */ @@ -267,6 +281,9 @@ sBanner, sVerifyReverseMapping, sHostbasedAuthentication, sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, sClientAliveCountMax, sAuthorizedKeysFile, sAuthorizedKeysFile2, + sAllowedCertPurposes, + sCACertificateFile, sCACertificatePath, + sCARevocationFile, sCARevocationPath, sDeprecated } ServerOpCodes; @@ -342,6 +359,11 @@ { "clientalivecountmax", sClientAliveCountMax }, { "authorizedkeysfile", sAuthorizedKeysFile }, { "authorizedkeysfile2", sAuthorizedKeysFile2 }, + { "allowedcertpurposes", sAllowedCertPurposes }, + { "cacertificatefile", sCACertificateFile }, + { "cacertificatepath", sCACertificatePath }, + { "carevocationfile", sCARevocationFile }, + { "carevocationpath", sCARevocationPath }, { NULL, sBadOption } }; @@ -856,6 +878,33 @@ case sClientAliveCountMax: intptr = &options->client_alive_count_max; goto parse_int; + +#if 0 + case sAllowedCertPurposes: + options->num_allowedcertpurposes = XXXX + options->allowedcertpurposes = XXXX + break; +#endif + + case sCACertificateFile: + case sCACertificatePath: + case sCARevocationFile: + case sCARevocationPath: + arg = strdelim(&cp); + if (!arg || *arg == '\0') + fatal("%s line %d: Missing argument.", filename, linenum); + switch (opcode) { + case sCACertificateFile: + options->ca_certificate_file = xstrdup(arg); break; + case sCACertificatePath: + options->ca_certificate_path = xstrdup(arg); break; + case sCARevocationFile: + options->ca_revocation_file = xstrdup(arg); break; + case sCARevocationPath: + options->ca_revocation_path = xstrdup(arg); break; + default: + } + break; case sDeprecated: log("%s line %d: Deprecated option %s", diff -urP --exclude-from=exclude.list openssh-3.1p1/servconf.h openssh-3.1p1+x509c/servconf.h --- openssh-3.1p1/servconf.h Tue Mar 5 03:53:05 2002 +++ openssh-3.1p1+x509c/servconf.h Fri Jun 14 18:58:56 2002 @@ -131,6 +131,14 @@ char *authorized_keys_file2; int pam_authentication_via_kbd_int; + /* ssh PKI(X509) store */ + int num_allowedcertpurposes; + char *allowedcertpurposes[10]; /* XXXX*/ + char *ca_certificate_file; + char *ca_certificate_path; + char *ca_revocation_file; + char *ca_revocation_path; + } ServerOptions; void initialize_server_options(ServerOptions *); diff -urP --exclude-from=exclude.list openssh-3.1p1/ssh-x509.c openssh-3.1p1+x509c/ssh-x509.c --- openssh-3.1p1/ssh-x509.c Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/ssh-x509.c Mon Jun 17 21:37:05 2002 @@ -0,0 +1,592 @@ +/* + * Copyright (c) 2002 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 "ssh-x509.h" +#include "includes.h" +#include "log.h" +#include +#include "xmalloc.h" +#include "uuencode.h" +#include +#include "bufaux.h" +#include "x509store.h" + + +#define USE_X509STORE +#ifdef USE_X509STORE +int (*pssh_x509_store_check)(X509 *_cert) = NULL; +#endif + + +static char* +x509key_get_subject(int _keytype, char* _cp) { + static char *keywords[] = { + "subject", + "distinguished name", + "distinguished_name", + "dn", + NULL + }; + char **q, *p; + size_t len; + + if (_keytype != KEY_X509_RSA && + _keytype != KEY_X509_DSA) { + debug3("x509key_get_subject: %d is not x509 key ", _keytype); + return 0; + } + for (q=keywords; *q; q++) { + len = strlen(*q); + if (strncasecmp(_cp, *q, len) == 0) { + for (p = _cp + len; *p && isspace(*p); p++) + {} + if (!*p) { + error("x509key_get_subject: no data"); + return NULL; + } + if (*p == ':' || *p == '=') + p++; + for (; *p && isspace(*p); p++) + {} + if (!*p) { + error("x509key_get_subject: no data"); + return NULL; + } + if (*p == '/') + p++; + return p; + } + } + return NULL; +} + + +static int +x509key_str2X509NAME(char* _str, X509_NAME *_name) { + int ret = 1; + char *p, *q, *token; + char ch; + + p = _str; + while (*p) { + int nid; + for (; *p && isspace(*p); p++) + {} + if (!*p) break; + token = strchr(p, ','); + if (token == NULL) token = strchr(p, '/'); + if (token) { + ch = *token; + *token = 0; + } else { + ch = 0; + token = p + strlen(p); + } + q = strchr(p, '='); + if (!q) { + error("x509key_str2X509NAME: cannot parse %.200s ...", p); + ret = 0; + break; + } + *q = 0; + nid = OBJ_txt2nid(p); + *q = '='; + p = q + 1; + if(!*p) { + error("x509key_str2X509NAME: no data"); + ret = 0; + } else { /* add */ + + for(q = token - 1; (q >= p) && isspace(*q); q--) + {/*skip unexpected \n,etc. from end*/} + ret = X509_NAME_add_entry_by_NID(_name, nid, V_ASN1_PRINTABLESTRING, p, q-p+1, -1, 0); + if(ret <= 0) { + int ecode = ERR_get_error(); + error("x509key_from_subject: x509key_str2X509NAME fail %.200s", ERR_error_string(ecode, NULL)); + } + } + *token = ch; + if(ret <= 0) { + break; + } + p = token; + if(*p) p++; + } + debug3("x509key_str2X509NAME: return %d", ret); + return ret; +} + + +Key* +x509key_from_subject(int _keytype, char* _cp) { + int ret = 1; + Key* key = NULL; + X509_NAME *subj; + char *subject; + + debug3("x509key_from_subject(%d, [%.200s]) called ", _keytype, _cp); + subject = x509key_get_subject(_keytype, _cp); + if(subject == NULL) + return NULL; + + debug3("x509key_from_subject(...) subject=[%.200s]", subject); + key = key_new(_keytype); + if (key == NULL) { + error("x509key_from_subject(): out of memory"); + return NULL; + } + + if (ret > 0) { + subj = X509_get_subject_name(key->x509); + if (subj == NULL) { + error("x509key_from_subject(): new x509 key without subject"); + ret = 0; + } + } + + if (ret > 0) { + ret = x509key_str2X509NAME(subject, subj); + } + + if (ret <= 0) { + if (key) { + key_free(key); + key = NULL; + } + } + return key; +} + + +static Key* +x509_to_key(X509 *x509) { + Key *key = NULL; + EVP_PKEY *env_pkey; + + env_pkey = X509_get_pubkey(x509); + + if (env_pkey == NULL) { + int ecode = ERR_get_error(); + error("x509_to_key: X509_get_pubkey fail %.200s", ERR_error_string(ecode, NULL)); + return key; + } + else { + debug3("x509_to_key: X509_get_pubkey done!"); + } + + switch(env_pkey->type) { + case EVP_PKEY_RSA: + key = key_new(KEY_UNSPEC); + key->x509 = x509; + key->rsa = EVP_PKEY_get1_RSA(env_pkey); + key->type = KEY_X509_RSA; +#ifdef DEBUG_PK + RSA_print_fp(stderr, key->rsa, 8); +#endif + break; + + case EVP_PKEY_DSA: + key = key_new(KEY_UNSPEC); + key->x509 = x509; + key->dsa = EVP_PKEY_get1_DSA(env_pkey); + key->type = KEY_X509_DSA; +#ifdef DEBUG_PK + DSA_print_fp(stderr, key->dsa, 8); +#endif + break; + + default: + debug3("x509key_from_blob:unspec key" ); + } + + return key; +} + + +Key* +x509key_from_blob( + u_char *blob, + int blen +) { + Key* key = NULL; + BIO *mbio; + + /* convert blob data to BIO certificate data */ + mbio=BIO_new(BIO_s_mem()); + if (mbio == NULL) return NULL; + BIO_write(mbio,blob,blen); + BIO_flush(mbio); + + debug3("x509key_from_blob:We have %d bytes available in BIO",BIO_pending(mbio)); + + { /* read X509 certificate from BIO data */ + X509* x509 = NULL; + x509 = d2i_X509_bio(mbio,NULL); + if (x509 == NULL) { + int ecode = ERR_get_error(); + error("x509key_from_blob: read X509 from BIO fail %.200s", ERR_error_string(ecode, NULL)); + } + else { + key = x509_to_key(x509); + if (key == NULL) + X509_free(x509); + } + } + + /* This call will walk the chain freeing all the BIOs */ + BIO_free_all(mbio); + return key; +} + + +static int +x509key_check(char* method, Key *key) { + if (key == NULL) + { error("%.50s: no key", method); return 0; } + + if (key->type != KEY_X509_RSA && + key->type != KEY_X509_DSA ) + { error("%.50s: cannot handle key type %d", method, key->type); return 0; } + + if (key->x509 == NULL) + { error("%.50s: no X509 key", method); return 0; } + + return 1; +} + + +int +x509key_to_blob( + Key *key, + Buffer *b +) { + int len; + void* str; + unsigned char *p; + + if (!x509key_check("x509key_to_blob", key)) + return 0; + + len = i2d_X509(key->x509, NULL); + str = xmalloc(len); + if (str == NULL) + { error("x509key_to_blob: out of memory"); return 0; } + + p = str; + i2d_X509(key->x509, &p); + buffer_append(b, str, len); + xfree(str); + return 1; +} + + +int +x509key_write( + Key *key, + FILE *f +) { + int ret = 0; + Buffer b; + int n; + + if (!x509key_check("x509key_write", key)) + return ret; + + buffer_init(&b); + ret = x509key_to_blob(key,&b); + if (ret) { + /* write ssh key name */ + char * ktype = key_ssh_name(key); + n = strlen(ktype); + ret = ( fwrite(ktype, 1, n, f) == n ) && + ( fwrite(" " , 1, 1, f) == 1 ); + } + if (ret) { + u_char uu[1<<12]; //4096 + + n = uuencode(buffer_ptr(&b), buffer_len(&b), uu, sizeof(uu)); + ret = n > 0; + if (ret) { + ret = (fwrite(uu, 1, n, f) == n); + } + } + buffer_free(&b); + return ret; +} + + +Key* +x509key_load_cert( + Key *key, + FILE *fp +) { + if (!key) return NULL; + + if ( (key->type == KEY_RSA) || + (key->type == KEY_DSA) ) { + key->x509 = PEM_read_X509(fp, NULL, NULL, NULL); + if (key->x509 == NULL) { + int ecode = ERR_get_error(); + debug3("x509key_load_cert: PEM_read_X509 fail %.200s", ERR_error_string(ecode, NULL)); + } + else { + key->type = (key->type == KEY_RSA) ? KEY_X509_RSA : KEY_X509_DSA; + debug("read X509 certificate done: type %.40s", + key ? key_type(key) : ""); + } + } + return key; +} + + +static int +x509key_save_cert( + FILE *fp, + X509 *x509 +) { + int ret = 0; + BIO *out=NULL; + char buf[512]; + unsigned long nmflag = 0; + + out=BIO_new_fp(fp, BIO_NOCLOSE); +#ifdef VMS + { + BIO *tmpbio = BIO_new(BIO_f_linebuffer()); + out = BIO_push(tmpbio, out); + } +#endif + + BIO_puts(out, "issuer= "); + //X509_NAME_print_ex(out, X509_get_issuer_name(x509) , 0, nmflag); + X509_NAME_oneline(X509_get_issuer_name(x509), buf, sizeof(buf)); + BIO_puts(out, buf); + BIO_puts(out, "\n"); + + BIO_puts(out, "subject= "); + //X509_NAME_print_ex(out, X509_get_subject_name(x509), 0, nmflag); + X509_NAME_oneline(X509_get_subject_name(x509), buf, sizeof(buf)); + BIO_puts(out, buf); + BIO_puts(out, "\n"); + { + unsigned char *alstr; + alstr = X509_alias_get0(x509, NULL); + if (!alstr) alstr = ""; + BIO_puts(out,alstr); + BIO_puts(out, "\n"); + } + ret = PEM_write_bio_X509(out, x509); + //ret = 0; + if (!ret) { + int ecode = ERR_get_error(); + error("x509key_save_cert: PEM_write_bio_X509 fail %.200s", ERR_error_string(ecode, NULL)); + } + + BIO_free_all(out); + return ret; +} + + +int +x509key_save_pem( + FILE *fp, + Key *key, + const EVP_CIPHER *cipher, + u_char *passphrase, + int len +) { + if (!x509key_check("x509key_save_pem", key)) + return 0; + + switch (key->type) { + case KEY_X509_DSA: + if(PEM_write_DSAPrivateKey(fp, key->dsa, cipher, passphrase, len, NULL, NULL)) + return x509key_save_cert(fp, key->x509); + break; + case KEY_X509_RSA: + if(PEM_write_RSAPrivateKey(fp, key->rsa, cipher, passphrase, len, NULL, NULL)) + return x509key_save_cert(fp, key->x509); + break; + } + return 0; +} + + +int +ssh_x509_sign( + Key * key, + u_char **psignature, u_int *psignaturelen, + u_char *data, u_int datalen +) { + int ret = -1; + u_char sigret[256]; + u_int siglen; + + if (!x509key_check("ssh_x509_sign", key)) + return ret; + if((key->rsa == NULL) && (key->dsa == NULL)) { + error("ssh_x509_sign: missing private key"); + return ret; + } + + debug3("ssh_x509_sign: key_type=%.20s, key_ssh_name=%.40s", key_type(key), key_ssh_name(key)); + ret = 1; + { + EVP_PKEY* privkey = NULL; + + privkey = EVP_PKEY_new(); + if (!privkey) { + error("ssh_x509_sign: out of memory"); + ret = -1; + } + else { + ret = (key->rsa) + ? EVP_PKEY_set1_RSA(privkey, key->rsa) + : EVP_PKEY_set1_DSA(privkey, key->dsa); + + if (ret <= 0) { + int ecode = ERR_get_error(); + error("ssh_x509_sign: EVP_PKEY_set1_XXX: failed %.200s", ERR_error_string(ecode, NULL)); + } + } + + if (ret > 0) { + EVP_MD_CTX ctx; + const EVP_MD *evp_md = (key->rsa) ? EVP_md5() : EVP_dss1(); + debug3("ssh_x509_sign: evp_md { %d, %d, %d, ... }", evp_md->type, evp_md->pkey_type, evp_md->md_size); + + EVP_SignInit(&ctx,evp_md); + EVP_SignUpdate(&ctx,data,datalen); + + if (ret > 0) { + ret = EVP_SignFinal(&ctx,sigret,&siglen,privkey); + if (ret <= 0) { + int ecode = ERR_get_error(); + error("ssh_x509_sign: digest failed: %.200s", ERR_error_string(ecode, NULL)); + } + } + } + EVP_PKEY_free(privkey); + } + if (ret > 0) { + Buffer b; + + buffer_init(&b); + buffer_put_cstring(&b, key_ssh_name(key)); + buffer_put_string(&b, sigret, siglen); + + { + u_int len = buffer_len(&b); + if (psignaturelen != NULL) + *psignaturelen = len; + + if (psignature != NULL) { + *psignature = xmalloc(len); + memcpy(*psignature, buffer_ptr(&b), len); + } + } + buffer_free(&b); + } + debug3("ssh_x509_sign() return %d", ret); + return ret; +} + + +int ssh_x509_verify( + Key *key, + u_char *signature, u_int signaturelen, + u_char *data, u_int datalen) +{ + int ret = -1; + u_char *sigblob = NULL; + uint len = 0; + + + if (!x509key_check("ssh_x509_verify", key)) + return ret; + + { /* get signature data only */ + Buffer b; + buffer_init(&b); + buffer_append(&b, signature, signaturelen); + + { /* check signature key type */ + char *ktype = buffer_get_string(&b, NULL); + debug3("ssh_x509_verify signature key type = %.40s", ktype ); + ret = strcmp("x509v3-sign-rsa", ktype) == 0 || + strcmp("x509v3-sign-dss", ktype) == 0; + if (!ret) { + error("ssh_x509_verify: cannot handle signature key type %.40s", ktype); + } + xfree(ktype); + } + + if (ret > 0) { + sigblob = buffer_get_string(&b, &len); + } + + if (ret > 0) { + int rlen = buffer_len(&b); + if (rlen != 0) { + error("ssh_x509_verify: remaining bytes in signature %d", rlen); + ret = -1; + } + } + buffer_free(&b); + } + + if (ret > 0 ) { + EVP_PKEY* pubkey; + + pubkey = X509_get_pubkey(key->x509); + if (!pubkey) { + error("ssh_x509_verify: no 'X509 Public Key'"); + ret = -1; + } + + if (ret > 0) { + EVP_MD_CTX ctx; + const EVP_MD *evp_md = (key->rsa) ? EVP_md5() : EVP_dss1(); + debug3("ssh_x509_verify: evp_md { %d, %d, %d, ... }", evp_md->type, evp_md->pkey_type, evp_md->md_size); + + EVP_VerifyInit(&ctx,evp_md); + EVP_VerifyUpdate(&ctx,data,datalen); + ret = EVP_VerifyFinal(&ctx,sigblob,len,pubkey); + if (ret <= 0) { + int ecode = ERR_get_error(); + error("ssh_x509_verify: verify failed: %.200s", ERR_error_string(ecode, NULL)); + } + } + } +#ifdef USE_X509STORE + if (ret > 0 && pssh_x509_store_check != NULL) { + ret = (*pssh_x509_store_check)(key->x509); + } +#endif + if (sigblob) { + memset(sigblob, 's', len); + xfree(sigblob); + } + debug3("ssh_x509_verify() return %d", ret); + return ret; +} diff -urP --exclude-from=exclude.list openssh-3.1p1/ssh-x509.h openssh-3.1p1+x509c/ssh-x509.h --- openssh-3.1p1/ssh-x509.h Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/ssh-x509.h Mon Jun 17 15:44:42 2002 @@ -0,0 +1,50 @@ +#ifndef SSH_X509_H +#define SSH_X509_H +/* + * Copyright (c) 2002 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 "key.h" +#include "buffer.h" + + /* + * This method return a key(x509) only with "Distinguished Name" ! + */ +Key* x509key_from_subject(int _keytype, char* _cp); + + +Key* x509key_from_blob(u_char *blob, int blen); +int x509key_to_blob(Key *key, Buffer *b); +int x509key_write(Key *key, FILE *f); + +Key* x509key_load_cert(Key *key, FILE *fp); + +int x509key_save_pem(FILE *fp, Key *key, const EVP_CIPHER *cipher, u_char *passphrase, int len); + + +int ssh_x509_sign(Key *, u_char **, u_int *, u_char *, u_int); +int ssh_x509_verify(Key *key, u_char *signature, u_int signaturelen, u_char *data, u_int datalen); + + +#endif /* SSH_X509_H */ diff -urP --exclude-from=exclude.list openssh-3.1p1/sshconnect2.c openssh-3.1p1+x509c/sshconnect2.c --- openssh-3.1p1/sshconnect2.c Tue Feb 26 20:15:10 2002 +++ openssh-3.1p1+x509c/sshconnect2.c Fri Jun 14 18:58:56 2002 @@ -45,6 +45,7 @@ #include "match.h" #include "dispatch.h" #include "canohost.h" +#include "ssh-x509.h" /* import */ extern char *client_version_string; @@ -387,7 +388,11 @@ debug("unknown pkalg %s", pkalg); break; } - if ((key = key_from_blob(pkblob, blen)) == NULL) { + if ( (pktype == KEY_X509_RSA) || (pktype == KEY_X509_RSA) ) + key = x509key_from_blob(pkblob, blen); + else + key = key_from_blob(pkblob, blen); + if (key == NULL) { debug("no key from blob. pkalg %s", pkalg); break; } diff -urP --exclude-from=exclude.list openssh-3.1p1/sshd.c openssh-3.1p1+x509c/sshd.c --- openssh-3.1p1/sshd.c Tue Mar 5 03:31:30 2002 +++ openssh-3.1p1+x509c/sshd.c Fri Jun 14 18:58:56 2002 @@ -72,6 +72,7 @@ #include "misc.h" #include "dispatch.h" #include "channels.h" +#include "x509store.h" #ifdef LIBWRAP #include @@ -606,6 +607,7 @@ /* Initialize configuration options to their default values. */ initialize_server_options(&options); + pssh_x509_store_check = ssh_x509_store_check; /* Parse command-line arguments. */ while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:o:dDeiqtQ46")) != -1) { diff -urP --exclude-from=exclude.list openssh-3.1p1/sshd_config openssh-3.1p1+x509c/sshd_config --- openssh-3.1p1/sshd_config Tue Feb 26 19:49:57 2002 +++ openssh-3.1p1+x509c/sshd_config Fri Jun 14 18:58:56 2002 @@ -21,6 +21,12 @@ #HostKey /etc/ssh/ssh_host_rsa_key #HostKey /etc/ssh/ssh_host_dsa_key +#AllowedCertPurposes XXXX +#CACertificateFile /etc/ssh/ca/ca-bundle.crt +#CACertificatePath /etc/ssh/ca/crt +#CARevocationFile /etc/ssh/ca/ca-bundle.crl +#CARevocationPath /etc/ssh/ca/crl + # Lifetime and size of ephemeral version 1 server key #KeyRegenerationInterval 3600 #ServerKeyBits 768 diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/1-cre_cadb.sh openssh-3.1p1+x509c/tests/CA/1-cre_cadb.sh --- openssh-3.1p1/tests/CA/1-cre_cadb.sh Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/1-cre_cadb.sh Mon Jun 17 16:06:16 2002 @@ -0,0 +1,207 @@ +#!/bin/sh +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: Create a new certificate authority config and database. +# + +cd `dirname "$0"` +. ./functions +. ./config + + +# === +echo_CA_common_options () { +cat < "$1" +[ ca ] +default_ca = CA_OpenSSH_rsa_md5 + +# For the CA policy +[ policy_match ] +countryName = match +stateOrProvinceName = match +organizationName = match +organizationalUnitName = optional +commonName = supplied +emailAddress = optional + +[ req ] +default_bits = 1024 +distinguished_name = req_distinguished_name +attributes = req_attributes +#prompt = no + +# The extensions to add to a certificate request: +#???req_extensions = usr_cert + + +[ req_distinguished_name ] +countryName = Country Name (2 letter code) +countryName_default = $SSH_DN_C +countryName_min = 2 +countryName_max = 2 + +stateOrProvinceName = State or Province Name (full name) +stateOrProvinceName_default = $SSH_DN_ST + +localityName = Locality Name (eg, city) + +0.organizationName = Organization Name (eg, company) +0.organizationName_default = $SSH_DN_O + +organizationalUnitName = Organizational Unit Name (eg, section) +organizationalUnitName_default = $SSH_DN_OU + +commonName = Common Name (eg, YOUR name) +commonName_min = 2 +commonName_max = 64 + +emailAddress = Email Address (optional) +emailAddress_max = 40 + +[ req_attributes ] +challengePassword = A challenge password +challengePassword_min = 4 +challengePassword_max = 20 + +[ usr_cert ] +# These extensions are added when 'ca' signs a request. +basicConstraints=CA:FALSE +nsCertType = client, email + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Client Test Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier = hash +authorityKeyIdentifier = keyid,issuer:always + +[ srv_cert ] +# These extensions are added when 'ca' signs a request. +basicConstraints = CA:FALSE +nsCertType = server + +# This is typical in keyUsage for a client certificate. +# keyUsage = nonRepudiation, digitalSignature, keyEncipherment + +# This will be displayed in Netscape's comment listbox. +nsComment = "OpenSSL Generated Server Test Certificate" + +# PKIX recommendations harmless if included in all certificates. +subjectKeyIdentifier = hash +authorityKeyIdentifier = keyid,issuer:always + +EOF + + +for DIGEST in ${RSA_DIGEST_LIST}; do +( cat << EOF + + +[ CA_OpenSSH_rsa_${DIGEST} ] +EOF + echo_CA_common_options + cat << EOF +# which md to use: +default_md = ${DIGEST} + +# The private key (!) +private_key = "${SSH_CAKEYDIR}/${RSA_BASENAME}.key" + +#The CA certificate (!) +certificate = "${SSH_CACERTDIR}/${RSA_BASENAME}_${DIGEST}.crt.pem" +EOF +) >> "$1" +done + +( cat << EOF + + +[ CA_OpenSSH_dsa ] +EOF + echo_CA_common_options + cat << EOF +# which md to use: +default_md = sha1 + +# The private key (!) +private_key = "${SSH_CAKEYDIR}/${DSA_BASENAME}.key" + +#The CA certificate (!) +certificate = "${SSH_CACERTDIR}/${DSA_BASENAME}.crt.pem" +EOF +) >> "$1" +} + + +# === +cre_db () { + var="${SSH_CAROOT}" + if test ! -d "$var"; then + mkdir -p "$var" || return $? + else + count=`getNextDirName "${var}"` || return $? + if test -d "${var}"; then + echo -n "saving old directoty as ${attn}${var}.${warn}${count}${norm} ... " + mv "${var}" "${var}.${count}"; show_status $? || return $? + fi + fi + mkdir -p "$var" && + mkdir "$var/crt" && + mkdir "$var/crl" && + cp /dev/null "$var/index.txt" && + mkdir "$var/newcerts" && + echo '01' > "$var/serial" +} + + +# === +cre_config "${TMPDIR}/${CACONFIG}" && +cre_db && +update_file "${TMPDIR}/${CACONFIG}" "${SSH_CACFGFILE}" + + +show_status $? "${extd}Creating a new ${warn}TEST${norm} ${attn}Certificate Authority Database${norm} ..." + diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/2-cre_cakeys.sh openssh-3.1p1+x509c/tests/CA/2-cre_cakeys.sh --- openssh-3.1p1/tests/CA/2-cre_cakeys.sh Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/2-cre_cakeys.sh Mon Jun 17 23:51:10 2002 @@ -0,0 +1,241 @@ +#!/bin/sh +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: Create "Test Certificate Authority" private keys and certificates. +# + +cd `dirname "$0"` +. ./functions +. ./config + + +# === +SSH_DN_OU="OpenSSH Test CA Root" +SSH_DN_CN_BASE="OpenSSH Test CA key" + + +echo_SSH_CA_DN () { +cat </dev/null + +$OPENSSL genrsa ${RSA_OPT} \ + -passout pass:${KEY_PASS} \ + -out "${TMPDIR}/${RSA_BASENAME}.key" 1024 \ + 2>/dev/null \ +; show_status $? "${extd}generating a new ${attn}rsa ${norm} private key for the ${warn}TEST${norm}${extd} ${attn}CA${norm} ..." \ +|| exit $? + + +for DIGEST in ${RSA_DIGEST_LIST}; do + +rm -f "${TMPDIR}/${RSA_BASENAME}_${DIGEST}.crt" 2>/dev/null + +echo_SSH_CA_DN "rsa_${DIGEST}" | +$OPENSSL req -new -x509 \ + -days $SSH_CACERTDAYS \ + -passin pass:${KEY_PASS} \ + -key "${TMPDIR}/${RSA_BASENAME}.key" \ + -${DIGEST} \ + -out "${TMPDIR}/${RSA_BASENAME}_${DIGEST}.crt" \ + 2> /dev/null \ +; show_status $? "${extd}generating the new ${warn}TEST${norm}${extd} ${attn}CA${norm}/(${DIGEST} with rsa) ..." \ +|| exit $? + +done +} + + +# === +gen_dsa () { +DSA_OPT="" +if [ -f /etc/random-seed ]; then + DSA_OPT="${DSA_OPT} -rand /etc/random-seed" +fi + +rm -f "${TMPDIR}/${DSA_BASENAME}.prm" 2>/dev/null +$OPENSSL dsaparam ${DSA_OPT} \ + -out "${TMPDIR}/${DSA_BASENAME}.prm" 1024\ + 2> /dev/null;\ +show_status $? "${extd}generating a new ${attn}DSA parameter file${norm} ..." \ +|| exit $? + +rm -f "${TMPDIR}/${DSA_BASENAME}.key" 2>/dev/null +DSA_OPT="${DSA_OPT} -des3" +$OPENSSL gendsa ${DSA_OPT} \ + -passout pass:${KEY_PASS} \ + -out "${TMPDIR}/${DSA_BASENAME}.key" \ + "${TMPDIR}/${DSA_BASENAME}.prm" \ + 2>/dev/null \ +; show_status $? "${extd}generating a new ${attn}dsa${norm} private key for the ${warn}TEST${norm}${extd} ${attn}CA${norm} ..." \ +|| exit $? + + +#request & ceritificate +rm -f "${TMPDIR}/${DSA_BASENAME}.crt" 2>/dev/null + +echo_SSH_CA_DN "dsa" | +$OPENSSL req -new -x509 \ + -days $SSH_CACERTDAYS \ + -passin pass:${KEY_PASS} \ + -key "${TMPDIR}/${DSA_BASENAME}.key" \ + -out "${TMPDIR}/${DSA_BASENAME}.crt" \ + 2> /dev/null \ +; show_status $? "${extd}generating the new ${warn}TEST${norm}${extd} ${attn}CA${norm}/(sha1 with dsa) ..." \ +|| exit $? + +} + + +# === +crt2bundle () { + val="$1" + test -z "${val}" && { echo ${warn}missing DN${norm} 1>&2; return 1; } + echo + echo ${val} + echo ${val} | sed -e 's/./=/g' + openssl x509 -inform PEM -in "${2}" -fingerprint -noout + echo PEM data: + openssl x509 -inform PEM -in "${2}" -trustout + echo Certificate Ingredients: + openssl x509 -inform PEM -in "${2}" -text -noout +} + + +# === +install () { + + for D in \ + "${SSH_CAROOT}" \ + "${SSH_CAKEYDIR}" \ + "${SSH_CACERTDIR}" \ + ;do + test ! -d "$D" && mkdir -p "${D}" + done + + update_file "${TMPDIR}/${DSA_BASENAME}.prm" "${SSH_CAROOT}/${DSA_BASENAME}.prm" \ +&& + chmod 700 "${SSH_CAKEYDIR}" \ +&& + update_file "${TMPDIR}/${RSA_BASENAME}.key" "${SSH_CAKEYDIR}/${RSA_BASENAME}.key" && + chmod 400 "${SSH_CAKEYDIR}/${RSA_BASENAME}.key" \ +&& + update_file "${TMPDIR}/${DSA_BASENAME}.key" "${SSH_CAKEYDIR}/${DSA_BASENAME}.key" && + chmod 400 "${SSH_CAKEYDIR}/${DSA_BASENAME}.key" \ +|| return 1 + + +for DIGEST in ${RSA_DIGEST_LIST}; do + update_file "${TMPDIR}/${RSA_BASENAME}_${DIGEST}.crt" "${SSH_CACERTDIR}/${RSA_BASENAME}_${DIGEST}.crt.pem" || return 1 +done + update_file "${TMPDIR}/${DSA_BASENAME}.crt" "${SSH_CACERTDIR}/${DSA_BASENAME}.crt.pem" || return 1 + + +echo -n > "${TMPDIR}/${CACERTFILE}" +for DIGEST in ${RSA_DIGEST_LIST}; do + crt2bundle "$SSH_DN_OU" "${SSH_CACERTDIR}/${RSA_BASENAME}_${DIGEST}.crt.pem" \ + >> "${TMPDIR}/${CACERTFILE}" \ + || return 1 +done + + crt2bundle "$SSH_DN_OU" "${SSH_CACERTDIR}/${DSA_BASENAME}.crt.pem" \ + >> "${TMPDIR}/${CACERTFILE}" \ + || return 1 + +update_file "${TMPDIR}/${CACERTFILE}" "${SSH_CAROOT}/${CACERTFILE}" +} + + +# === +rm_all_hash () { + local HASH=$1 + for F in $HASH.*; do + test -h $F && rm -f $F + done +} + + +get_next_hashname () { + name="$1" + let N=0 + while true; do + if [ ! -f "$name.$N" ]; then + break; + fi + let N=N+1 + done + echo $N; +} + + +che_hash_link () { + local HASH=`$OPENSSL x509 -in "$1" -noout -hash` + local N=`get_next_hashname $HASH` + ln -sf "$1" $HASH.$N +} + + +cre_hashs () { +#(!) openssl script "c_rehash" is missing in some installations :-( +# c_rehash "${SSH_CACERTDIR}" +( cd "${SSH_CACERTDIR}" + for F in [0-9a-f]*.[0-9]; do + # we must use test -L, but on ?-OSes ... :-( + if test -h $F; then + rm "$F" + fi + done + + for DIGEST in ${RSA_DIGEST_LIST}; do + che_hash_link "${RSA_BASENAME}_${DIGEST}.crt.pem" + done + che_hash_link "${DSA_BASENAME}.crt.pem" +) + return 0; +} + + +# === + +gen_rsa && +gen_dsa && +install && +cre_hashs + +show_status $? "${extd}Creating a new ${warn}TEST${norm} ${attn}Certificate Authority${norm} ..." +echo "${warn}password for all private keys is ${attn}${KEY_PASS}${norm}" diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/3-cre_client_cert.sh openssh-3.1p1+x509c/tests/CA/3-cre_client_cert.sh --- openssh-3.1p1/tests/CA/3-cre_client_cert.sh Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/3-cre_client_cert.sh Mon Jun 17 23:50:25 2002 @@ -0,0 +1,229 @@ +#!/bin/sh +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: Create client certificate(s). +# + +cd `dirname "$0"` +. ./functions +. ./config + +usage () { + cat < + -f[ile] [ssh]key_file_name + -n[name] "base" common name +EOF + exit 1 +} + +test -z "$1" && usage + +while ! test -z "$1"; do + case $1 in + -f|\ + -file) + shift + if test -z "$1"; then + usage + fi + if ! test -z "${SSH_CLIENTKEY}"; then + usage + fi + SSH_CLIENTKEY="$1" + shift + ;; + + -n|\ + -name) + shift + if test -z "$1"; then + usage + fi + if ! test -z "$SSH_CLIENT_DN_CN"; then + usage + fi + SSH_CLIENT_DN_CN="$1" + shift + ;; + + *) + usage + ;; + esac +done + +test -z "${SSH_CLIENTKEY}" && usage +test ! -r "${SSH_CLIENTKEY}" && { error_file_not_readable; exit 1; } +test -z "$SSH_CLIENT_DN_CN" && usage + + +SSH_CLIENT_DN_CN="$SSH_CLIENT_DN_CN" + + +OPENSSH_LOG="./openssh_ca.log" +cat /dev/null > .delmy +update_file .delmy "$OPENSSH_LOG" > /dev/null || exit $? + +FIFO_I_FILE="${TMPDIR}/.user-keyI.$$" +FIFO_O_FILE="${TMPDIR}/.user-keyO.$$" + +rmFIFO () { + rm -f "${FIFO_I_FILE}" + rm -f "${FIFO_O_FILE}" +} + +mkfifo "${FIFO_I_FILE}" && +chmod 600 "${FIFO_I_FILE}" && +mkfifo "${FIFO_O_FILE}" && +chmod 600 "${FIFO_O_FILE}" && +trap rmFIFO EXIT QUIT ABRT KILL TERM || exit 1 +# trap any break/exit signal and remove FILE ! +# more signals ???? + +#this is bash stuff :-( +#(!) read -p "Enter key password:" -s keypass +# -p prompt +# -s silent (!) +stty -echo +echo -n "Enter key password:"; read keypass +stty echo +echo + +echo_Ipass () { + echo "${keypass}" > "${FIFO_I_FILE}" & +} + +echo_Opass () { + echo "${keypass}" > "${FIFO_O_FILE}" & +} + +# === + +echo_SSH_CLIENT_DN () { + type="$1" + cat <> "$OPENSSH_LOG" + sync + echo_Ipass + echo_SSH_CLIENT_DN "${type}" | + $OPENSSL req -new -config "${SSH_CACFGFILE}" \ + -key "${SSH_CLIENTKEY}" \ + -passin file:"${FIFO_I_FILE}" \ + -out "${TMPDIR}/user-${type}.csr" \ + 2>> "$OPENSSH_LOG" \ + ; show_status $? "creating new ${extd}CSR${norm} for ${attn}$SSH_CLIENT_DN_CN(${type})${norm} ..." || return $? + sync +} + + +# === +cre_crt () { + local type="$1" + + echo "=== create a new CRT ===" >> "$OPENSSH_LOG" + sync + $OPENSSL ca -config "${SSH_CACFGFILE}" \ + -batch \ + -in "${TMPDIR}/user-${type}.csr" \ + -name "CA_OpenSSH_${type}" \ + -passin pass:$KEY_PASS \ + -out "${TMPDIR}/user-${type}.crt" \ + 2>> "$OPENSSH_LOG" \ + ; show_status $? "creating new ${extd}CRT${norm} for ${attn}$SSH_CLIENT_DN_CN(${type})${norm} ..." || + { status=$? + echo -n "${warn}" + grep 'ERROR:' "$OPENSSH_LOG" + echo -n "${norm}" + return $status + } + + sync + $OPENSSL verify -CAfile "${SSH_CACERTDIR}/${CAKEY_PREFIX}-${type}.crt.pem" "${TMPDIR}/user-${type}.crt" && + rm -f "${TMPDIR}/user-${type}.csr" + update_file "${TMPDIR}/user-${type}.crt" "${SSH_CLIENTKEY}-${type}.crt" +} + + +# === + +cre_OpenSSHclientCrt () { + local type="$1" + echo -n "creating ${extd}OpenSSH client certificate${norm} with signature ${attn}${type}${norm} ..." + ( cat "${SSH_CLIENTKEY}" + $OPENSSL x509 -in "${SSH_CLIENTKEY}-${type}.crt" -subject -issuer -alias + ) > "${SSH_CLIENTKEY}-${type}" && + chmod 600 "${SSH_CLIENTKEY}-${type}" \ + ; show_status $? || return $status +} + +cre_P12clientCrt () { + local type="$1" + echo -n "creating ${extd}p12 client certificate${norm} with signature ${attn}${type}${norm} ..." + echo_Ipass + echo_Opass + $OPENSSL pkcs12 \ + -passin file:"${FIFO_I_FILE}" \ + -passout file:"${FIFO_O_FILE}" \ + -in "${SSH_CLIENTKEY}-${type}" \ + -out "${SSH_CLIENTKEY}-${type}".p12 \ + -export \ + ; show_status $? || return $status +} + + +# === +cre_all2 () { + local type="$1" + cre_csr "${type}" && + cre_crt "${type}" && + cre_OpenSSHclientCrt "${type}" && + cre_P12clientCrt "${type}" +} + + +# === +cre_all () { + for DIGEST in ${RSA_DIGEST_LIST}; do + cre_all2 "rsa_${DIGEST}" || return 1 + done + cre_all2 dsa +} + +# === +cre_all + +show_status $? "${extd}Creating ${warn}TEST certificates${norm} ${extd}wich common name:${norm}${attn}$SSH_CLIENT_DN_CN${norm} ..." diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/README openssh-3.1p1+x509c/tests/CA/README --- openssh-3.1p1/tests/CA/README Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/README Fri Jun 14 21:27:25 2002 @@ -0,0 +1,65 @@ + "HOW TO TEST?" + + Roumen Petrov + Sofia, Bulgaria + Fri Jun 14 2002 + + +NOTE: All files created after following steps are only for test environment ! + +Steps: +A.) Instalation: + Goto to .../test/CA dir + Check "config" file. + - On OpenBSD first run 'cp config.OpenBSD config' ! + - On portable version ./configure script create this file form .../config.in + Variables is config file... : TO DESCRIBE :-) + + +1.) Create "Test CA" directories and files as run: +prompt> ./1-cre_cadb.sh + + +2.) Run command: +prompt> ./2-cre_cakeys.sh + to create "Test CA" private keys and certificates. + + +3.1.) Create user key file{s} if they not exits. A sample command: +prompt> ssh-keygen -t {dsa|rsa} [-b 1024] -f PATH_TO_KEYFILEn + +3.2.) Create key certificates. + NOTE: Use key file without password. This make openssh tests more simple, otherwise you must enter password for every use of identity file. + Command is: +prompt> ./3-cre_client_cert.sh -f PATH_TO_KEYFILEn -n "Test Cert" + NOTE: "Common name" for every key file must be different, otherwise certificate creation fail. + This command create files with mask "PATH_TO_KEYFILEn-[.]", where is in format "rsa_" or "dsa". DIGEST are form variable "RSA_DIGEST_LIST" specified in "config" file. Files without extention are openssh identity files. File with .crt extention contain "text output" for user certificate. File with .p12 extention are for "Microsoft Windows keystore" + Verify "openssh_ca.log*" file[s]. + + +4.) Command "./verify.sh" is optional. + It check user certificates against "Test CA" but only when file names are in format "$HOME/.ssh/id_*.crt" + + +B.) Tests: + Run "The TEST script" (only as root!). This script use all "PATH_TO_KEYFILEn-[.]" files. + Command is: +# ./openssh_tests.sh -k PATH_TO_KEYFILEn +or +# ./openssh_tests.sh -k PATH_TO_KEYFILEn | less -r +or +# ./openssh_tests.sh -k PATH_TO_KEYFILEn > LOG_FILE +# less -r LOG_FILE +or +... + NOTE: Please read less man page for '-r' option. On Linux we can skip this option. + When all test successeded last message must be "Testing OpenSSH client certificates ... done" ! + + +C.) Test SecSH from "Microsoft Windows OSes". This is not part of document. Tip: use user *.p12 key files created in step 3.2), "Test CA" cerfificates created in step 2.) and read related SecSH client manuals. DON`T FORGET TO REMOVE entries from keystore after test. + + +D.) REMOVE "Test CA" directory (usually /etc/ssh/ca-test) and all files created in step 3.) !!! + + +E.) Enjoy ;-) diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/config.OpenBSD openssh-3.1p1+x509c/tests/CA/config.OpenBSD --- openssh-3.1p1/tests/CA/config.OpenBSD Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/config.OpenBSD Fri Jun 14 21:30:42 2002 @@ -0,0 +1,56 @@ +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: OpehSSH CA configuration. +# + +OPENSSL=`which openssl` +TMPDIR="/tmp" + +KEY_PASS="change_it" +CAKEY_PREFIX="catest" +RSA_BASENAME="${CAKEY_PREFIX}-rsa" +DSA_BASENAME="${CAKEY_PREFIX}-dsa" + +#RSA_DIGEST_LIST="md5 sha1 md2 md4" +#mdc2 with rsa fail !? +RSA_DIGEST_LIST="md5 sha1 md4" + + +SSH_BINDIR="/usr/bin" +SSH_SBINDIR="/usr/sbin" +SSH_SYSCONFDIR="/etc/ssh" + +SSH_CAROOT="/etc/ssh/ca-test" +SSH_CAKEYDIR="$SSH_CAROOT/keys" + +CACERTFILE="catest-bundle.crt" +SSH_CACERTDIR="$SSH_CAROOT/crt" + +CACONFIG="catest.config" +SSH_CACFGFILE="${SSH_CAROOT}/${CACONFIG}" + +SSH_CACERTDAYS=60 + +SSH_DN_C="XX" +SSH_DN_ST="World" +SSH_DN_O="OpenSSH Test Team" +SSH_DN_OU="OpenSSH Testers" + diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/config.in openssh-3.1p1+x509c/tests/CA/config.in --- openssh-3.1p1/tests/CA/config.in Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/config.in Fri Jun 14 21:30:47 2002 @@ -0,0 +1,60 @@ +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: OpehSSH CA configuration. +# + +OPENSSL=`which openssl` +TMPDIR="/tmp" + +KEY_PASS="change_it" +CAKEY_PREFIX="catest" +RSA_BASENAME="${CAKEY_PREFIX}-rsa" +DSA_BASENAME="${CAKEY_PREFIX}-dsa" + +#RSA_DIGEST_LIST="md5 sha1 md2 md4" +#mdc2 with rsa fail !? +RSA_DIGEST_LIST="md5 sha1 md4" + + +prefix="@prefix@" +exec_prefix="@exec_prefix@" +sysconfdir="@sysconfdir@" + +SSH_BINDIR="@bindir@" +SSH_SBINDIR="@sbindir@" +SSH_SYSCONFDIR="@sysconfdir@" + +SSH_CAROOT="@sshcadir@-test" +SSH_CAKEYDIR="$SSH_CAROOT/keys" + +CACERTFILE="catest-bundle.crt" +SSH_CACERTDIR="$SSH_CAROOT/crt" + +CACONFIG="catest.config" +SSH_CACFGFILE="${SSH_CAROOT}/${CACONFIG}" + +SSH_CACERTDAYS=60 + +SSH_DN_C="XX" +SSH_DN_ST="World" +SSH_DN_O="OpenSSH Test Team" +SSH_DN_OU="OpenSSH Testers" + diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/functions openssh-3.1p1+x509c/tests/CA/functions --- openssh-3.1p1/tests/CA/functions Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/functions Fri Jun 14 21:29:56 2002 @@ -0,0 +1,185 @@ +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: Usefull functions. +# + + +# === +# +# define colors and more for echo commands +# +# \033 ascii ESCape +# \033[G move to column (linux console, xterm, not vt100) +# \033[C move columns forward but only upto last column +# \033[D move columns backward but only upto first column +# \033[A move rows up +# \033[B move rows down +# \033[1m switch bold on +# \033[31m switch red on +# \033[32m switch green on +# \033[33m switch yellow on +# \033[m switch color/bold off +# \017 exit alternate mode (xterm, vt100, linux console) +# \033[10m exit alternate mode (linux console) +# \015 carriage return (without newline) +# + +if test -z "${LINES}" -o -z "${COLUMNS}" ; then + eval `stty size 2>/dev/null | (read L C; \ + echo LINES=${L:-24} COLUMNS=${C:-80})` +fi +test ${LINES} -eq 0 && LINES=24 +test ${COLUMNS} -eq 0 && COLUMNS=80 +export LINES COLUMNS + +if test "${TERM}" != "dumb" ; then + esc=`echo -en "\033"` + extd="${esc}[1m" + warn="${esc}[1;31m" + done="${esc}[1;32m" + attn="${esc}[1;34m" + norm=`echo -en "${esc}[m\017"` + stat=`echo -en "\015${esc}[${COLUMNS}C${esc}[10D"` + + msg_done="${stat}${done}done${norm}" + msg_failed="${stat}${warn}failed${norm}" + +else + esc="" + extd="" + warn="" + done="" + attn="" + norm="" + stat="" + + msg_done="..done" + msg_failed="..failed" + +fi + + +# === +error_file_not_found () { + echo "${warn}file ${attn}${1}${warn} not found${norm}" + return 1 +} + + +# === +error_file_not_readable () { + echo "${warn}file ${attn}${1}${warn} not found or not readable${norm}" + return 1 +} + + +# === +error_dir_not_found () { + echo "${warn}directory ${attn}${1}${warn} not found${norm}" + return 1 +} + + +# === +show_status () { + if ! test -z "$2"; then + echo -ne "${2}" + fi + if test $1 == 0; then + echo "$msg_done" + else + echo "$msg_failed" + fi + return $1 +} + + +# === +getNextFileName() { + var="$1" + count=0 + while true; do + test ! -f "${var}.${count}" && break + let count=${count}+1 + done + if test ${count} -ge 10; then + echo "${warn}please remove ${attn}${var}${warn} backup files !${norm}" 1>&2 + return 33 + fi + echo $count + return 0 +} + + +# === +getNextDirName() { + var="$1" + count=0 + while true; do + test ! -d "${var}.${count}" && break + let count=${count}+1 + done + if test ${count} -ge 10; then + echo "${warn}please remove ${attn}${var}${warn} backup directories !${norm}" 1>&2 + return 33 + fi + echo $count + return 0 +} + + +# === +update_file () { + var_new="$1" + var_old="$2" + if test ! -f "${var_old}"; then + echo -n "creating file ${attn}${var_old}${norm} ... " + mv "${var_new}" "${var_old}"; show_status $? + return + fi + test -r "${var_new}" || { error_file_not_readable "${var_new}"; return 1; } + + if diff "${var_old}" "${var_new}" >/dev/null 2>&1; then + echo "no changes in ${attn}${var_old}${norm}" + rm -f "${var_new}" + return 0 + fi + + count=`getNextFileName "${var_old}"` || return $? + echo -n "saving old file as ${attn}${var_old}.${warn}${count}${norm} ... " + cp -p "${var_old}" "${var_old}.${count}"; show_status $? || return $? + + echo -n "updating file ${attn}${var_old}${norm} ... " + if test ! -w "${var_old}"; then + chmod +w "${var_old}" + not_writable="yes" + fi + cat "${var_new}" > "${var_old}"; show_status $? || return $? + if test "$not_writable" == "yes"; then + chmod -w "${var_old}" + fi + rm -f "${var_new}" + return 0 +} + + +# === +FUNCTIONS_INCLUDED="yes" diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/openssh_tests.sh openssh-3.1p1+x509c/tests/CA/openssh_tests.sh --- openssh-3.1p1/tests/CA/openssh_tests.sh Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/openssh_tests.sh Mon Jun 17 16:13:18 2002 @@ -0,0 +1,453 @@ +#!/bin/sh +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: Test OpenSSH client and server with x509 certificates. +# + +if test "`id -u`" != "0"; then + echo run sshd as root + echo otherwise sshd cann\`t logon client \(insufficient permitions\) + exit 2 +fi + +cd `dirname "$0"` +. ./functions +. ./config + +usage () { + cat < + -f[ile] base key_files_name as example /home/tester/.ssh/id_dsa + [-p[ort]] sshd test port (default 20022) +EOF + exit 1 +} + +test -z "$1" && usage + +while ! test -z "$1"; do + case $1 in + -f|\ + -file) + shift + if test -z "$1"; then + usage + fi + if ! test -z "${SSH_CLIENTKEY}"; then + usage + fi + SSH_CLIENTKEY="$1" + shift + ;; + + -p|\ + -port) + shift + if test -z "$1"; then + usage + fi + if ! test -z "${SSHD_PORT}"; then + usage + fi + SSHD_PORT="$1" + shift + ;; + + *) + usage + ;; + esac +done + +test -z "${SSH_CLIENTKEY}" && usage +SSHD_PORT="${SSHD_PORT:-20022}" + +TMP_DIR=${TMP_DIR:=$TMP} +test -z "$TMP_DIR" && +for D in \ + /var/tmp \ + /tmp \ +; do + test -d "$D" && TMP_DIR=$D + if test ! -z "$TMP_DIR"; then + break; + fi +done +test -z "$TMP_DIR" && { echo "${warn}NO temp dir.${norm} !"; exit 1; } + + +SSHD_LOG="$TMP_DIR/sshd_x509.log" +SSHD_PID="$TMP_DIR/.sshd_x509.pid" +SSHD_CFG="$SSH_SYSCONFDIR/sshd_config-certTests" + +SSH_ERRLOG="$TMP_DIR/.ssh_x509.err.log" +SSH_REPLY="$TMP_DIR/.ssh_x509.reply" + + +USERDIR="$HOME/.ssh" +test ! -d "$USERDIR" && ( mkdir "$USERDIR" || exit 1 ) +chmod 700 "$USERDIR" || exit 1 +AUTHORIZEDKEYSFILE="$USERDIR/authorized_keys-tests" + + +# === +runSSHdaemon() { + echo "=======================================================================" >> "$SSHD_LOG" + $SSH_SBINDIR/sshd -f "$SSH_SYSCONFDIR/sshd_config-certTests" -o pidfile=$SSHD_PID >> "$SSHD_LOG" 2>&1 || return $? + #NOTE: bug or ?: with option -e no log to stderr in daemon mode + sleep 3 +} + + +# === +killSSHdaemon() { + sleep 1 + kill -9 `cat "$SSHD_PID" 2>/dev/null` > /dev/null 2>&1 + sleep 2 + rm -f "$SSHD_PID" > /dev/null 2>&1 + rm -f "$SSHD_CFG" +} + + +# === +testEND() { + echo -e "\n*=- The END -=*" >> "$SSHD_LOG" + + rm -f "$SSH_ERRLOG" + rm -f "$SSH_REPLY" + rm -f "$AUTHORIZEDKEYSFILE" +} + +testBREAK() { + echo -e "\n*=- BREAK -=*" >> "$SSHD_LOG" + killSSHdaemon +} + +trap testBREAK INT QUIT ABRT KILL TERM || exit 1 +trap testEND EXIT || exit 1 + + +# === +creTestSSHDcfgFile() { + cat > "$SSHD_CFG" < "$SSH_ERRLOG" > "$SSH_REPLY"; status=$? + #sleep 1 + + if test "x$must_fail" = "x1"; then + if test $status -ne 0; then + status=0 + else + status=1 + fi + fi + + #show_status $status " * ${extd}${type}${norm} ${info}" + show_status $status + if test $status -ne 0; then + echo -n "${warn}" + cat "$SSH_ERRLOG"; echo -n "${norm}" + else + if test "x$must_fail" = "x1"; then + if ! grep 'Permission denied (publickey)' "$SSH_ERRLOG" > /dev/null; then + status=33 + echo -n "${warn}" + else + echo -n "${done}" + fi + cat "$SSH_ERRLOG"; echo -n "${norm}" + else + if ! grep "$msg" "$SSH_REPLY" > /dev/null; then + status=33 + echo -n "${warn}" + cat "$SSH_REPLY"; echo -n "${norm}" + fi + fi + fi + + return $status +} + + +# === +testBLOBautorization () { + local type="$1" + local identity_file="${SSH_CLIENTKEY}-${type}" + if test ! -r "$identity_file"; then + error_file_not_readable "${identity_file}"; return $? + fi + + echo " using identity file ${identity_file}" + echo " creating AuthorizedKeysFile" + $SSH_BINDIR/ssh-keygen -f "${identity_file}" -y 2>/dev/null > "$AUTHORIZEDKEYSFILE" || return $? + runTest "${type}" "${identity_file}"\ + "${extd}valid${norm} blob" || return $? + + local blob=`cat "$AUTHORIZEDKEYSFILE"` + echo $blob | cut -c 1-50 > "$AUTHORIZEDKEYSFILE" + runTest "${type}" "${identity_file}"\ + "${warn}invalid${norm} blob" "Yes" || return $? + + return 0 +} + + +# === +do_test0 () { + local status=0 + echo "=======================================================================" + echo "* ${extd}against ${attn}CACertificateFile${norm} and autorization by x509 ${attn}blob${norm}:" + creTestSSHDcfgFile + echo CACertificateFile ${SSH_CAROOT}/${CACERTFILE} >> "$SSHD_CFG" + + runSSHdaemon + for DIGEST in ${RSA_DIGEST_LIST}; do + test $status -eq 0 && testBLOBautorization "rsa_${DIGEST}"; status=$? + done + test $status -eq 0 && testBLOBautorization "dsa" ; status=$? + killSSHdaemon + return $status +} + + +# === +testDNautorizations1 () { + local type="$1" + local identity_file="${SSH_CLIENTKEY}-${type}" + if test ! -r "$identity_file"; then + error_file_not_readable "${identity_file}"; return $? + fi + + local sshkeytype="unspec" + local status=0 + + if ! sshkeytype=`$SSH_BINDIR/ssh-keygen -f "${identity_file}" -y 2>/dev/null`; then + return 33 + fi + sshkeytype=`echo "${sshkeytype}" | cut -d ' ' -f 1` + + local subject=`$OPENSSL x509 -noout -subject -in "${identity_file}" | cut -d ' ' -f 2-` || return $? + + for subtype in\ + "Subject:" \ + "SuBjecT=" \ + "sUbjecT" \ + "diStinguished name:" \ + "distinguiShed_name:" \ + "dN:" \ + ; do + echo "${sshkeytype} ${subtype} ${subject}" > "$AUTHORIZEDKEYSFILE" + runTest "${type} ${subtype}" "${identity_file}" "" || return $? + done + + for subtype in\ + "Invalid" \ + "Subject-" \ + ; do + echo "${sshkeytype} ${subtype} ${subject}" > "$AUTHORIZEDKEYSFILE" + runTest "${type} ${warn}${subtype}${norm}" "${identity_file}"\ + "autorization type" "Yes" || return $? + done + + subtype="Subject" + ( echo -n "${sshkeytype} ${subtype}" + echo "${subject}" | cut -c -40 + ) > "$AUTHORIZEDKEYSFILE" + runTest "${type} ${warn}invalid${norm} ${subtype}" "${identity_file}"\ + "" "Yes" || return $? + + return 0 +} + + +# === +do_test1 () { + local status=0 + echo "=======================================================================" + echo "* ${extd}against ${attn}CACertificateFile${norm} and autorization by x509 ${attn}'Distinguished Name'${norm}:" + creTestSSHDcfgFile + echo CACertificateFile ${SSH_CAROOT}/${CACERTFILE} >> "$SSHD_CFG" + runSSHdaemon + for DIGEST in ${RSA_DIGEST_LIST}; do + test $status -eq 0 && testDNautorizations1 "rsa_${DIGEST}"; status=$? + done + test $status -eq 0 && testDNautorizations1 "dsa" ; status=$? + killSSHdaemon + return $status +} + + +# === +testDNautorizations2 () { + local type="$1" + local must_fail="$2" + + local identity_file="${SSH_CLIENTKEY}-${type}" + if test ! -r "$identity_file"; then + error_file_not_readable "${identity_file}"; return $? + fi + + local info + if test "$must_fail" == "yes"; then + info="${warn}!${norm}" + else + info="" + fi + local sshkeytype="unspec" + local status=0 + + if ! sshkeytype=`$SSH_BINDIR/ssh-keygen -f "${identity_file}" -y 2>/dev/null`; then + return 33 + fi + sshkeytype=`echo "${sshkeytype}" | cut -d ' ' -f 1` + + local subject=`$OPENSSL x509 -noout -subject -in "${identity_file}" | cut -d ' ' -f 2-` || return $? + echo "${sshkeytype} Subject: ${subject}" > "$AUTHORIZEDKEYSFILE" + runTest "${type}" "${identity_file}"\ + "${info}" "${must_fail}" || return $? +} + + +# === +do_test_catype () { + local catype="$1" + local type="undefined" + + echo " - autorization by x509 ${attn}Subject${norm} against CA key ${attn}${catype}${norm}" + + for DIGEST in ${RSA_DIGEST_LIST}; do + type="rsa_${DIGEST}" + if test "${catype}" = "${type}"; then + testDNautorizations2 "${type}" || return $? + else + testDNautorizations2 "${type}" "yes" || return $? + fi + done + + type="dsa" + local Fname="${SSH_CLIENTKEY}-${type}" + if test "${catype}" = "${type}"; then + testDNautorizations2 "${type}" || return $? + else + testDNautorizations2 "${type}" "yes" || return $? + fi + + return 0 +} + + +# === +do_test2 () { + local status=0 + echo "=======================================================================" + echo "* ${extd}against ${attn}CACertificatePath${norm}:" + creTestSSHDcfgFile + local CRT_TEST_DIR="${SSH_CAROOT}/crt-test" + echo CACertificatePath ${CRT_TEST_DIR} >> "$SSHD_CFG" + + runSSHdaemon + if test ! -d "${CRT_TEST_DIR}"; then + mkdir "${CRT_TEST_DIR}" || return $? + fi + rm -rf "${CRT_TEST_DIR}/"* 2>/dev/null + for DIGEST in ${RSA_DIGEST_LIST}; do + if test $status -eq 0; then + local type="rsa_${DIGEST}" + HASH=`$OPENSSL x509 -in "${SSH_CACERTDIR}/${CAKEY_PREFIX}-${type}.crt.pem" -noout -hash` + ( cd "${CRT_TEST_DIR}"; ln -s "${SSH_CACERTDIR}/${CAKEY_PREFIX}-${type}.crt.pem" "$HASH".0 ) + do_test_catype "${type}"; status=$? + ( cd "${CRT_TEST_DIR}"; rm -f "$HASH".0 ) + fi + done + if test $status -eq 0; then + local type="dsa" + HASH=`$OPENSSL x509 -in "${SSH_CACERTDIR}/${CAKEY_PREFIX}-${type}.crt.pem" -noout -hash` + ( cd "${CRT_TEST_DIR}"; ln -s "${SSH_CACERTDIR}/${CAKEY_PREFIX}-${type}.crt.pem" "$HASH".0 ) + do_test_catype "${type}" ; status=$? + ( cd "${CRT_TEST_DIR}"; rm -f "$HASH".0 ) + fi + rmdir "${CRT_TEST_DIR}" + + killSSHdaemon + return $status +} + + +# === +do_all () { + echo "${extd}Testing ssh client with 'Certificate Signature Algorithm' and ...${norm}" + + echo -n > "$AUTHORIZEDKEYSFILE" + chmod 644 "$AUTHORIZEDKEYSFILE" + + echo -n > "$SSHD_LOG" + + do_test0 || return $? + do_test1 || return $? + do_test2 || return $? + + echo "=======================================================================" + return 0 +} + + +# === +do_all + +show_status $? "${extd}Testing ${warn}OpenSSH client certificates${norm} ..." diff -urP --exclude-from=exclude.list openssh-3.1p1/tests/CA/verify.sh openssh-3.1p1+x509c/tests/CA/verify.sh --- openssh-3.1p1/tests/CA/verify.sh Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/tests/CA/verify.sh Fri Jun 14 21:29:49 2002 @@ -0,0 +1,38 @@ +#!/bin/sh +# Copyright (c) 2002 Roumen Petrov, Sofia, Bulgaria +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# DESCRIPTION: Verify all $HOME/.ssh/id_*.crt files agains openssh "Test CA". +# + +cd `dirname "$0"` +. ./functions +. ./config + + +for VERIFY in \ + "$OPENSSL verify -CAfile ${SSH_CAROOT}/${CACERTFILE}" \ + "$OPENSSL verify -CApath ${SSH_CACERTDIR}" \ +; do + echo ${attn}$VERIFY ....${norm} + for F in $HOME/.ssh/id_*.crt; do + $VERIFY $F || exit 1 + done +done diff -urP --exclude-from=exclude.list openssh-3.1p1/x509store.c openssh-3.1p1+x509c/x509store.c --- openssh-3.1p1/x509store.c Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/x509store.c Fri Jun 7 19:15:48 2002 @@ -0,0 +1,139 @@ +/* + * Copyright (c) 2002 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" +#include "log.h" +#include "servconf.h" +#include "openssl/e_os.h" +#include "openssl/err.h" + + +extern ServerOptions options; +static int x509_store_loaded = 0; +static X509_STORE *x509store_ctx = NULL; +int ssh_x509_purpose = -1; + + +static int MS_CALLBACK +ssh_x509store_cb(int ok, X509_STORE_CTX *ctx) { + if (!ok) { + char buf[256]; + X509_NAME_oneline( X509_get_subject_name(ctx->current_cert), buf, sizeof(buf)); + error("ssh_x509store_cb() subject:%s\n", buf); + error("ssh_x509store_cb() error %d at %d depth lookup:%s\n", + ctx->error, + ctx->error_depth, + X509_verify_cert_error_string(ctx->error)); +#if 0 + if (ctx->error == X509_V_ERR_CERT_HAS_EXPIRED) ok=1; + /* since we are just checking the certificates, it is + * ok if they are self signed. But we should still warn + * the user. + */ + if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ok=1; + /* Continue after extension errors too */ + if (ctx->error == X509_V_ERR_INVALID_CA) ok=1; + if (ctx->error == X509_V_ERR_PATH_LENGTH_EXCEEDED) ok=1; + if (ctx->error == X509_V_ERR_INVALID_PURPOSE) ok=1; + if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ok=1; +#endif + } + /* + if (!v_verbose) + ERR_clear_error(); + */ + return(ok); +} + + +static void +ssh_x509store_init () { + int ret=0; + X509_LOOKUP *lookup=NULL; + x509store_ctx = X509_STORE_new(); +debug("ssh_x509store_init() begin"); + if (x509store_ctx == NULL) return; + X509_STORE_set_verify_cb_func(x509store_ctx, ssh_x509store_cb); + + lookup = X509_STORE_add_lookup(x509store_ctx, X509_LOOKUP_file()); + if (lookup == NULL) abort(); + if (options.ca_certificate_file) { + if(!X509_LOOKUP_load_file(lookup, options.ca_certificate_file, X509_FILETYPE_PEM)) { + int ecode = ERR_get_error(); + error("ssh_x509store_init(): X509_LOOKUP_load_file failed: %.200s", ERR_error_string(ecode, NULL)); + } + else { + debug2( "added to x509 store CACertificateFile=%.400s", options.ca_certificate_file); + x509_store_loaded = 1; + } + } + + lookup=X509_STORE_add_lookup(x509store_ctx, X509_LOOKUP_hash_dir()); + if (lookup == NULL) abort(); + if (options.ca_certificate_path) { + if(!X509_LOOKUP_add_dir(lookup, options.ca_certificate_path, X509_FILETYPE_PEM)) { + int ecode = ERR_get_error(); + error("ssh_x509store_init(): X509_LOOKUP_add_dir failed: %.200s", ERR_error_string(ecode, NULL)); + } + else { + debug2( "added to x509 store CACertificatePath=%.400s", options.ca_certificate_path); + x509_store_loaded = 1; + } + } + + ERR_clear_error(); +debug("ssh_x509store_init() end"); +} + + +int +ssh_x509_store_check(X509 *_cert) { + int ret = 1; + + if (!x509_store_loaded) ssh_x509store_init(); + if (x509store_ctx == NULL) { + printf("ssh_x509_store_check()-mamata\n"); + ret = 0; + } + if (ret > 0 ) { + X509_STORE_CTX *csc; + csc = X509_STORE_CTX_new(); + if (csc == NULL) { + int ecode = ERR_get_error(); + error("ssh_x509_store_check(): X509_STORE_CTX_new failed: %.200s", ERR_error_string(ecode, NULL)); + ret = 0; + } + if (ret > 0) { + X509_STORE_CTX_init(csc, x509store_ctx, _cert, NULL); + if(ssh_x509_purpose >= 0) X509_STORE_CTX_set_purpose(csc, ssh_x509_purpose); + /* + if(issuer_checks) + X509_STORE_CTX_set_flags(csc, X509_V_FLAG_CB_ISSUER_CHECK); + */ + ret = X509_verify_cert(csc); + } + X509_STORE_CTX_free(csc); + } + debug3("ssh_x509_store_check() return %d", ret); + return (ret); +} diff -urP --exclude-from=exclude.list openssh-3.1p1/x509store.h openssh-3.1p1+x509c/x509store.h --- openssh-3.1p1/x509store.h Thu Jan 1 02:00:00 1970 +++ openssh-3.1p1+x509c/x509store.h Wed May 29 18:32:53 2002 @@ -0,0 +1,34 @@ +#ifndef X509STORE_H +#define X509STORE_H +/* + * Copyright (c) 2002 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 + +int (*pssh_x509_store_check)(X509 *_cert); +int ssh_x509_store_check(X509 *_cert); + + +#endif /* X509STORE_H */