diff -c -d -r openssh-3.0.2p1/Makefile.in openssh-3.0.2p1-gssapi-dce-1.0/Makefile.in *** openssh-3.0.2p1/Makefile.in Tue Jan 29 17:06:01 2002 --- openssh-3.0.2p1-gssapi-dce-1.0/Makefile.in Mon Jan 28 17:19:35 2002 *************** *** 50,56 **** 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-krb5.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 gss-serv.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 --- 50,56 ---- 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-krb5.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 gss-serv.o auth-dce.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 diff -c -d -r openssh-3.0.2p1/acconfig.h openssh-3.0.2p1-gssapi-dce-1.0/acconfig.h *** openssh-3.0.2p1/acconfig.h Tue Jan 29 17:06:01 2002 --- openssh-3.0.2p1-gssapi-dce-1.0/acconfig.h Mon Jan 28 17:55:26 2002 *************** *** 187,192 **** --- 187,198 ---- /* Define this is you want GSSAPI support in the version 2 protocol */ #undef GSSAPI + /* Define if you want DCE support */ + #undef DCE + + /* Define if you require DCE IBM kludge */ + #undef DCE_IBM_KLUDGE + /* Define if you want Kerberos 5 support */ #undef KRB5 diff -c -d -r openssh-3.0.2p1/auth-dce.c openssh-3.0.2p1-gssapi-dce-1.0/auth-dce.c *** openssh-3.0.2p1/auth-dce.c Tue Jan 29 18:20:42 2002 --- openssh-3.0.2p1-gssapi-dce-1.0/auth-dce.c Tue Jan 29 11:50:24 2002 *************** *** 0 **** --- 1,358 ---- + #include "includes.h" + + #ifdef DCE + + #define DCE_CREDS_DIR "/opt/dcelocal/var/security/creds" + + /* For IBM/Transarc DCE under Solaris */ + /* #define sec_login_krb5_add_cred _dce_ePDtOJTZvU */ + + #include + #include + + #include "auth.h" + #include "ssh.h" + #include "ssh1.h" + #include "log.h" + + static sec_login_handle_t dce_context = NULL; + + int auth_dce_password(struct passwd *pw, char *password) { + + sec_login_auth_src_t auth_src; + sec_login_tkt_info_t tkt_info; + sec_passwd_rec_t pw_entry; + boolean32 reset_passwd; + sec_passwd_str_t dce_pw; + error_status_t dce_st; + + sec_login_setup_identity(pw->pw_name, sec_login_no_flags, &dce_context, &dce_st); + if (dce_st) { + log("auth_dce_password: sec_login_setup_identity failed - %d", (int)dce_st); + return 0; + } + + pw_entry.version_number = sec_passwd_c_version_none; + pw_entry.pepper = NULL; + pw_entry.key.key_type = sec_passwd_plain; + + strncpy((char *)dce_pw, password, sec_passwd_str_max_len); + dce_pw[sec_passwd_str_max_len] = '\0'; + pw_entry.key.tagged_union.plain = &(dce_pw[0]); + + tkt_info.options = sec_login_tkt_forwardable; + sec_login_tkt_request_options(dce_context, &tkt_info, &dce_st); + + sec_login_valid_and_cert_ident(dce_context, &pw_entry, &reset_passwd, &auth_src, &dce_st); + + if (dce_st) { + log("auth_dce_password: sec_login_valid_and_cert_ident failed - %d", (int)dce_st); + sec_login_purge_context(&dce_context, &dce_st); + return 0; + } + + #ifdef DCE_IBM_KLUDGE + { + char path[MAXPATHLEN]; + char *krb5ccname; + char *pag_str; + unsigned long pag; + + sec_login_set_context(dce_context, &dce_st); + if (dce_st) { + log("auth_dce_password: sec_login_set_context failed - %d", (int)dce_st); + sec_login_purge_context(&dce_context, &dce_st); + return 0; + } + + if (krb5ccname = getenv("KRB5CCNAME")) + if (pag_str = strrchr(krb5ccname, '_')) { + pag = strtol(pag_str+1, NULL, 16); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, pw->pw_uid, pw->pw_gid); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x.data", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, pw->pw_uid, pw->pw_gid); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x.data.db", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, pw->pw_uid, pw->pw_gid); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x.nc", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, pw->pw_uid, pw->pw_gid); + } + } + #endif + + return 1; + } + + void auth_dce_setcred(char **env, u_int *envsize) { + + error_status_t dce_st; + + if (!dce_context) + return; + + #ifndef DCE_IBM_KLUDGE + sec_login_set_context(dce_context, &dce_st); + if (dce_st) { + log("auth_dce_setcred: sec_login_set_context failed - %d", (int)dce_st); + sec_login_purge_context(&dce_context, &dce_st); + return; + } + #endif + + child_set_env(&env, envsize, "KRB5CCNAME", getenv("KRB5CCNAME")); + } + + void auth_dce_cleanup() { + + error_status_t dce_st; + + if (!dce_context) + return; + + sec_login_purge_context(&dce_context, &dce_st); + if (dce_st) + log("auth_dce_cleanup: sec_login_purge_context failed - %d", (int)dce_st); + + } + + #ifdef KRB5 + + #include + + typedef int dce_krb5_int32; + typedef short dce_krb5short; + typedef unsigned char dce_krb5_octet; + typedef dce_krb5_octet dce_krb5_boolean; + typedef dce_krb5short dce_krb5_keytype; + typedef dce_krb5_int32 dce_krb5_flags; + typedef dce_krb5_int32 dce_krb5_timestamp; + typedef dce_krb5_int32 dce_krb5_addrtype; + + typedef char *dce_krb5_pointer; + + typedef struct _dce_krb5_keyblock { + dce_krb5_keytype keytype; + int length; + dce_krb5_octet *contents; + } dce_krb5_keyblock; + + typedef struct _dce_krb5_ticket_times { + dce_krb5_timestamp authtime; + dce_krb5_timestamp starttime; + dce_krb5_timestamp endtime; + dce_krb5_timestamp renew_till; + } dce_krb5_ticket_times; + + typedef struct _dce_krb5_data { + int length; + char *data; + } dce_krb5_data; + + typedef struct _dce_krb5_authdata { + int ad_type; + int length; + dce_krb5_octet *contents; + } dce_krb5_authdata; + + typedef struct dce_krb5_address { + dce_krb5_addrtype addrtype; + int length; + dce_krb5_octet *contents; + } dce_krb5_address; + + typedef struct _dce_krb5_creds { + dce_krb5_data **client; + dce_krb5_data **server; + dce_krb5_keyblock keyblock; + dce_krb5_ticket_times times; + dce_krb5_boolean is_skey; + dce_krb5_flags ticket_flags; + dce_krb5_address **addresses; + dce_krb5_data ticket; + dce_krb5_data second_ticket; + dce_krb5_pointer **authdata; + } dce_krb5_creds; + + static dce_krb5_creds *mit_to_dce_creds(krb5_context context, krb5_creds *creds) { + + static dce_krb5_creds dce_creds; + static dce_krb5_data *client_data[3]; + static dce_krb5_data client_data_realm; + static dce_krb5_data client_data_principal; + static dce_krb5_data *server_data[4]; + static dce_krb5_data server_data_realm; + static dce_krb5_data server_data_principal; + static dce_krb5_data server_data_instance; + static dce_krb5_address *dce_krb5_addresses[2]; + static dce_krb5_address dce_krb5_addr; + + krb5_error_code error_code; + char *principal_text; + char *realm_text; + + if ((error_code = krb5_unparse_name(context, creds->client, &principal_text))) { + log("auth_dce.mit_to_dce_creds: krb5_parse_name failed: %d", error_code); + return NULL; + } + + if (!(realm_text = strchr(principal_text, '@'))) { + log("auth_dce.mit_to_dce_creds: realm separator not found in principal %s", principal_text); + return NULL; + } + + *realm_text++ = '\0'; + + dce_creds.client = client_data; + client_data[0] = &client_data_realm; + client_data_realm.length = strlen(realm_text); + client_data_realm.data = realm_text; + client_data[1] = &client_data_principal; + client_data_principal.length = strlen(principal_text); + client_data_principal.data = principal_text; + client_data[2] = 0; + + dce_creds.server = server_data; + server_data[0] = &server_data_realm; + server_data_realm.length = strlen(realm_text); + server_data_realm.data = realm_text; + server_data[1] = &server_data_principal; + server_data_principal.length = strlen("krbtgt"); + server_data_principal.data = "krbtgt"; + server_data[2] = &server_data_instance; + server_data_instance.length = strlen(realm_text); + server_data_instance.data = realm_text; + server_data[3] = 0; + + dce_creds.keyblock.keytype = creds->keyblock.enctype; + dce_creds.keyblock.length = creds->keyblock.length; + dce_creds.keyblock.contents = creds->keyblock.contents; + + dce_creds.times.authtime = creds->times.authtime; + dce_creds.times.starttime = creds->times.starttime; + dce_creds.times.endtime = creds->times.endtime; + dce_creds.times.renew_till = creds->times.renew_till; + + dce_creds.is_skey = creds->is_skey; + + dce_creds.ticket_flags = creds->ticket_flags; + + dce_creds.addresses = dce_krb5_addresses; + dce_krb5_addresses[0] = &dce_krb5_addr; + dce_krb5_addr.addrtype = creds->addresses[0]->addrtype; + dce_krb5_addr.length = creds->addresses[0]->length; + dce_krb5_addr.contents = creds->addresses[0]->contents; + dce_krb5_addresses[1] = 0; + + dce_creds.ticket.length = creds->ticket.length; + dce_creds.ticket.data = creds->ticket.data; + + dce_creds.second_ticket.length = creds->second_ticket.length; + dce_creds.second_ticket.data = creds->second_ticket.data; + + dce_creds.authdata = 0; + + return &dce_creds; + } + + int auth_dce_krb5_tgt_wrapped(Authctxt *authctxt, krb5_data *tgt) + { + krb5_error_code error_code; + krb5_creds **creds; + + if ((error_code = krb5_rd_cred(authctxt->krb5_ctx, authctxt->krb5_auth_ctx, tgt, &creds, NULL))) { + log("auth_dce_krb5_tgt: krb5_rd_cred failed - %d", error_code); + return 0; + } + + return auth_dce_krb5_tgt(authctxt, *creds); + } + + int auth_dce_krb5_tgt(Authctxt *authctxt, krb5_creds *creds) + { + error_status_t dce_st; + boolean32 reset_passwd; + sec_login_auth_src_t auth_src; + dce_krb5_creds *dce_creds; + + sec_login_setup_identity(authctxt->pw->pw_name, sec_login_external_tgt|sec_login_proxy_cred, &dce_context, &dce_st); + + if (dce_st) { + log("auth_dce_krb5_tgt: sec_login_setup_identity failed - %d", (int)dce_st); + return 0; + } + + if (!(dce_creds = mit_to_dce_creds(authctxt->krb5_ctx, creds))) { + log("auth_dce_krb5_tgt: mit_to_dce_creds failed"); + return 0; + } + + sec_login_krb5_add_cred(dce_context, dce_creds, &dce_st); + if (dce_st) { + log("auth_dce_krb5_tgt: sec_login_krb5_add_cred failed - %d", (int)dce_st); + sec_login_purge_context(&dce_context, &dce_st); + return 0; + } + + sec_login_validate_identity(dce_context, NULL, &reset_passwd, &auth_src, &dce_st); + + if (dce_st) { + log("auth_dce_krb5_tgt: sec_login_validate_identity failed - %d", (int)dce_st); + sec_login_purge_context(&dce_context, &dce_st); + return 0; + } + + if (!sec_login_certify_identity(dce_context, &dce_st)) { + log("auth_dce_krb5_tgt: sec_login_certify_identity failed - %d", (int)dce_st); + sec_login_purge_context(&dce_context, &dce_st); + return 0; + } + + #ifdef DCE_IBM_KLUDGE + { + char path[MAXPATHLEN]; + char *krb5ccname; + char *pag_str; + unsigned long pag; + + sec_login_set_context(dce_context, &dce_st); + if (dce_st) { + log("auth_dce_password: sec_login_set_context failed - %d", (int)dce_st); + sec_login_purge_context(&dce_context, &dce_st); + return 0; + } + + if (krb5ccname = getenv("KRB5CCNAME")) + if (pag_str = strrchr(krb5ccname, '_')) { + pag = strtol(pag_str+1, NULL, 16); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, authctxt->pw->pw_uid, authctxt->pw->pw_gid); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x.data", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, authctxt->pw->pw_uid, authctxt->pw->pw_gid); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x.data.db", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, authctxt->pw->pw_uid, authctxt->pw->pw_gid); + + snprintf(path, MAXPATHLEN, "%s/dcecred_%08x.nc", DCE_CREDS_DIR, pag); + path[MAXPATHLEN-1] = '\0'; + chown(path, authctxt->pw->pw_uid, authctxt->pw->pw_gid); + } + } + #endif + + return 1; + } + #endif + #endif diff -c -d -r openssh-3.0.2p1/auth-krb5.c openssh-3.0.2p1-gssapi-dce-1.0/auth-krb5.c *** openssh-3.0.2p1/auth-krb5.c Tue Jan 29 17:05:56 2002 --- openssh-3.0.2p1-gssapi-dce-1.0/auth-krb5.c Tue Jan 29 12:48:32 2002 *************** *** 153,158 **** --- 153,166 ---- temporarily_use_uid(authctxt->pw); + #ifdef DCE + debug("Trying DCE-integrated Kerberos V5 TGT passing"); + + if (!auth_dce_krb5_tgt_wrapped(authctxt, tgt)) + goto dcefail; + + #else /* DCE */ + #ifdef HEIMDAL problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_fcc_ops, &ccache); #else *************** *** 195,203 **** &pname); if (problem) goto fail; ! debug("Kerberos v5 TGT accepted (%s)", pname); restore_uid(); return (1); --- 203,213 ---- &pname); if (problem) goto fail; ! debug("Kerberos v5 TGT accepted (%s)", pname); + #endif /* DCE */ + restore_uid(); return (1); *************** *** 209,214 **** --- 219,228 ---- if (ccache) krb5_cc_destroy(authctxt->krb5_ctx, ccache); + #ifdef DCE + dcefail: + #endif + restore_uid(); return (0); diff -c -d -r openssh-3.0.2p1/auth-passwd.c openssh-3.0.2p1-gssapi-dce-1.0/auth-passwd.c *** openssh-3.0.2p1/auth-passwd.c Tue Jul 3 21:21:15 2001 --- openssh-3.0.2p1-gssapi-dce-1.0/auth-passwd.c Mon Jan 28 17:37:34 2002 *************** *** 128,133 **** --- 128,139 ---- #endif if (*password == '\0' && options.permit_empty_passwd == 0) return 0; + #ifdef DCE + if (auth_dce_password(pw, password) == 1) + return 1; + /* Fall back to ordinary passwd authentication. */ + + #else /* DCE */ #ifdef KRB5 if (options.kerberos_authentication == 1) { int ret = auth_krb5_password(authctxt, password); *************** *** 136,141 **** --- 142,148 ---- /* Fall back to ordinary passwd authentication. */ } #endif + #endif /* DCE */ #ifdef HAVE_CYGWIN if (is_winnt) { HANDLE hToken = cygwin_logon_user(pw, password); diff -c -d -r openssh-3.0.2p1/auth.h openssh-3.0.2p1-gssapi-dce-1.0/auth.h *** openssh-3.0.2p1/auth.h Tue Jan 29 17:06:01 2002 --- openssh-3.0.2p1-gssapi-dce-1.0/auth.h Tue Jan 29 12:20:08 2002 *************** *** 112,120 **** --- 112,130 ---- #endif /* KRB4 */ + #ifdef DCE + void auth_dce_setcred(char **env, u_int *envsize); + void auth_dce_cleanup(); + int auth_dce_passwd(struct passwd *pw, char *password); + #endif /* DCE */ + #ifdef KRB5 int auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client); int auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt); + #ifdef DCE + int auth_dce_krb5_tgt_wrapped(Authctxt *authctxt, krb5_data *tgt); + int auth_dce_krb5_tgt(Authctxt *authctxt, krb5_creds *creds); + #endif /* DCE */ int auth_krb5_password(Authctxt *authctxt, const char *password); void krb5_cleanup_proc(void *authctxt); #endif /* KRB5 */ diff -c -d -r openssh-3.0.2p1/config.h.in openssh-3.0.2p1-gssapi-dce-1.0/config.h.in *** openssh-3.0.2p1/config.h.in Sat Dec 1 15:38:56 2001 --- openssh-3.0.2p1-gssapi-dce-1.0/config.h.in Mon Jan 28 18:54:59 2002 *************** *** 1,4 **** ! /* config.h.in. Generated from configure.ac by autoheader. */ /* $Id: acconfig.h,v 1.119 2001/11/03 19:09:33 tim Exp $ */ #ifndef _CONFIG_H --- 1,4 ---- ! /* config.h.in. Generated automatically from configure.ac by autoheader. */ /* $Id: acconfig.h,v 1.119 2001/11/03 19:09:33 tim Exp $ */ #ifndef _CONFIG_H *************** *** 8,13 **** --- 8,14 ---- /* Please make your changes there */ + /* Define to a Set Process Title type if your system is */ /* supported by bsd-setproctitle.c */ #undef SPT_TYPE *************** *** 184,195 **** --- 185,214 ---- /* Define if libc defines __progname */ #undef HAVE___PROGNAME + /* Define this is you want GSSAPI support in the version 2 protocol */ + #undef GSSAPI + + /* Define if you want DCE support */ + #undef DCE + + /* Define if you require DCE IBM kludge */ + #undef DCE_IBM_KLUDGE + + /* Define if you want Kerberos 5 support */ + #undef KRB5 + + /* Define this if you are using Heimdal version of Kerberos V5 */ + #undef HEIMDAL + /* Define if you want Kerberos 4 support */ #undef KRB4 /* Define if you want AFS support */ #undef AFS + /* Define if you want GSI/Globus authentication support */ + #undef GSI + /* Define if you want S/Key support */ #undef SKEY *************** *** 446,451 **** --- 465,473 ---- /* Define if you have the header file. */ #undef HAVE_GLOB_H + + /* Define if you have the header file. */ + #undef HAVE_GSSAPI_H /* Define if you have the `inet_aton' function. */ #undef HAVE_INET_ATON diff -c -d -r openssh-3.0.2p1/configure openssh-3.0.2p1-gssapi-dce-1.0/configure *** openssh-3.0.2p1/configure Sat Dec 1 15:38:55 2001 --- openssh-3.0.2p1-gssapi-dce-1.0/configure Mon Jan 28 18:55:21 2002 *************** *** 1,6 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by Autoconf 2.52d. # # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. --- 1,6 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by Autoconf 2.52. # # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 # Free Software Foundation, Inc. *************** *** 20,29 **** # Sed expression to map a string onto a valid CPP name. as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" - ## --------------------- ## - ## M4sh Initialization. ## - ## --------------------- ## - # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh --- 20,25 ---- *************** *** 557,566 **** fi if test ! -r $srcdir/$ac_unique_file; then if test "$ac_srcdir_defaulted" = yes; then ! { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 { (exit 1); exit 1; }; } else ! { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi fi --- 553,562 ---- fi if test ! -r $srcdir/$ac_unique_file; then if test "$ac_srcdir_defaulted" = yes; then ! { echo "$as_me: error: cannot find sources in $ac_confdir or .." >&2 { (exit 1); exit 1; }; } else ! { echo "$as_me: error: cannot find sources in $srcdir" >&2 { (exit 1); exit 1; }; } fi fi *************** *** 604,610 **** if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. ! cat <<_ACEOF \`configure' configures this package to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... --- 600,606 ---- if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. ! cat <&2 fi cd $ac_popdir done --- 733,772 ---- Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. ! EOF fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. ac_popdir=`pwd` ! for ac_subdir in : $ac_subdirs_all; do test "x$ac_subdir" = x: && continue ! cd $ac_subdir ! # A "../" for each directory in /$ac_subdir. ! ac_dots=`echo $ac_subdir | ! sed 's,^\./,,;s,[^/]$,&/,;s,[^/]*/,../,g'` ! case $srcdir in ! .) # No --srcdir option. We are building in place. ! ac_sub_srcdir=$srcdir ;; ! [\\/]* | ?:[\\/]* ) # Absolute path. ! ac_sub_srcdir=$srcdir/$ac_subdir ;; ! *) # Relative path. ! ac_sub_srcdir=$ac_dots$srcdir/$ac_subdir ;; ! esac # Check for guested configure; otherwise get Cygnus style configure. ! if test -f $ac_sub_srcdir/configure.gnu; then echo ! $SHELL $ac_sub_srcdir/configure.gnu --help=recursive ! elif test -f $ac_sub_srcdir/configure; then echo ! $SHELL $ac_sub_srcdir/configure --help=recursive ! elif test -f $ac_sub_srcdir/configure.ac || ! test -f $ac_sub_srcdir/configure.in; then echo $ac_configure --help else ! echo "$as_me: WARNING: no configuration information is in $ac_subdir" >&2 fi cd $ac_popdir done *************** *** 784,814 **** test -n "$ac_init_help" && exit 0 if $ac_init_version; then ! cat <<\_ACEOF Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. ! _ACEOF exit 0 fi exec 5>config.log ! cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was ! generated by GNU Autoconf 2.52d. Invocation command line was $ $0 $@ ! _ACEOF { cat <<_ASUNAME ! ## --------- ## ! ## Platform. ## ! ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` --- 774,804 ---- test -n "$ac_init_help" && exit 0 if $ac_init_version; then ! cat <<\EOF Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. ! EOF exit 0 fi exec 5>config.log ! cat >&5 </dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` *************** *** 832,843 **** _ASUNAME } >&5 ! cat >&5 <<_ACEOF ! ## ----------- ## ! ## Core tests. ## ! ## ----------- ## ! _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. --- 822,833 ---- _ASUNAME } >&5 ! cat >&5 <&1 | case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in --- 854,867 ---- # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. trap 'exit_status=$? # Save into config.log some information that might help in debugging. ! echo >&5 ! echo "## ----------------- ##" >&5 ! echo "## Cache variables. ##" >&5 ! echo "## ----------------- ##" >&5 ! echo >&5 ! # The following way of writing the cache mishandles newlines in values, { (set) 2>&1 | case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in *************** *** 890,911 **** "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; ! } ! echo ! if test -s confdefs.h; then ! cat <<\_ASBOX ! ## ----------- ## ! ## confdefs.h. ## ! ## ----------- ## ! _ASBOX ! echo ! sed "/^$/d" confdefs.h ! echo ! fi ! test "$ac_signal" != 0 && ! echo "$as_me: caught signal $ac_signal" ! echo "$as_me: exit $exit_status" ! } >&5 rm -rf conftest* confdefs* core core.* *.core conf$$* $ac_clean_files && exit $exit_status ' 0 --- 875,894 ---- "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; esac; ! } >&5 ! sed "/^$/d" confdefs.h >conftest.log ! if test -s conftest.log; then ! echo >&5 ! echo "## ------------ ##" >&5 ! echo "## confdefs.h. ##" >&5 ! echo "## ------------ ##" >&5 ! echo >&5 ! cat conftest.log >&5 ! fi ! (echo; echo) >&5 ! test "$ac_signal" != 0 && ! echo "$as_me: caught signal $ac_signal" >&5 ! echo "$as_me: exit $exit_status" >&5 rm -rf conftest* confdefs* core core.* *.core conf$$* $ac_clean_files && exit $exit_status ' 0 *************** *** 930,938 **** fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then ! { 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" fi done --- 913,921 ---- fi for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then ! { echo "$as_me:916: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} ! cat "$ac_site_file" >&5 . "$ac_site_file" fi done *************** *** 941,947 **** # 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:944: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; --- 924,930 ---- # 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:927: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . $cache_file;; *************** *** 949,955 **** esac fi else ! { echo "$as_me:952: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi --- 932,938 ---- esac fi else ! { echo "$as_me:935: creating cache $cache_file" >&5 echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi *************** *** 965,985 **** eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) ! { 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: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: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:980: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} ! { echo "$as_me:982: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; --- 948,968 ---- eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) ! { echo "$as_me:951: 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:955: 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:961: 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:963: former value: $ac_old_val" >&5 echo "$as_me: former value: $ac_old_val" >&2;} ! { echo "$as_me:965: current value: $ac_new_val" >&5 echo "$as_me: current value: $ac_new_val" >&2;} ac_cache_corrupted=: fi;; *************** *** 998,1006 **** fi done if $ac_cache_corrupted; then ! { 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: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 --- 981,989 ---- fi done if $ac_cache_corrupted; then ! { echo "$as_me:984: 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:986: 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 *************** *** 1020,1029 **** echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh ! if { (echo "$as_me:1023: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? ! echo "$as_me:1026: \$? = $ac_status" >&5 (exit $ac_status); }; then ac_path_separator=';' else --- 1003,1012 ---- echo "#! $SHELL" >conftest.sh echo "exit 0" >>conftest.sh chmod +x conftest.sh ! if { (echo "$as_me:1006: PATH=\".;.\"; conftest.sh") >&5 (PATH=".;."; conftest.sh) 2>&5 ac_status=$? ! echo "$as_me:1009: \$? = $ac_status" >&5 (exit $ac_status); }; then ac_path_separator=';' else *************** *** 1042,1048 **** 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: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 --- 1025,1031 ---- 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:1028: 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 *************** *** 1057,1063 **** 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:1060: found $ac_dir/$ac_word" >&5 break done --- 1040,1046 ---- 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:1043: found $ac_dir/$ac_word" >&5 break done *************** *** 1065,1074 **** fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1068: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1071: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 1048,1057 ---- fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1051: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1054: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 1077,1083 **** 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: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 --- 1060,1066 ---- 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:1063: 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 *************** *** 1092,1098 **** test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="gcc" ! echo "$as_me:1095: found $ac_dir/$ac_word" >&5 break done --- 1075,1081 ---- test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="gcc" ! echo "$as_me:1078: found $ac_dir/$ac_word" >&5 break done *************** *** 1100,1109 **** fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:1103: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:1106: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 1083,1092 ---- fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:1086: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:1089: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 1116,1122 **** 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: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 --- 1099,1105 ---- 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:1102: 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 *************** *** 1131,1137 **** 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:1134: found $ac_dir/$ac_word" >&5 break done --- 1114,1120 ---- 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:1117: found $ac_dir/$ac_word" >&5 break done *************** *** 1139,1148 **** fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1142: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1145: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 1122,1131 ---- fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1125: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1128: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 1151,1157 **** 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: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 --- 1134,1140 ---- 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:1137: 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 *************** *** 1166,1172 **** test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="cc" ! echo "$as_me:1169: found $ac_dir/$ac_word" >&5 break done --- 1149,1155 ---- test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_CC="cc" ! echo "$as_me:1152: found $ac_dir/$ac_word" >&5 break done *************** *** 1174,1183 **** fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:1177: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:1180: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 1157,1166 ---- fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:1160: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:1163: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 1190,1196 **** 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: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 --- 1173,1179 ---- 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:1176: 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 *************** *** 1210,1216 **** continue fi ac_cv_prog_CC="cc" ! echo "$as_me:1213: found $ac_dir/$ac_word" >&5 break done --- 1193,1199 ---- continue fi ac_cv_prog_CC="cc" ! echo "$as_me:1196: found $ac_dir/$ac_word" >&5 break done *************** *** 1232,1241 **** fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1235: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1238: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 1215,1224 ---- fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1218: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1221: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 1246,1252 **** 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: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 --- 1229,1235 ---- 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:1232: 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 *************** *** 1261,1267 **** 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:1264: found $ac_dir/$ac_word" >&5 break done --- 1244,1250 ---- 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:1247: found $ac_dir/$ac_word" >&5 break done *************** *** 1269,1278 **** fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1272: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1275: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 1252,1261 ---- fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:1255: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:1258: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 1285,1291 **** 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: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 --- 1268,1274 ---- 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:1271: 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 *************** *** 1300,1306 **** 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:1303: found $ac_dir/$ac_word" >&5 break done --- 1283,1289 ---- 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:1286: found $ac_dir/$ac_word" >&5 break done *************** *** 1308,1317 **** fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:1311: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:1314: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 1291,1300 ---- fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:1294: result: $ac_ct_CC" >&5 echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:1297: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 1323,1362 **** fi ! 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:1331:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` ! { (eval echo "$as_me:1334: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? ! echo "$as_me:1337: \$? = $ac_status" >&5 (exit $ac_status); } ! { (eval echo "$as_me:1339: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? ! echo "$as_me:1342: \$? = $ac_status" >&5 (exit $ac_status); } ! { (eval echo "$as_me:1344: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? ! echo "$as_me:1347: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF ! #line 1351 "configure" #include "confdefs.h" - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1306,1339 ---- fi ! test -z "$CC" && { { echo "$as_me:1309: 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:1314:" \ "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` ! { (eval echo "$as_me:1317: \"$ac_compiler --version &5\"") >&5 (eval $ac_compiler --version &5) 2>&5 ac_status=$? ! echo "$as_me:1320: \$? = $ac_status" >&5 (exit $ac_status); } ! { (eval echo "$as_me:1322: \"$ac_compiler -v &5\"") >&5 (eval $ac_compiler -v &5) 2>&5 ac_status=$? ! echo "$as_me:1325: \$? = $ac_status" >&5 (exit $ac_status); } ! { (eval echo "$as_me:1327: \"$ac_compiler -V &5\"") >&5 (eval $ac_compiler -V &5) 2>&5 ac_status=$? ! echo "$as_me:1330: \$? = $ac_status" >&5 (exit $ac_status); } cat >conftest.$ac_ext <<_ACEOF ! #line 1334 "configure" #include "confdefs.h" int main () { *************** *** 1370,1382 **** # 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: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:1376: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? ! 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 --- 1347,1359 ---- # 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:1350: 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:1353: \"$ac_link_default\"") >&5 (eval $ac_link_default) 2>&5 ac_status=$? ! echo "$as_me:1356: \$? = $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 *************** *** 1385,1391 **** ls a.out conftest 2>/dev/null; ls a.* conftest.* 2>/dev/null`; do case $ac_file in ! *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb | *.xSYM ) ;; a.out ) # We found the default executable, but exeext='' is most # certainly right. break;; --- 1362,1368 ---- ls a.out conftest 2>/dev/null; ls a.* conftest.* 2>/dev/null`; do case $ac_file in ! *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;; a.out ) # We found the default executable, but exeext='' is most # certainly right. break;; *************** *** 1399,1432 **** else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&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: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: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:1419: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! 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: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;} --- 1376,1409 ---- else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! { { echo "$as_me:1379: 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:1385: 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:1390: 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:1396: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1399: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else ! { { echo "$as_me:1406: 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;} *************** *** 1434,1457 **** fi fi fi ! 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:1444: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 ! echo "$as_me:1446: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 ! echo "$as_me:1449: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 ! if { (eval echo "$as_me:1451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! 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 --- 1411,1434 ---- fi fi fi ! echo "$as_me:1414: 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:1421: checking whether we are cross compiling" >&5 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 ! echo "$as_me:1423: result: $cross_compiling" >&5 echo "${ECHO_T}$cross_compiling" >&6 ! echo "$as_me:1426: checking for executable suffix" >&5 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 ! if { (eval echo "$as_me:1428: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:1431: \$? = $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 *************** *** 1467,1499 **** esac done else ! { { 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: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: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 1488 "configure" #include "confdefs.h" - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1444,1470 ---- esac done else ! { { echo "$as_me:1447: 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:1453: 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:1459: 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 1465 "configure" #include "confdefs.h" int main () { *************** *** 1503,1512 **** } _ACEOF rm -f conftest.o conftest.obj ! if { (eval echo "$as_me:1506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! 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 --- 1474,1483 ---- } _ACEOF rm -f conftest.o conftest.obj ! if { (eval echo "$as_me:1477: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1480: \$? = $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 *************** *** 1518,1549 **** else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&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:1528: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT ! 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 1538 "configure" #include "confdefs.h" - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1489,1514 ---- else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! { { echo "$as_me:1492: 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:1499: result: $ac_cv_objext" >&5 echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT ! echo "$as_me:1503: 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 1509 "configure" #include "confdefs.h" int main () { *************** *** 1556,1571 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1559: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1562: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1568: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else --- 1521,1536 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1524: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1527: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1533: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_compiler_gnu=yes else *************** *** 1577,1603 **** ac_cv_c_compiler_gnu=$ac_compiler_gnu fi ! 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: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 1592 "configure" #include "confdefs.h" - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1542,1562 ---- ac_cv_c_compiler_gnu=$ac_compiler_gnu fi ! echo "$as_me:1545: 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:1551: 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 1557 "configure" #include "confdefs.h" int main () { *************** *** 1607,1622 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1610: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1613: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1616: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1619: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else --- 1566,1581 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1569: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else *************** *** 1626,1632 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! 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 --- 1585,1591 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:1588: 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 *************** *** 1653,1668 **** #endif _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1656: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1659: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1662: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1665: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ --- 1612,1627 ---- #endif _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1615: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1618: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1624: \$? = $ac_status" >&5 (exit $ac_status); }; }; then for ac_declaration in \ ''\ *************** *** 1674,1689 **** 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF ! #line 1677 "configure" #include "confdefs.h" #include $ac_declaration - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1633,1642 ---- 'void exit (int);' do cat >conftest.$ac_ext <<_ACEOF ! #line 1636 "configure" #include "confdefs.h" #include $ac_declaration int main () { *************** *** 1693,1708 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1696: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1699: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1702: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1705: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else --- 1646,1661 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1649: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1652: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1655: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1658: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else *************** *** 1712,1726 **** fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF ! #line 1715 "configure" #include "confdefs.h" $ac_declaration - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1665,1673 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF ! #line 1668 "configure" #include "confdefs.h" $ac_declaration int main () { *************** *** 1730,1745 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1733: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1736: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1739: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1742: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else --- 1677,1692 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1680: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1683: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1686: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1689: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else *************** *** 1783,1789 **** fi done if test -z "$ac_aux_dir"; then ! { { 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 --- 1730,1736 ---- fi done if test -z "$ac_aux_dir"; then ! { { echo "$as_me:1733: 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 *************** *** 1793,1803 **** # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || ! { { 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: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 --- 1740,1750 ---- # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || ! { { echo "$as_me:1743: error: cannot run $ac_config_sub" >&5 echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } ! echo "$as_me:1747: 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 *************** *** 1806,1828 **** test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && ! { { 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: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: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: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 --- 1753,1775 ---- test -z "$ac_cv_build_alias" && ac_cv_build_alias=`$ac_config_guess` test -z "$ac_cv_build_alias" && ! { { echo "$as_me:1756: 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:1760: 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:1765: 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:1772: 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 *************** *** 1831,1866 **** 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: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: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: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 1853 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1778,1808 ---- 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:1781: 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:1786: 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:1793: 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 ! ac_cv_c_bigendian=unknown ! # See if sys/param.h defines the BYTE_ORDER macro. cat >conftest.$ac_ext <<_ACEOF ! #line 1801 "configure" #include "confdefs.h" #include #include int main () { *************** *** 1873,1902 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1876: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1879: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1882: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! 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 1889 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 1815,1838 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1818: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1827: \$? = $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 1831 "configure" #include "confdefs.h" #include #include int main () { *************** *** 1909,1924 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1912: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1915: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1921: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=yes else --- 1845,1860 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:1848: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:1851: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:1854: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1857: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=yes else *************** *** 1930,1993 **** else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 - # It does not; compile a test program. - if test "$cross_compiling" = yes; then - # try to guess the endianess by grep'ing values into an object file - ac_cv_c_bigendian=unknown - cat >conftest.$ac_ext <<_ACEOF - #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 }; - void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; } - short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; - short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; - void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; } - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif - int - main () - { - _ascii (); _ebcdic (); - ; - return 0; - } - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:1961: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:1964: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:1967: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - 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 - fi - if fgrep LiTTleEnDian conftest.$ac_objext >/dev/null ; then - if test "$ac_cv_c_bigendian" = unknown; then - ac_cv_c_bigendian=no - else - # finding both strings is unlikely to happen, but who knows? - ac_cv_c_bigendian=unknown - fi - fi - else - echo "$as_me: failed program was:" >&5 - cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF ! #line 1990 "configure" #include "confdefs.h" int main () --- 1866,1881 ---- else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext + if test $ac_cv_c_bigendian = unknown; then + if test "$cross_compiling" = yes; then + { { echo "$as_me:1873: 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 1878 "configure" #include "confdefs.h" int main () *************** *** 2003,2017 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:2006: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:2009: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:2011: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2014: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=no else --- 1891,1905 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:1894: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:1897: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:1899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:1902: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_bigendian=no else *************** *** 2023,2048 **** rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi - rm -f conftest.$ac_objext conftest.$ac_ext fi ! 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) ! cat >>confdefs.h <<\_ACEOF #define WORDS_BIGENDIAN 1 ! _ACEOF ! ;; ! no) ! ;; ! *) ! { { 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;} ! { (exit 1); exit 1; }; } ;; ! esac # Checks for programs. ac_ext=c --- 1911,1926 ---- rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi ! echo "$as_me:1915: result: $ac_cv_c_bigendian" >&5 echo "${ECHO_T}$ac_cv_c_bigendian" >&6 ! if test $ac_cv_c_bigendian = yes; then ! cat >>confdefs.h <<\EOF #define WORDS_BIGENDIAN 1 ! EOF ! ! fi # Checks for programs. ac_ext=c *************** *** 2050,2056 **** 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: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 --- 1928,1934 ---- 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:1931: 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 *************** *** 2071,2088 **** # 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 2074 "configure" #include "confdefs.h" #include Syntax error _ACEOF ! 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:2085: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 1949,1966 ---- # 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 1952 "configure" #include "confdefs.h" #include Syntax error _ACEOF ! if { (eval echo "$as_me:1957: \"$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:1963: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 2105,2121 **** # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF ! #line 2108 "configure" #include "confdefs.h" #include _ACEOF ! 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:2118: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 1983,1999 ---- # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF ! #line 1986 "configure" #include "confdefs.h" #include _ACEOF ! if { (eval echo "$as_me:1990: \"$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:1996: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 2152,2158 **** else ac_cv_prog_CPP=$CPP fi ! echo "$as_me:2155: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes --- 2030,2036 ---- else ac_cv_prog_CPP=$CPP fi ! echo "$as_me:2033: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes *************** *** 2162,2179 **** # 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 2165 "configure" #include "confdefs.h" #include Syntax error _ACEOF ! 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:2176: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 2040,2057 ---- # 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 2043 "configure" #include "confdefs.h" #include Syntax error _ACEOF ! if { (eval echo "$as_me:2048: \"$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:2054: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 2196,2212 **** # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF ! #line 2199 "configure" #include "confdefs.h" #include _ACEOF ! 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:2209: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 2074,2090 ---- # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF ! #line 2077 "configure" #include "confdefs.h" #include _ACEOF ! if { (eval echo "$as_me:2081: \"$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:2087: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 2234,2240 **** if $ac_preproc_ok; then : else ! { { 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 --- 2112,2118 ---- if $ac_preproc_ok; then : else ! { { echo "$as_me:2115: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi *************** *** 2248,2254 **** 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: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 --- 2126,2132 ---- 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:2129: 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 *************** *** 2263,2269 **** 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:2266: found $ac_dir/$ac_word" >&5 break done --- 2141,2147 ---- 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:2144: found $ac_dir/$ac_word" >&5 break done *************** *** 2271,2280 **** fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then ! echo "$as_me:2274: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else ! echo "$as_me:2277: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 2149,2158 ---- fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then ! echo "$as_me:2152: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else ! echo "$as_me:2155: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 2283,2289 **** 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: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 --- 2161,2167 ---- 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:2164: 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 *************** *** 2298,2304 **** test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" ! echo "$as_me:2301: found $ac_dir/$ac_word" >&5 break done --- 2176,2182 ---- test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" ! echo "$as_me:2179: found $ac_dir/$ac_word" >&5 break done *************** *** 2307,2316 **** fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then ! echo "$as_me:2310: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else ! echo "$as_me:2313: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 2185,2194 ---- fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then ! echo "$as_me:2188: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else ! echo "$as_me:2191: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 2331,2337 **** # 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: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 --- 2209,2215 ---- # 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:2212: 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 *************** *** 2380,2386 **** INSTALL=$ac_install_sh fi fi ! echo "$as_me:2383: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. --- 2258,2264 ---- INSTALL=$ac_install_sh fi fi ! echo "$as_me:2261: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. *************** *** 2393,2399 **** # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 ! 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 --- 2271,2277 ---- # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 ! echo "$as_me:2274: 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 *************** *** 2410,2416 **** 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:2413: found $ac_dir/$ac_word" >&5 break fi done --- 2288,2294 ---- 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:2291: found $ac_dir/$ac_word" >&5 break fi done *************** *** 2421,2430 **** AR=$ac_cv_path_AR if test -n "$AR"; then ! echo "$as_me:2424: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else ! echo "$as_me:2427: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 2299,2308 ---- AR=$ac_cv_path_AR if test -n "$AR"; then ! echo "$as_me:2302: result: $AR" >&5 echo "${ECHO_T}$AR" >&6 else ! echo "$as_me:2305: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 2432,2438 **** 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: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 --- 2310,2316 ---- 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:2313: 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 *************** *** 2449,2455 **** 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:2452: found $ac_dir/$ac_word" >&5 break fi done --- 2327,2333 ---- 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:2330: found $ac_dir/$ac_word" >&5 break fi done *************** *** 2460,2469 **** PERL=$ac_cv_path_PERL if test -n "$PERL"; then ! echo "$as_me:2463: result: $PERL" >&5 echo "${ECHO_T}$PERL" >&6 else ! echo "$as_me:2466: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 2338,2347 ---- PERL=$ac_cv_path_PERL if test -n "$PERL"; then ! echo "$as_me:2341: result: $PERL" >&5 echo "${ECHO_T}$PERL" >&6 else ! echo "$as_me:2344: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 2472,2478 **** # Extract the first word of "ent", so it can be a program name with args. set dummy ent; ac_word=$2 ! 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 --- 2350,2356 ---- # Extract the first word of "ent", so it can be a program name with args. set dummy ent; ac_word=$2 ! echo "$as_me:2353: 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 *************** *** 2489,2495 **** 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:2492: found $ac_dir/$ac_word" >&5 break fi done --- 2367,2373 ---- 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:2370: found $ac_dir/$ac_word" >&5 break fi done *************** *** 2500,2509 **** ENT=$ac_cv_path_ENT if test -n "$ENT"; then ! echo "$as_me:2503: result: $ENT" >&5 echo "${ECHO_T}$ENT" >&6 else ! echo "$as_me:2506: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 2378,2387 ---- ENT=$ac_cv_path_ENT if test -n "$ENT"; then ! echo "$as_me:2381: result: $ENT" >&5 echo "${ECHO_T}$ENT" >&6 else ! echo "$as_me:2384: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 2511,2517 **** 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: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 --- 2389,2395 ---- 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:2392: 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 *************** *** 2528,2534 **** 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:2531: found $ac_dir/$ac_word" >&5 break fi done --- 2406,2412 ---- 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:2409: found $ac_dir/$ac_word" >&5 break fi done *************** *** 2539,2548 **** FILEPRIV=$ac_cv_path_FILEPRIV if test -n "$FILEPRIV"; then ! echo "$as_me:2542: result: $FILEPRIV" >&5 echo "${ECHO_T}$FILEPRIV" >&6 else ! echo "$as_me:2545: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 2417,2426 ---- FILEPRIV=$ac_cv_path_FILEPRIV if test -n "$FILEPRIV"; then ! echo "$as_me:2420: result: $FILEPRIV" >&5 echo "${ECHO_T}$FILEPRIV" >&6 else ! echo "$as_me:2423: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 2552,2558 **** # Extract the first word of "bash", so it can be a program name with args. set dummy bash; ac_word=$2 ! 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 --- 2430,2436 ---- # Extract the first word of "bash", so it can be a program name with args. set dummy bash; ac_word=$2 ! echo "$as_me:2433: 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 *************** *** 2569,2575 **** 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:2572: found $ac_dir/$ac_word" >&5 break fi done --- 2447,2453 ---- 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:2450: found $ac_dir/$ac_word" >&5 break fi done *************** *** 2580,2595 **** TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then ! echo "$as_me:2583: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else ! 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: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 --- 2458,2473 ---- TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then ! echo "$as_me:2461: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else ! echo "$as_me:2464: 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:2470: 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 *************** *** 2606,2612 **** 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:2609: found $ac_dir/$ac_word" >&5 break fi done --- 2484,2490 ---- 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:2487: found $ac_dir/$ac_word" >&5 break fi done *************** *** 2617,2632 **** TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then ! echo "$as_me:2620: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else ! 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: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 --- 2495,2510 ---- TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then ! echo "$as_me:2498: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else ! echo "$as_me:2501: 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:2507: 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 *************** *** 2643,2649 **** 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:2646: found $ac_dir/$ac_word" >&5 break fi done --- 2521,2527 ---- 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:2524: found $ac_dir/$ac_word" >&5 break fi done *************** *** 2654,2663 **** TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then ! echo "$as_me:2657: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else ! echo "$as_me:2660: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 2532,2541 ---- TEST_MINUS_S_SH=$ac_cv_path_TEST_MINUS_S_SH if test -n "$TEST_MINUS_S_SH"; then ! echo "$as_me:2535: result: $TEST_MINUS_S_SH" >&5 echo "${ECHO_T}$TEST_MINUS_S_SH" >&6 else ! echo "$as_me:2538: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 2669,2675 **** fi; if test "$enable_largefile" != no; then ! 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 --- 2547,2553 ---- fi; if test "$enable_largefile" != no; then ! echo "$as_me:2550: 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 *************** *** 2681,2687 **** # 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 2684 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. --- 2559,2565 ---- # 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 2562 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. *************** *** 2692,2703 **** int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 2570,2575 ---- *************** *** 2707,2722 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2710: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2719: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else --- 2579,2594 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2582: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2585: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2591: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else *************** *** 2726,2741 **** rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2729: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else --- 2598,2613 ---- rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2601: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2604: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2607: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2610: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else *************** *** 2749,2761 **** rm -f conftest.$ac_ext fi fi ! 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: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 --- 2621,2633 ---- rm -f conftest.$ac_ext fi fi ! echo "$as_me:2624: 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:2630: 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 *************** *** 2763,2769 **** while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF ! #line 2766 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. --- 2635,2641 ---- while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF ! #line 2638 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. *************** *** 2774,2785 **** int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 2646,2651 ---- *************** *** 2789,2804 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2792: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else --- 2655,2670 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2658: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2661: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2664: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2667: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else *************** *** 2807,2813 **** fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF ! #line 2810 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include --- 2673,2679 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF ! #line 2676 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include *************** *** 2819,2830 **** int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 2685,2690 ---- *************** *** 2834,2849 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2837: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else --- 2694,2709 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2697: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2700: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2706: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else *************** *** 2854,2870 **** break done fi ! 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 ! cat >>confdefs.h <<_ACEOF #define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits ! _ACEOF fi rm -f conftest* ! 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 --- 2714,2730 ---- break done fi ! echo "$as_me:2717: 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 ! cat >>confdefs.h <&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 *************** *** 2872,2878 **** while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF ! #line 2875 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. --- 2732,2738 ---- while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF ! #line 2735 "configure" #include "confdefs.h" #include /* Check that off_t can represent 2**63 - 1 correctly. *************** *** 2883,2894 **** int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 2743,2748 ---- *************** *** 2898,2913 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2901: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2904: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2907: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2910: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else --- 2752,2767 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2755: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2758: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2764: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else *************** *** 2916,2922 **** fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF ! #line 2919 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include --- 2770,2776 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF ! #line 2773 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include *************** *** 2928,2939 **** int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 2782,2787 ---- *************** *** 2943,2958 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2946: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2949: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2952: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2955: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else --- 2791,2806 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2794: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2797: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2800: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2803: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else *************** *** 2963,2997 **** break done fi ! 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 ! cat >>confdefs.h <<_ACEOF #define _LARGE_FILES $ac_cv_sys_large_files ! _ACEOF fi rm -f conftest* fi if test -z "$AR" ; then ! { { 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 # Use LOGIN_PROGRAM from environment if possible if test ! -z "$LOGIN_PROGRAM" ; then ! cat >>confdefs.h <<_ACEOF #define LOGIN_PROGRAM_FALLBACK "$LOGIN_PROGRAM" ! _ACEOF else # 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: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 --- 2811,2845 ---- break done fi ! echo "$as_me:2814: 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 ! cat >>confdefs.h <&5 echo "$as_me: error: *** 'ar' missing, please install or fix your \$PATH ***" >&2;} { (exit 1); exit 1; }; } fi # Use LOGIN_PROGRAM from environment if possible if test ! -z "$LOGIN_PROGRAM" ; then ! cat >>confdefs.h <&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 *************** *** 3008,3014 **** 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:3011: found $ac_dir/$ac_word" >&5 break fi done --- 2856,2862 ---- 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:2859: found $ac_dir/$ac_word" >&5 break fi done *************** *** 3019,3035 **** LOGIN_PROGRAM_FALLBACK=$ac_cv_path_LOGIN_PROGRAM_FALLBACK if test -n "$LOGIN_PROGRAM_FALLBACK"; then ! echo "$as_me:3022: result: $LOGIN_PROGRAM_FALLBACK" >&5 echo "${ECHO_T}$LOGIN_PROGRAM_FALLBACK" >&6 else ! echo "$as_me:3025: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then ! cat >>confdefs.h <<_ACEOF #define LOGIN_PROGRAM_FALLBACK "$LOGIN_PROGRAM_FALLBACK" ! _ACEOF fi fi --- 2867,2883 ---- LOGIN_PROGRAM_FALLBACK=$ac_cv_path_LOGIN_PROGRAM_FALLBACK if test -n "$LOGIN_PROGRAM_FALLBACK"; then ! echo "$as_me:2870: result: $LOGIN_PROGRAM_FALLBACK" >&5 echo "${ECHO_T}$LOGIN_PROGRAM_FALLBACK" >&6 else ! echo "$as_me:2873: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test ! -z "$LOGIN_PROGRAM_FALLBACK" ; then ! cat >>confdefs.h <&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 --- 2886,2892 ---- LD=$CC fi ! echo "$as_me:2889: 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 *************** *** 3046,3052 **** ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF ! #line 3049 "configure" #include "confdefs.h" #include #include --- 2894,2900 ---- ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF ! #line 2897 "configure" #include "confdefs.h" #include #include *************** *** 3076,3087 **** int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 2924,2929 ---- *************** *** 3101,3116 **** do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext ! if { (eval echo "$as_me:3104: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:3107: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:3110: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3113: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break --- 2943,2958 ---- do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2946: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:2949: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:2952: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:2955: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break *************** *** 3127,3141 **** case "x$ac_cv_prog_cc_stdc" in x|xno) ! echo "$as_me:3130: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) ! 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: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 --- 2969,2983 ---- case "x$ac_cv_prog_cc_stdc" in x|xno) ! echo "$as_me:2972: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) ! echo "$as_me:2975: 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:2980: 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 *************** *** 3143,3149 **** ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF ! #line 3146 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } --- 2985,2991 ---- ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF ! #line 2988 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } *************** *** 3152,3167 **** _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:3155: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:3158: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:3161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3164: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else --- 2994,3009 ---- _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:2997: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:3000: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:3003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3006: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else *************** *** 3172,3189 **** done fi ! 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) ;; no) ! cat >>confdefs.h <<\_ACEOF #define inline ! _ACEOF ;; ! *) cat >>confdefs.h <<_ACEOF #define inline $ac_cv_c_inline ! _ACEOF ;; esac --- 3014,3031 ---- done fi ! echo "$as_me:3017: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; no) ! cat >>confdefs.h <<\EOF #define inline ! EOF ;; ! *) cat >>confdefs.h <&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 3209 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char authenticate (); below. */ --- 3042,3054 ---- if (test "$LD" != "gcc" && test -z "$blibpath"); then blibpath="/usr/lib:/lib:/usr/local/lib" fi ! echo "$as_me:3045: 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 3051 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char authenticate (); below. */ *************** *** 3220,3231 **** char authenticate (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 3062,3067 ---- *************** *** 3243,3258 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3246: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3249: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3255: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_authenticate=yes else --- 3079,3094 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3082: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3085: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3088: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3091: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_authenticate=yes else *************** *** 3262,3322 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! 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 #define WITH_AIXAUTHENTICATE 1 ! _ACEOF fi ! cat >>confdefs.h <<\_ACEOF #define BROKEN_GETADDRINFO 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_LASTLOG 1 ! _ACEOF ;; *-*-cygwin*) LIBS="$LIBS -lregex /usr/lib/textmode.o" ! cat >>confdefs.h <<\_ACEOF #define HAVE_CYGWIN 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_SHADOW 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define IPV4_DEFAULT 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define IP_TOS_IS_BROKEN 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define NO_X11_UNIX_SOCKETS 1 ! _ACEOF ;; *-*-dgux*) ! cat >>confdefs.h <<\_ACEOF #define IP_TOS_IS_BROKEN 1 ! _ACEOF ;; *-*-darwin*) ! cat >>confdefs.h <<\_ACEOF #define BROKEN_GETADDRINFO 1 ! _ACEOF ;; *-*-hpux10*) --- 3098,3158 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3101: result: $ac_cv_func_authenticate" >&5 echo "${ECHO_T}$ac_cv_func_authenticate" >&6 if test $ac_cv_func_authenticate = yes; then ! cat >>confdefs.h <<\EOF #define WITH_AIXAUTHENTICATE 1 ! EOF fi ! cat >>confdefs.h <<\EOF #define BROKEN_GETADDRINFO 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_LASTLOG 1 ! EOF ;; *-*-cygwin*) LIBS="$LIBS -lregex /usr/lib/textmode.o" ! cat >>confdefs.h <<\EOF #define HAVE_CYGWIN 1 ! EOF ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_SHADOW 1 ! EOF ! cat >>confdefs.h <<\EOF #define IPV4_DEFAULT 1 ! EOF ! cat >>confdefs.h <<\EOF #define IP_TOS_IS_BROKEN 1 ! EOF ! cat >>confdefs.h <<\EOF #define NO_X11_UNIX_SOCKETS 1 ! EOF ;; *-*-dgux*) ! cat >>confdefs.h <<\EOF #define IP_TOS_IS_BROKEN 1 ! EOF ;; *-*-darwin*) ! cat >>confdefs.h <<\EOF #define BROKEN_GETADDRINFO 1 ! EOF ;; *-*-hpux10*) *************** *** 3325,3370 **** fi CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1" IPADDR_IN_DISPLAY=yes ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_SHADOW 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_UTMP 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define SPT_TYPE SPT_PSTAT ! _ACEOF LIBS="$LIBS -lxnet -lsec" ;; *-*-hpux11*) CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1" IPADDR_IN_DISPLAY=yes ! cat >>confdefs.h <<\_ACEOF #define PAM_SUN_CODEBASE 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_SHADOW 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_UTMP 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define SPT_TYPE SPT_PSTAT ! _ACEOF LIBS="$LIBS -lxnet -lsec" ;; --- 3161,3206 ---- fi CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1" IPADDR_IN_DISPLAY=yes ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_SHADOW 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_UTMP 1 ! EOF ! cat >>confdefs.h <<\EOF #define SPT_TYPE SPT_PSTAT ! EOF LIBS="$LIBS -lxnet -lsec" ;; *-*-hpux11*) CPPFLAGS="$CPPFLAGS -D_HPUX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1" IPADDR_IN_DISPLAY=yes ! cat >>confdefs.h <<\EOF #define PAM_SUN_CODEBASE 1 ! EOF ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_SHADOW 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_UTMP 1 ! EOF ! cat >>confdefs.h <<\EOF #define SPT_TYPE SPT_PSTAT ! EOF LIBS="$LIBS -lxnet -lsec" ;; *************** *** 3372,3405 **** CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS" PATH="$PATH:/usr/etc" ! cat >>confdefs.h <<\_ACEOF #define BROKEN_INET_NTOA 1 ! _ACEOF ;; *-*-irix6*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS" PATH="$PATH:/usr/etc" ! cat >>confdefs.h <<\_ACEOF #define WITH_IRIX_ARRAY 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define WITH_IRIX_PROJECT 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define WITH_IRIX_AUDIT 1 ! _ACEOF ! echo "$as_me:3396: 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 3402 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char jlimit_startjob (); below. */ --- 3208,3241 ---- CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS" PATH="$PATH:/usr/etc" ! cat >>confdefs.h <<\EOF #define BROKEN_INET_NTOA 1 ! EOF ;; *-*-irix6*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS" PATH="$PATH:/usr/etc" ! cat >>confdefs.h <<\EOF #define WITH_IRIX_ARRAY 1 ! EOF ! cat >>confdefs.h <<\EOF #define WITH_IRIX_PROJECT 1 ! EOF ! cat >>confdefs.h <<\EOF #define WITH_IRIX_AUDIT 1 ! EOF ! echo "$as_me:3232: 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 3238 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char jlimit_startjob (); below. */ *************** *** 3413,3424 **** char jlimit_startjob (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 3249,3254 ---- *************** *** 3436,3451 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3439: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3442: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3445: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3448: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_jlimit_startjob=yes else --- 3266,3281 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3269: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3272: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3278: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_jlimit_startjob=yes else *************** *** 3455,3494 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3458: 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 #define WITH_IRIX_JOBS 1 ! _ACEOF fi ! cat >>confdefs.h <<\_ACEOF #define BROKEN_INET_NTOA 1 ! _ACEOF ;; *-*-linux*) no_dev_ptmx=1 check_for_libcrypt_later=1 ! cat >>confdefs.h <<\_ACEOF #define DONT_TRY_OTHER_AF 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define PAM_TTY_KLUDGE 1 ! _ACEOF inet6_default_4in6=yes ;; mips-sony-bsd|mips-sony-newsos4) ! cat >>confdefs.h <<\_ACEOF #define HAVE_NEWS4 1 ! _ACEOF SONY=1 ! echo "$as_me:3491: 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 --- 3285,3324 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3288: result: $ac_cv_func_jlimit_startjob" >&5 echo "${ECHO_T}$ac_cv_func_jlimit_startjob" >&6 if test $ac_cv_func_jlimit_startjob = yes; then ! cat >>confdefs.h <<\EOF #define WITH_IRIX_JOBS 1 ! EOF fi ! cat >>confdefs.h <<\EOF #define BROKEN_INET_NTOA 1 ! EOF ;; *-*-linux*) no_dev_ptmx=1 check_for_libcrypt_later=1 ! cat >>confdefs.h <<\EOF #define DONT_TRY_OTHER_AF 1 ! EOF ! cat >>confdefs.h <<\EOF #define PAM_TTY_KLUDGE 1 ! EOF inet6_default_4in6=yes ;; mips-sony-bsd|mips-sony-newsos4) ! cat >>confdefs.h <<\EOF #define HAVE_NEWS4 1 ! EOF SONY=1 ! echo "$as_me:3321: 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 *************** *** 3496,3502 **** ac_check_lib_save_LIBS=$LIBS LIBS="-liberty $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 3499 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 3326,3332 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-liberty $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 3329 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 3506,3517 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char xatexit (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 3336,3341 ---- *************** *** 3521,3536 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3524: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3527: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3533: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_iberty_xatexit=yes else --- 3345,3360 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3348: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3351: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3354: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3357: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_iberty_xatexit=yes else *************** *** 3541,3555 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:3544: 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 #define HAVE_XATEXIT 1 ! _ACEOF else ! { { echo "$as_me:3552: 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; }; } --- 3365,3379 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:3368: 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 <<\EOF #define HAVE_XATEXIT 1 ! EOF else ! { { echo "$as_me:3376: 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; }; } *************** *** 3567,3587 **** conf_utmp_location=/etc/utmp conf_wtmp_location=/usr/adm/wtmp MAIL=/usr/spool/mail ! cat >>confdefs.h <<\_ACEOF #define HAVE_NEXT 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define BROKEN_REALPATH 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define BROKEN_SAVED_UIDS 1 ! _ACEOF CPPFLAGS="$CPPFLAGS -I/usr/local/include" CFLAGS="$CFLAGS" --- 3391,3411 ---- conf_utmp_location=/etc/utmp conf_wtmp_location=/usr/adm/wtmp MAIL=/usr/spool/mail ! cat >>confdefs.h <<\EOF #define HAVE_NEXT 1 ! EOF ! cat >>confdefs.h <<\EOF #define BROKEN_REALPATH 1 ! EOF ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define BROKEN_SAVED_UIDS 1 ! EOF CPPFLAGS="$CPPFLAGS -I/usr/local/include" CFLAGS="$CFLAGS" *************** *** 3590,3629 **** CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib" need_dash_r=1 ! cat >>confdefs.h <<\_ACEOF #define PAM_SUN_CODEBASE 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define LOGIN_NEEDS_UTMPX 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define LOGIN_NEEDS_TERM 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define PAM_TTY_KLUDGE 1 ! _ACEOF # hardwire lastlog location (can't detect it on some versions) conf_lastlog_location="/var/adm/lastlog" ! echo "$as_me:3611: 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:3615: result: yes" >&5 echo "${ECHO_T}yes" >&6 ! cat >>confdefs.h <<\_ACEOF #define DISABLE_UTMP 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_WTMP 1 ! _ACEOF else ! echo "$as_me:3626: result: no" >&5 echo "${ECHO_T}no" >&6 fi ;; --- 3414,3453 ---- CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib -R/usr/local/lib" need_dash_r=1 ! cat >>confdefs.h <<\EOF #define PAM_SUN_CODEBASE 1 ! EOF ! cat >>confdefs.h <<\EOF #define LOGIN_NEEDS_UTMPX 1 ! EOF ! cat >>confdefs.h <<\EOF #define LOGIN_NEEDS_TERM 1 ! EOF ! cat >>confdefs.h <<\EOF #define PAM_TTY_KLUDGE 1 ! EOF # hardwire lastlog location (can't detect it on some versions) conf_lastlog_location="/var/adm/lastlog" ! echo "$as_me:3435: 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:3439: result: yes" >&5 echo "${ECHO_T}yes" >&6 ! cat >>confdefs.h <<\EOF #define DISABLE_UTMP 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_WTMP 1 ! EOF else ! echo "$as_me:3450: result: no" >&5 echo "${ECHO_T}no" >&6 fi ;; *************** *** 3633,3645 **** for ac_func in getpwanam do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:3636: 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 3642 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 3457,3469 ---- for ac_func in getpwanam do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:3460: 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 3466 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 3653,3664 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 3477,3482 ---- *************** *** 3676,3691 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3679: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 3494,3509 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3497: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3500: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3503: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3506: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 3695,3733 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3698: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done ! cat >>confdefs.h <<\_ACEOF #define PAM_SUN_CODEBASE 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! _ACEOF conf_utmp_location=/etc/utmp conf_wtmp_location=/var/adm/wtmp conf_lastlog_location=/var/adm/lastlog ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ;; *-ncr-sysv*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" LIBS="$LIBS -lc89" ! cat >>confdefs.h <<\_ACEOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! _ACEOF ;; *-sni-sysv*) --- 3513,3551 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3516: 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 <>confdefs.h <<\EOF #define PAM_SUN_CODEBASE 1 ! EOF ! cat >>confdefs.h <<\EOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! EOF conf_utmp_location=/etc/utmp conf_wtmp_location=/var/adm/wtmp conf_lastlog_location=/var/adm/lastlog ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ;; *-ncr-sysv*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" LIBS="$LIBS -lc89" ! cat >>confdefs.h <<\EOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! EOF ;; *-sni-sysv*) *************** *** 3735,3751 **** # /usr/ucblib MUST NOT be searched on ReliantUNIX LDFLAGS="$LDFLAGS -L/usr/local/lib" IPADDR_IN_DISPLAY=yes ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define IP_TOS_IS_BROKEN 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! _ACEOF # /usr/ucblib/libucb.a no longer needed on ReliantUNIX # Attention: always take care to bind libsocket and libnsl before libc, --- 3553,3569 ---- # /usr/ucblib MUST NOT be searched on ReliantUNIX LDFLAGS="$LDFLAGS -L/usr/local/lib" IPADDR_IN_DISPLAY=yes ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define IP_TOS_IS_BROKEN 1 ! EOF ! cat >>confdefs.h <<\EOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! EOF # /usr/ucblib/libucb.a no longer needed on ReliantUNIX # Attention: always take care to bind libsocket and libnsl before libc, *************** *** 3755,3772 **** CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" # enable_suid_ssh=no ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ;; *-*-sysv5*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" # enable_suid_ssh=no ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ;; *-*-sysv*) --- 3573,3590 ---- CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" # enable_suid_ssh=no ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ;; *-*-sysv5*) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" # enable_suid_ssh=no ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ;; *-*-sysv*) *************** *** 3780,3819 **** rsh_path="/usr/bin/rcmd" RANLIB=true no_dev_ptmx=1 ! cat >>confdefs.h <<\_ACEOF #define BROKEN_SYS_TERMIO_H 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define HAVE_SCO_PROTECTED_PW 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_SHADOW 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define BROKEN_SAVED_UIDS 1 ! _ACEOF for ac_func in getluid setluid do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:3810: 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 3816 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 3598,3637 ---- rsh_path="/usr/bin/rcmd" RANLIB=true no_dev_ptmx=1 ! cat >>confdefs.h <<\EOF #define BROKEN_SYS_TERMIO_H 1 ! EOF ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define HAVE_SCO_PROTECTED_PW 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_SHADOW 1 ! EOF ! cat >>confdefs.h <<\EOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! EOF ! cat >>confdefs.h <<\EOF #define BROKEN_SAVED_UIDS 1 ! EOF for ac_func in getluid setluid do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:3628: 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 3634 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 3827,3838 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 3645,3650 ---- *************** *** 3850,3865 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3853: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3856: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3859: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3862: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 3662,3677 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3665: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 3869,3880 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3872: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 3681,3692 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3684: 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 <>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define HAVE_SCO_PROTECTED_PW 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_SHADOW 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! _ACEOF for ac_func in getluid setluid do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:3910: 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 3916 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 3700,3731 ---- LIBS="$LIBS -lprot -lx -ltinfo -lm" no_dev_ptmx=1 rsh_path="/usr/bin/rcmd" ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define HAVE_SCO_PROTECTED_PW 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_SHADOW 1 ! EOF ! cat >>confdefs.h <<\EOF #define HAVE_BOGUS_SYS_QUEUE_H 1 ! EOF for ac_func in getluid setluid do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:3722: 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 3728 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 3927,3938 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 3739,3744 ---- *************** *** 3950,3965 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3953: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3959: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3962: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 3756,3771 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3759: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:3765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:3768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 3969,3980 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3972: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 3775,3786 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:3778: 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 <>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal,-L/usr/local/lib" LIBS="$LIBS -lgen -lrsc" ;; *-dec-osf*) ! echo "$as_me:3995: checking for Digital Unix SIA" >&5 echo $ECHO_N "checking for Digital Unix SIA... $ECHO_C" >&6 no_osfsia="" --- 3790,3804 ---- *-*-unicos*) no_libsocket=1 no_libnsl=1 ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF LDFLAGS="$LDFLAGS -Wl,-Dmsglevel=334:fatal,-L/usr/local/lib" LIBS="$LIBS -lgen -lrsc" ;; *-dec-osf*) ! echo "$as_me:3801: checking for Digital Unix SIA" >&5 echo $ECHO_N "checking for Digital Unix SIA... $ECHO_C" >&6 no_osfsia="" *************** *** 4001,4007 **** withval="$with_osfsia" if test "x$withval" = "xno" ; then ! echo "$as_me:4004: result: disabled" >&5 echo "${ECHO_T}disabled" >&6 no_osfsia=1 fi --- 3807,3813 ---- withval="$with_osfsia" if test "x$withval" = "xno" ; then ! echo "$as_me:3810: result: disabled" >&5 echo "${ECHO_T}disabled" >&6 no_osfsia=1 fi *************** *** 4009,4052 **** fi; if test -z "$no_osfsia" ; then if test -f /etc/sia/matrix.conf; then ! echo "$as_me:4012: result: yes" >&5 echo "${ECHO_T}yes" >&6 ! cat >>confdefs.h <<\_ACEOF #define HAVE_OSF_SIA 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define DISABLE_LOGIN 1 ! _ACEOF LIBS="$LIBS -lsecurity -ldb -lm -laud" else ! echo "$as_me:4024: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi ;; *-*-nto-qnx) ! cat >>confdefs.h <<\_ACEOF #define USE_PIPES 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define NO_X11_UNIX_SOCKETS 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define MISSING_NFDBITS 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define MISSING_HOWMANY 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define MISSING_FD_MASK 1 ! _ACEOF ;; esac --- 3815,3858 ---- fi; if test -z "$no_osfsia" ; then if test -f /etc/sia/matrix.conf; then ! echo "$as_me:3818: result: yes" >&5 echo "${ECHO_T}yes" >&6 ! cat >>confdefs.h <<\EOF #define HAVE_OSF_SIA 1 ! EOF ! cat >>confdefs.h <<\EOF #define DISABLE_LOGIN 1 ! EOF LIBS="$LIBS -lsecurity -ldb -lm -laud" else ! echo "$as_me:3830: result: no" >&5 echo "${ECHO_T}no" >&6 fi fi ;; *-*-nto-qnx) ! cat >>confdefs.h <<\EOF #define USE_PIPES 1 ! EOF ! cat >>confdefs.h <<\EOF #define NO_X11_UNIX_SOCKETS 1 ! EOF ! cat >>confdefs.h <<\EOF #define MISSING_NFDBITS 1 ! EOF ! cat >>confdefs.h <<\EOF #define MISSING_HOWMANY 1 ! EOF ! cat >>confdefs.h <<\EOF #define MISSING_FD_MASK 1 ! EOF ;; esac *************** *** 4093,4285 **** fi; - echo "$as_me:4096: 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 4102 "configure" - #include "confdefs.h" - #include - #include - #include - #include - - _ACEOF - if { (eval echo "$as_me:4110: \"$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:4116: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - else - ac_cpp_err= - fi - else - ac_cpp_err=yes - fi - if test -z "$ac_cpp_err"; then - ac_cv_header_stdc=yes - else - echo "$as_me: failed program was:" >&5 - cat conftest.$ac_ext >&5 - ac_cv_header_stdc=no - fi - rm -f conftest.err conftest.$ac_ext - - if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF - #line 4138 "configure" - #include "confdefs.h" - #include - - _ACEOF - if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - egrep "memchr" >/dev/null 2>&1; then - : - else - ac_cv_header_stdc=no - fi - rm -f conftest* - - fi - - if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF - #line 4156 "configure" - #include "confdefs.h" - #include - - _ACEOF - if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - egrep "free" >/dev/null 2>&1; then - : - else - ac_cv_header_stdc=no - fi - rm -f conftest* - - fi - - if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then - : - else - cat >conftest.$ac_ext <<_ACEOF - #line 4177 "configure" - #include "confdefs.h" - #include - #if ((' ' & 0x0FF) == 0x020) - # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') - # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) - #else - # define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) - # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) - #endif - - #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) - int - main () - { - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - exit(2); - exit (0); - } - _ACEOF - rm -f conftest$ac_exeext - if { (eval echo "$as_me:4203: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:4206: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4208: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:4211: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : - else - echo "$as_me: program exited with status $ac_status" >&5 - echo "$as_me: failed program was:" >&5 - cat conftest.$ac_ext >&5 - ac_cv_header_stdc=no - fi - rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext - fi - fi - fi - echo "$as_me:4224: result: $ac_cv_header_stdc" >&5 - echo "${ECHO_T}$ac_cv_header_stdc" >&6 - if test $ac_cv_header_stdc = yes; then - - cat >>confdefs.h <<\_ACEOF - #define STDC_HEADERS 1 - _ACEOF - - fi - - # On IRIX 5.3, sys/types and inttypes.h are conflicting. - - for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h - do - as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` - echo "$as_me:4240: 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 4246 "configure" - #include "confdefs.h" - $ac_includes_default - - #include <$ac_header> - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:4253: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:4256: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4259: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:4262: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - eval "$as_ac_Header=yes" - else - echo "$as_me: failed program was:" >&5 - cat conftest.$ac_ext >&5 - eval "$as_ac_Header=no" - fi - rm -f conftest.$ac_objext conftest.$ac_ext - fi - echo "$as_me:4272: 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 - #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 - _ACEOF - - fi - - done - # Check whether --with-pcre or --without-pcre was given. if test "${with_pcre+set}" = set; then withval="$with_pcre" --- 3899,3904 ---- *************** *** 4308,4368 **** fi fi ! if test "${ac_cv_header_pcreposix_h+set}" = set; then ! echo "$as_me:4312: checking for pcreposix.h" >&5 echo $ECHO_N "checking for pcreposix.h... $ECHO_C" >&6 if test "${ac_cv_header_pcreposix_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 - fi - echo "$as_me:4317: result: $ac_cv_header_pcreposix_h" >&5 - echo "${ECHO_T}$ac_cv_header_pcreposix_h" >&6 else ! # Is the header compilable? ! echo "$as_me:4321: checking pcreposix.h usability" >&5 ! echo $ECHO_N "checking pcreposix.h usability... $ECHO_C" >&6 ! cat >conftest.$ac_ext <<_ACEOF ! #line 4324 "configure" ! #include "confdefs.h" ! $ac_includes_default ! #include ! _ACEOF ! rm -f conftest.$ac_objext ! if { (eval echo "$as_me:4330: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>&5 ! ac_status=$? ! echo "$as_me:4333: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:4336: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:4339: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ! ac_header_compiler=yes ! else ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! ac_header_compiler=no ! fi ! rm -f conftest.$ac_objext conftest.$ac_ext ! echo "$as_me:4348: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6 ! ! # Is the header present? ! echo "$as_me:4352: checking pcreposix.h presence" >&5 ! echo $ECHO_N "checking pcreposix.h presence... $ECHO_C" >&6 ! cat >conftest.$ac_ext <<_ACEOF ! #line 4355 "configure" #include "confdefs.h" #include _ACEOF ! if { (eval echo "$as_me:4359: \"$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:4365: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 3927,3949 ---- fi fi ! echo "$as_me:3930: checking for pcreposix.h" >&5 echo $ECHO_N "checking for pcreposix.h... $ECHO_C" >&6 if test "${ac_cv_header_pcreposix_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! cat >conftest.$ac_ext <<_ACEOF ! #line 3936 "configure" #include "confdefs.h" #include _ACEOF ! if { (eval echo "$as_me:3940: \"$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:3946: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 4373,4416 **** ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext - echo "$as_me:4383: 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:4389: WARNING: pcreposix.h: accepted by the compiler, rejected by the preprocessor!" >&5 - echo "$as_me: WARNING: pcreposix.h: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:4391: WARNING: pcreposix.h: proceeding with the preprocessor's result" >&5 - echo "$as_me: WARNING: pcreposix.h: proceeding with the preprocessor's result" >&2;};; - no:yes ) - { echo "$as_me:4394: WARNING: pcreposix.h: present but cannot be compiled." >&5 - echo "$as_me: WARNING: pcreposix.h: present but cannot be compiled." >&2;} - { echo "$as_me:4396: WARNING: pcreposix.h: check for missing prerequisite headers?" >&5 - echo "$as_me: WARNING: pcreposix.h: check for missing prerequisite headers?" >&2;} - { echo "$as_me:4398: WARNING: pcreposix.h: proceeding with the preprocessor's result" >&5 - echo "$as_me: WARNING: pcreposix.h: proceeding with the preprocessor's result" >&2;};; - esac - echo "$as_me:4401: checking for pcreposix.h" >&5 - echo $ECHO_N "checking for pcreposix.h... $ECHO_C" >&6 - if test "${ac_cv_header_pcreposix_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_cv_header_pcreposix_h=$ac_header_preproc fi ! echo "$as_me:4408: result: $ac_cv_header_pcreposix_h" >&5 echo "${ECHO_T}$ac_cv_header_pcreposix_h" >&6 - - fi if test $ac_cv_header_pcreposix_h = yes; then ! echo "$as_me:4413: checking for pcre_info in -lpcre" >&5 echo $ECHO_N "checking for pcre_info in -lpcre... $ECHO_C" >&6 if test "${ac_cv_lib_pcre_pcre_info+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 --- 3954,3971 ---- ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! ac_cv_header_pcreposix_h=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! ac_cv_header_pcreposix_h=no fi rm -f conftest.err conftest.$ac_ext fi ! echo "$as_me:3965: result: $ac_cv_header_pcreposix_h" >&5 echo "${ECHO_T}$ac_cv_header_pcreposix_h" >&6 if test $ac_cv_header_pcreposix_h = yes; then ! echo "$as_me:3968: checking for pcre_info in -lpcre" >&5 echo $ECHO_N "checking for pcre_info in -lpcre... $ECHO_C" >&6 if test "${ac_cv_lib_pcre_pcre_info+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 *************** *** 4418,4424 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4421 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 3973,3979 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 3976 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 4428,4439 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char pcre_info (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 3983,3988 ---- *************** *** 4443,4458 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4446: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4449: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4455: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pcre_pcre_info=yes else --- 3992,4007 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:3995: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:3998: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4001: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4004: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pcre_pcre_info=yes else *************** *** 4463,4486 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4466: result: $ac_cv_lib_pcre_pcre_info" >&5 echo "${ECHO_T}$ac_cv_lib_pcre_pcre_info" >&6 if test $ac_cv_lib_pcre_pcre_info = yes; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_LIBPCRE 1 ! _ACEOF LIBS="$LIBS -lpcreposix -lpcre" no_comp_check=yes else ! { { echo "$as_me:4477: error: *** unable to locate pcre library ***" >&5 echo "$as_me: error: *** unable to locate pcre library ***" >&2;} { (exit 1); exit 1; }; } fi else ! { { echo "$as_me:4483: error: *** unable to locate pcreposix.h include file ***" >&5 echo "$as_me: error: *** unable to locate pcreposix.h include file ***" >&2;} { (exit 1); exit 1; }; } fi --- 4012,4035 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4015: result: $ac_cv_lib_pcre_pcre_info" >&5 echo "${ECHO_T}$ac_cv_lib_pcre_pcre_info" >&6 if test $ac_cv_lib_pcre_pcre_info = yes; then ! cat >>confdefs.h <<\EOF #define HAVE_LIBPCRE 1 ! EOF LIBS="$LIBS -lpcreposix -lpcre" no_comp_check=yes else ! { { echo "$as_me:4026: error: *** unable to locate pcre library ***" >&5 echo "$as_me: error: *** unable to locate pcre library ***" >&2;} { (exit 1); exit 1; }; } fi else ! { { echo "$as_me:4032: error: *** unable to locate pcreposix.h include file ***" >&5 echo "$as_me: error: *** unable to locate pcreposix.h include file ***" >&2;} { (exit 1); exit 1; }; } fi *************** *** 4491,4503 **** fi; # Checks for libraries. ! echo "$as_me:4494: 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 4500 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char yp_match (); below. */ --- 4040,4052 ---- fi; # Checks for libraries. ! echo "$as_me:4043: 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 4049 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char yp_match (); below. */ *************** *** 4511,4522 **** char yp_match (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4060,4065 ---- *************** *** 4534,4549 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4537: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4540: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4543: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4546: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_yp_match=yes else --- 4077,4092 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4080: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4083: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4086: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4089: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_yp_match=yes else *************** *** 4553,4565 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4556: 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:4562: 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 --- 4096,4108 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4099: 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:4105: 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 *************** *** 4567,4573 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4570 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4110,4116 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4113 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 4577,4588 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char yp_match (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4120,4125 ---- *************** *** 4592,4607 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4595: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4598: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4601: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4604: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_yp_match=yes else --- 4129,4144 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4132: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4135: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4138: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4141: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_yp_match=yes else *************** *** 4612,4623 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4615: 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 #define HAVE_LIBNSL 1 ! _ACEOF LIBS="-lnsl $LIBS" --- 4149,4160 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4152: result: $ac_cv_lib_nsl_yp_match" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_yp_match" >&6 if test $ac_cv_lib_nsl_yp_match = yes; then ! cat >>confdefs.h <&5 echo $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 4634 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setsockopt (); below. */ --- 4162,4174 ---- fi ! echo "$as_me:4165: 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 4171 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setsockopt (); below. */ *************** *** 4645,4656 **** char setsockopt (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4182,4187 ---- *************** *** 4668,4683 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4671: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_setsockopt=yes else --- 4199,4214 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4202: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4205: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4211: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_setsockopt=yes else *************** *** 4687,4699 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4690: 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:4696: 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 --- 4218,4230 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4221: 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:4227: 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 *************** *** 4701,4707 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4704 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4232,4238 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4235 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 4711,4722 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char setsockopt (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4242,4247 ---- *************** *** 4726,4741 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4729: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_setsockopt=yes else --- 4251,4266 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4254: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4257: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_setsockopt=yes else *************** *** 4746,4757 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4749: 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 #define HAVE_LIBSOCKET 1 ! _ACEOF LIBS="-lsocket $LIBS" --- 4271,4282 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4274: result: $ac_cv_lib_socket_setsockopt" >&5 echo "${ECHO_T}$ac_cv_lib_socket_setsockopt" >&6 if test $ac_cv_lib_socket_setsockopt = yes; then ! cat >>confdefs.h <&5 echo $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 --- 4286,4292 ---- if test "x$with_tcp_wrappers" != "xno" ; then if test "x$do_sco3_extra_lib_check" = "xyes" ; then ! echo "$as_me:4289: 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 *************** *** 4769,4775 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lrpc -lyp -lrpc $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4772 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4294,4300 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lrpc -lyp -lrpc $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4297 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 4779,4790 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char innetgr (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4304,4309 ---- *************** *** 4794,4809 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4797: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4800: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4803: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4806: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_rpc_innetgr=yes else --- 4313,4328 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4316: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4319: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4325: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_rpc_innetgr=yes else *************** *** 4814,4820 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4817: 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" --- 4333,4339 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4336: 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" *************** *** 4823,4835 **** fi fi ! echo "$as_me:4826: 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 4832 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getspnam (); below. */ --- 4342,4354 ---- fi fi ! echo "$as_me:4345: 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 4351 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getspnam (); below. */ *************** *** 4843,4854 **** char getspnam (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4362,4367 ---- *************** *** 4866,4881 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4869: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4872: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4875: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4878: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getspnam=yes else --- 4379,4394 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4382: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4385: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4388: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4391: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getspnam=yes else *************** *** 4885,4896 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4888: 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:4893: 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 --- 4398,4409 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4401: 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:4406: 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 *************** *** 4898,4904 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4901 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4411,4417 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4414 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 4908,4919 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char getspnam (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4421,4426 ---- *************** *** 4923,4938 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4926: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4929: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4932: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4935: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_getspnam=yes else --- 4430,4445 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4433: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4436: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4439: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4442: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_getspnam=yes else *************** *** 4943,4949 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4946: 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" --- 4450,4456 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4453: 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" *************** *** 4976,4982 **** fi; ! echo "$as_me:4979: 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 --- 4483,4489 ---- fi; ! echo "$as_me:4486: 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 *************** *** 4984,4990 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4987 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4491,4497 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4494 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 4994,5005 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char deflate (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4501,4506 ---- *************** *** 5009,5024 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5012: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5015: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5018: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5021: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_z_deflate=yes else --- 4510,4525 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4513: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4516: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4519: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4522: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_z_deflate=yes else *************** *** 5029,5058 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:5032: 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 #define HAVE_LIBZ 1 ! _ACEOF LIBS="-lz $LIBS" else ! { { echo "$as_me:5042: 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 # We don't want to check if we did an pcre override. if test -z "$no_comp_check" ; then ! echo "$as_me:5049: checking for regcomp" >&5 echo $ECHO_N "checking for regcomp... $ECHO_C" >&6 if test "${ac_cv_func_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF ! #line 5055 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char regcomp (); below. */ --- 4530,4559 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4533: result: $ac_cv_lib_z_deflate" >&5 echo "${ECHO_T}$ac_cv_lib_z_deflate" >&6 if test $ac_cv_lib_z_deflate = yes; then ! cat >>confdefs.h <&5 echo "$as_me: error: *** zlib missing - please install first or check config.log ***" >&2;} { (exit 1); exit 1; }; } fi # We don't want to check if we did an pcre override. if test -z "$no_comp_check" ; then ! echo "$as_me:4550: checking for regcomp" >&5 echo $ECHO_N "checking for regcomp... $ECHO_C" >&6 if test "${ac_cv_func_regcomp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF ! #line 4556 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char regcomp (); below. */ *************** *** 5066,5077 **** char regcomp (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4567,4572 ---- *************** *** 5089,5104 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5092: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5101: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_regcomp=yes else --- 4584,4599 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4587: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_regcomp=yes else *************** *** 5108,5123 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5111: result: $ac_cv_func_regcomp" >&5 echo "${ECHO_T}$ac_cv_func_regcomp" >&6 if test $ac_cv_func_regcomp = yes; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_REGCOMP 1 ! _ACEOF else ! echo "$as_me:5120: checking for pcre_info in -lpcre" >&5 echo $ECHO_N "checking for pcre_info in -lpcre... $ECHO_C" >&6 if test "${ac_cv_lib_pcre_pcre_info+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 --- 4603,4618 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4606: result: $ac_cv_func_regcomp" >&5 echo "${ECHO_T}$ac_cv_func_regcomp" >&6 if test $ac_cv_func_regcomp = yes; then ! cat >>confdefs.h <<\EOF #define HAVE_REGCOMP 1 ! EOF else ! echo "$as_me:4615: checking for pcre_info in -lpcre" >&5 echo $ECHO_N "checking for pcre_info in -lpcre... $ECHO_C" >&6 if test "${ac_cv_lib_pcre_pcre_info+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 *************** *** 5125,5131 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5128 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4620,4626 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4623 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 5135,5146 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char pcre_info (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4630,4635 ---- *************** *** 5150,5165 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5153: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5156: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5159: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5162: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pcre_pcre_info=yes else --- 4639,4654 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4642: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4645: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4648: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4651: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pcre_pcre_info=yes else *************** *** 5170,5188 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:5173: result: $ac_cv_lib_pcre_pcre_info" >&5 echo "${ECHO_T}$ac_cv_lib_pcre_pcre_info" >&6 if test $ac_cv_lib_pcre_pcre_info = yes; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_LIBPCRE 1 ! _ACEOF LIBS="$LIBS -lpcreposix -lpcre" else ! { { echo "$as_me:5185: error: *** No regex library found." >&5 echo "$as_me: error: *** No regex library found." >&2;} { (exit 1); exit 1; }; } --- 4659,4677 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4662: result: $ac_cv_lib_pcre_pcre_info" >&5 echo "${ECHO_T}$ac_cv_lib_pcre_pcre_info" >&6 if test $ac_cv_lib_pcre_pcre_info = yes; then ! cat >>confdefs.h <<\EOF #define HAVE_LIBPCRE 1 ! EOF LIBS="$LIBS -lpcreposix -lpcre" else ! { { echo "$as_me:4674: error: *** No regex library found." >&5 echo "$as_me: error: *** No regex library found." >&2;} { (exit 1); exit 1; }; } *************** *** 5192,5204 **** fi ! echo "$as_me:5195: 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 5201 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strcasecmp (); below. */ --- 4681,4693 ---- fi ! echo "$as_me:4684: 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 4690 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strcasecmp (); below. */ *************** *** 5212,5223 **** char strcasecmp (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4701,4706 ---- *************** *** 5235,5250 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5238: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5241: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5244: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5247: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_strcasecmp=yes else --- 4718,4733 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4721: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4724: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4727: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4730: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_strcasecmp=yes else *************** *** 5254,5265 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5257: 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:5262: 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 --- 4737,4748 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4740: 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:4745: 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 *************** *** 5267,5273 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5270 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4750,4756 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4753 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 5277,5288 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char strcasecmp (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4760,4765 ---- *************** *** 5292,5307 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5295: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5298: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5301: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5304: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else --- 4769,4784 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4772: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4775: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4778: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4781: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else *************** *** 5312,5318 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:5315: 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" --- 4789,4795 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4792: 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" *************** *** 5320,5332 **** fi ! echo "$as_me:5323: 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 5329 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char utimes (); below. */ --- 4797,4809 ---- fi ! echo "$as_me:4800: 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 4806 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char utimes (); below. */ *************** *** 5340,5351 **** char utimes (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4817,4822 ---- *************** *** 5363,5378 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5366: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5369: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5372: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5375: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_utimes=yes else --- 4834,4849 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4837: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4840: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_utimes=yes else *************** *** 5382,5393 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5385: 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:5390: 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 --- 4853,4864 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:4856: 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:4861: 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 *************** *** 5395,5401 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lc89 $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5398 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4866,4872 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lc89 $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 4869 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 5405,5416 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char utimes (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4876,4881 ---- *************** *** 5420,5435 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5423: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c89_utimes=yes else --- 4885,4900 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4888: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4891: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4894: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:4897: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c89_utimes=yes else *************** *** 5440,5446 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:5443: 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" --- 4905,4911 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:4908: 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" *************** *** 5451,5511 **** for ac_header in libutil.h 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:5455: 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:5460: result: `eval echo '${'$as_ac_Header'}'`" >&5 - echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - else - # Is the header compilable? - echo "$as_me:5464: checking $ac_header usability" >&5 - echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF - #line 5467 "configure" - #include "confdefs.h" - $ac_includes_default - #include <$ac_header> - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:5473: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:5476: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5479: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:5482: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_header_compiler=yes else ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! ac_header_compiler=no ! fi ! rm -f conftest.$ac_objext conftest.$ac_ext ! echo "$as_me:5491: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6 ! ! # Is the header present? ! echo "$as_me:5495: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 ! cat >conftest.$ac_ext <<_ACEOF ! #line 5498 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:5502: \"$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:5508: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 4916,4938 ---- for ac_header in libutil.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! echo "$as_me:4919: 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 4925 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:4929: \"$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:4935: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 5516,5567 **** ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext - echo "$as_me:5526: 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:5532: 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:5534: 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:5537: WARNING: $ac_header: present but cannot be compiled." >&5 - echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:5539: WARNING: $ac_header: check for missing prerequisite headers?" >&5 - echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:5541: 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:5544: 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:5551: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - - fi if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ! _ACEOF fi - done ! echo "$as_me:5564: 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 --- 4943,4967 ---- ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_ext fi ! echo "$as_me:4954: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <&5 echo $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 *************** *** 5569,5575 **** ac_func_search_save_LIBS=$LIBS ac_cv_search_login=no cat >conftest.$ac_ext <<_ACEOF ! #line 5572 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 4969,4975 ---- ac_func_search_save_LIBS=$LIBS ac_cv_search_login=no cat >conftest.$ac_ext <<_ACEOF ! #line 4972 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 5579,5590 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char login (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 4979,4984 ---- *************** *** 5594,5609 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5597: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="none required" else --- 4988,5003 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:4991: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:4994: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:4997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5000: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="none required" else *************** *** 5615,5621 **** for ac_lib in util bsd; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5618 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 5009,5015 ---- for ac_lib in util bsd; do LIBS="-l$ac_lib $ac_func_search_save_LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5012 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 5625,5636 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char login (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5019,5024 ---- *************** *** 5640,5655 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5643: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5646: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5652: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="-l$ac_lib" break --- 5028,5043 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5031: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_search_login="-l$ac_lib" break *************** *** 5662,5687 **** fi LIBS=$ac_func_search_save_LIBS fi ! echo "$as_me:5665: 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" ! cat >>confdefs.h <<\_ACEOF #define HAVE_LOGIN 1 ! _ACEOF fi for ac_func in logout updwtmp logwtmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:5678: 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 5684 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 5050,5075 ---- fi LIBS=$ac_func_search_save_LIBS fi ! echo "$as_me:5053: 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" ! cat >>confdefs.h <<\EOF #define HAVE_LOGIN 1 ! EOF fi for ac_func in logout updwtmp logwtmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:5066: 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 5072 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 5695,5706 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5083,5088 ---- *************** *** 5718,5733 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5721: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5724: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5727: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5730: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 5100,5115 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5103: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5106: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5109: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5112: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 5737,5748 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5740: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 5119,5130 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5122: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for $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 5759 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 5132,5144 ---- for ac_func in strftime do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:5135: 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 5141 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 5770,5781 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5152,5157 ---- *************** *** 5793,5808 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5796: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5799: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5805: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 5169,5184 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5172: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5175: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5178: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5181: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 5812,5827 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5815: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF else # strftime is in -lintl on SCO UNIX. ! echo "$as_me:5824: 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 --- 5188,5203 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5191: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for strftime in -lintl... $ECHO_C" >&6 if test "${ac_cv_lib_intl_strftime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 *************** *** 5829,5835 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5832 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 5205,5211 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5208 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 5839,5850 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char strftime (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5215,5220 ---- *************** *** 5854,5869 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5857: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_intl_strftime=yes else --- 5224,5239 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5227: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5230: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5233: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5236: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_intl_strftime=yes else *************** *** 5874,5885 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:5877: 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 #define HAVE_STRFTIME 1 ! _ACEOF LIBS="-lintl $LIBS" fi --- 5244,5255 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:5247: result: $ac_cv_lib_intl_strftime" >&5 echo "${ECHO_T}$ac_cv_lib_intl_strftime" >&6 if test $ac_cv_lib_intl_strftime = yes; then ! cat >>confdefs.h <<\EOF #define HAVE_STRFTIME 1 ! EOF LIBS="-lintl $LIBS" fi *************** *** 5901,5961 **** util.h utime.h utmp.h utmpx.h 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:5905: 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:5910: result: `eval echo '${'$as_ac_Header'}'`" >&5 - echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - else - # Is the header compilable? - echo "$as_me:5914: checking $ac_header usability" >&5 - echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF - #line 5917 "configure" - #include "confdefs.h" - $ac_includes_default - #include <$ac_header> - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:5923: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:5926: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5929: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:5932: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_header_compiler=yes else ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! ac_header_compiler=no ! fi ! rm -f conftest.$ac_objext conftest.$ac_ext ! echo "$as_me:5941: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6 ! ! # Is the header present? ! echo "$as_me:5945: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 ! cat >conftest.$ac_ext <<_ACEOF ! #line 5948 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:5952: \"$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:5958: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 5271,5293 ---- util.h utime.h utmp.h utmpx.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! echo "$as_me:5274: 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 5280 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:5284: \"$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:5290: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 5966,6021 **** ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext - echo "$as_me:5976: 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:5982: 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:5984: 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:5987: WARNING: $ac_header: present but cannot be compiled." >&5 - echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:5989: WARNING: $ac_header: check for missing prerequisite headers?" >&5 - echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:5991: 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:5994: 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:6001: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - - fi if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ! _ACEOF fi - done # Check for ALTDIRFUNC glob() extension ! echo "$as_me:6015: checking for GLOB_ALTDIRFUNC support" >&5 echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF ! #line 6018 "configure" #include "confdefs.h" #include --- 5298,5326 ---- ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_ext fi ! echo "$as_me:5309: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for GLOB_ALTDIRFUNC support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF ! #line 5323 "configure" #include "confdefs.h" #include *************** *** 6027,6052 **** if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "FOUNDIT" >/dev/null 2>&1; then ! cat >>confdefs.h <<\_ACEOF #define GLOB_HAS_ALTDIRFUNC 1 ! _ACEOF ! echo "$as_me:6034: result: yes" >&5 echo "${ECHO_T}yes" >&6 else ! echo "$as_me:6039: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* # Check for g.gl_matchc glob() extension ! echo "$as_me:6046: 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 6049 "configure" #include "confdefs.h" #include --- 5332,5357 ---- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "FOUNDIT" >/dev/null 2>&1; then ! cat >>confdefs.h <<\EOF #define GLOB_HAS_ALTDIRFUNC 1 ! EOF ! echo "$as_me:5339: result: yes" >&5 echo "${ECHO_T}yes" >&6 else ! echo "$as_me:5344: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* # Check for g.gl_matchc glob() extension ! echo "$as_me:5351: 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 5354 "configure" #include "confdefs.h" #include *************** *** 6056,6085 **** if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "FOUNDIT" >/dev/null 2>&1; then ! cat >>confdefs.h <<\_ACEOF #define GLOB_HAS_GL_MATCHC 1 ! _ACEOF ! echo "$as_me:6063: result: yes" >&5 echo "${ECHO_T}yes" >&6 else ! echo "$as_me:6068: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* ! echo "$as_me:6074: 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:6077: 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 6082 "configure" #include "confdefs.h" #include --- 5361,5390 ---- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "FOUNDIT" >/dev/null 2>&1; then ! cat >>confdefs.h <<\EOF #define GLOB_HAS_GL_MATCHC 1 ! EOF ! echo "$as_me:5368: result: yes" >&5 echo "${ECHO_T}yes" >&6 else ! echo "$as_me:5373: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest* ! echo "$as_me:5379: 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:5382: 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 5387 "configure" #include "confdefs.h" #include *************** *** 6088,6120 **** _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:6091: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6094: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:6096: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6099: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:6101: 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:6108: result: no" >&5 echo "${ECHO_T}no" >&6 ! cat >>confdefs.h <<\_ACEOF #define BROKEN_ONE_BYTE_DIRENT_D_NAME 1 ! _ACEOF fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi # Check whether user wants S/Key support SKEY_MSG="no" --- 5393,5531 ---- _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:5396: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5399: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:5401: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5404: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:5406: 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:5413: result: no" >&5 echo "${ECHO_T}no" >&6 ! cat >>confdefs.h <<\EOF #define BROKEN_ONE_BYTE_DIRENT_D_NAME 1 ! EOF fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi + # Check whether the user wants GSI (Globus) support + gsi_path="no" + + # Check whether --with-gsi or --without-gsi was given. + if test "${with_gsi+set}" = set; then + withval="$with_gsi" + + gsi_path="$withval" + + fi; + + # Check whether --with-globus or --without-globus was given. + if test "${with_globus+set}" = set; then + withval="$with_globus" + + gsi_path="$withval" + + fi; + + if test "x$gsi_path" != "xno" ; then + # Globus GSSAPI configuration + cat >>confdefs.h <<\EOF + #define GSSAPI 1 + EOF + + cat >>confdefs.h <<\EOF + #define GSI 1 + EOF + + # Find GLOBUS/GSI installation Directory + echo "$as_me:5453: checking for Globus/GSI installation directory" >&5 + echo $ECHO_N "checking for Globus/GSI installation directory... $ECHO_C" >&6 + + globus_install_dir=$gsi_path + + if test "x$globus_install_dir" = "xyes" ; then + if test -n "$GLOBUS_INSTALL_PATH" ; then + globus_install_dir=$GLOBUS_INSTALL_PATH + elif test -n "$GSI_INSTALL_PATH" ; then + globus_install_dir=$GSI_INSTALL_PATH + elif test -d /usr/local/globus ; then + globus_install_dir="/usr/local/globus" + elif test -d /usr/local/gsi ; then + globus_install_dir="/usr/local/gsi" + else + { { echo "$as_me:5468: error: Cannot find Globus/GSI installation directory" >&5 + echo "$as_me: error: Cannot find Globus/GSI installation directory" >&2;} + { (exit 1); exit 1; }; } + fi + fi + echo "$as_me:5473: result: $globus_install_dir" >&5 + echo "${ECHO_T}$globus_install_dir" >&6 + + # Find GLOBUS/GSI development directory + echo "$as_me:5477: checking for Globus/GSI development directory" >&5 + echo $ECHO_N "checking for Globus/GSI development directory... $ECHO_C" >&6 + + if test -d ${globus_install_dir}/lib ; then + # Looks like a flat directory structure from configure/make + # and not globus-install or gsi-install + globus_dev_dir=$globus_install_dir + + else + # Assume a true globus installation with architecture + # directories and run globus-development-path to find + # the development directory + + # Set GLOBUS_INSTALL_PATH + GLOBUS_INSTALL_PATH=$globus_install_dir + export GLOBUS_INSTALL_PATH + + dev_path_program=${globus_install_dir}/bin/globus-development-path + + if test ! -x ${dev_path_program} ; then + { { echo "$as_me:5497: error: Cannot find Globus/GSI installation directory: program ${dev_path_program} does not exist or is not executable" >&5 + echo "$as_me: error: Cannot find Globus/GSI installation directory: program ${dev_path_program} does not exist or is not executable" >&2;} + { (exit 1); exit 1; }; } + fi + + globus_dev_dir=`${dev_path_program}` + + if test -z "$globus_dev_dir" -o "X$globus_dev_dir" = "X" ; then + { { echo "$as_me:5505: error: Cannot find Globus/GSI development directory" >&5 + echo "$as_me: error: Cannot find Globus/GSI development directory" >&2;} + { (exit 1); exit 1; }; } + fi + + if test ! -d "$globus_dev_dir" ; then + { { echo "$as_me:5511: error: Cannot find Globus/GSI development directory: $globus_dev_dir does not exist" >&5 + echo "$as_me: error: Cannot find Globus/GSI development directory: $globus_dev_dir does not exist" >&2;} + { (exit 1); exit 1; }; } + fi + fi + echo "$as_me:5516: result: $globus_dev_dir" >&5 + echo "${ECHO_T}$globus_dev_dir" >&6 + + GSI_LIBS="-lglobus_gss_assist -lglobus_gss -lglobus_gaa -lssl -lcrypto" + GSI_LDFLAGS="-L${globus_dev_dir}/lib" + GSI_CFLAGS="-I${globus_dev_dir}/include" + + LIBS="$LIBS $GSI_LIBS" + LDFLAGS="$LDFLAGS $GSI_LDFLAGS" + CFLAGS="$CFLAGS $GSI_CFLAGS" + # End Globus/GSI section + fi + # Check whether user wants S/Key support SKEY_MSG="no" *************** *** 6129,6148 **** LDFLAGS="$LDFLAGS -L${withval}/lib" fi ! cat >>confdefs.h <<\_ACEOF #define SKEY 1 ! _ACEOF LIBS="-lskey $LIBS" SKEY_MSG="yes" ! echo "$as_me:6139: checking for skey_keyinfo" >&5 echo $ECHO_N "checking for skey_keyinfo... $ECHO_C" >&6 if test "${ac_cv_func_skey_keyinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF ! #line 6145 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char skey_keyinfo (); below. */ --- 5540,5559 ---- LDFLAGS="$LDFLAGS -L${withval}/lib" fi ! cat >>confdefs.h <<\EOF #define SKEY 1 ! EOF LIBS="-lskey $LIBS" SKEY_MSG="yes" ! echo "$as_me:5550: checking for skey_keyinfo" >&5 echo $ECHO_N "checking for skey_keyinfo... $ECHO_C" >&6 if test "${ac_cv_func_skey_keyinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF ! #line 5556 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char skey_keyinfo (); below. */ *************** *** 6156,6167 **** char skey_keyinfo (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5567,5572 ---- *************** *** 6179,6194 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6182: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_skey_keyinfo=yes else --- 5584,5599 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5587: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5590: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5593: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5596: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_skey_keyinfo=yes else *************** *** 6198,6210 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6201: result: $ac_cv_func_skey_keyinfo" >&5 echo "${ECHO_T}$ac_cv_func_skey_keyinfo" >&6 if test $ac_cv_func_skey_keyinfo = yes; then : else ! { { echo "$as_me:6207: error: ** Incomplete or missing s/key libraries." >&5 echo "$as_me: error: ** Incomplete or missing s/key libraries." >&2;} { (exit 1); exit 1; }; } --- 5603,5615 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5606: result: $ac_cv_func_skey_keyinfo" >&5 echo "${ECHO_T}$ac_cv_func_skey_keyinfo" >&6 if test $ac_cv_func_skey_keyinfo = yes; then : else ! { { echo "$as_me:5612: error: ** Incomplete or missing s/key libraries." >&5 echo "$as_me: error: ** Incomplete or missing s/key libraries." >&2;} { (exit 1); exit 1; }; } *************** *** 6246,6266 **** fi fi LIBS="-lwrap $LIBS" ! echo "$as_me:6249: checking for libwrap" >&5 echo $ECHO_N "checking for libwrap... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF ! #line 6252 "configure" #include "confdefs.h" #include int deny_severity = 0, allow_severity = 0; - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5651,5665 ---- fi fi LIBS="-lwrap $LIBS" ! echo "$as_me:5654: checking for libwrap" >&5 echo $ECHO_N "checking for libwrap... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF ! #line 5657 "configure" #include "confdefs.h" #include int deny_severity = 0, allow_severity = 0; int main () { *************** *** 6270,6292 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6273: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6276: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6279: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6282: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:6285: result: yes" >&5 echo "${ECHO_T}yes" >&6 ! cat >>confdefs.h <<\_ACEOF #define LIBWRAP 1 ! _ACEOF TCPW_MSG="yes" --- 5669,5691 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5672: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5675: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:5684: result: yes" >&5 echo "${ECHO_T}yes" >&6 ! cat >>confdefs.h <<\EOF #define LIBWRAP 1 ! EOF TCPW_MSG="yes" *************** *** 6294,6300 **** echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! { { echo "$as_me:6297: error: *** libwrap missing" >&5 echo "$as_me: error: *** libwrap missing" >&2;} { (exit 1); exit 1; }; } --- 5693,5699 ---- echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! { { echo "$as_me:5696: error: *** libwrap missing" >&5 echo "$as_me: error: *** libwrap missing" >&2;} { (exit 1); exit 1; }; } *************** *** 6317,6329 **** vhangup vsnprintf waitpid __b64_ntop _getpty do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:6320: 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 6326 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 5716,5728 ---- vhangup vsnprintf waitpid __b64_ntop _getpty do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:5719: 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 5725 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 6337,6348 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5736,5741 ---- *************** *** 6360,6375 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6363: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6366: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6369: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6372: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 5753,5768 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5756: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5759: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5762: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5765: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 6379,6390 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6382: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 5772,5783 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5775: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for $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 6401 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 5785,5797 ---- for ac_func in dirname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:5788: 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 5794 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 6412,6423 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5805,5810 ---- *************** *** 6435,6450 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6438: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6441: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6444: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6447: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 5822,5837 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5825: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5828: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5831: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5834: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 6454,6524 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6457: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF for ac_header in libgen.h 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:6468: 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:6473: result: `eval echo '${'$as_ac_Header'}'`" >&5 - echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - else - # Is the header compilable? - echo "$as_me:6477: checking $ac_header usability" >&5 - echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF - #line 6480 "configure" - #include "confdefs.h" - $ac_includes_default - #include <$ac_header> - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:6486: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:6489: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6492: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:6495: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_header_compiler=yes else ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! ac_header_compiler=no ! fi ! rm -f conftest.$ac_objext conftest.$ac_ext ! echo "$as_me:6504: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6 ! ! # Is the header present? ! echo "$as_me:6508: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 ! cat >conftest.$ac_ext <<_ACEOF ! #line 6511 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:6515: \"$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:6521: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 5841,5873 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:5844: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for $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 5860 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:5864: \"$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:5870: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 6529,6582 **** ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext - echo "$as_me:6539: 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:6545: 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:6547: 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:6550: WARNING: $ac_header: present but cannot be compiled." >&5 - echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:6552: WARNING: $ac_header: check for missing prerequisite headers?" >&5 - echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:6554: 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:6557: 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:6564: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - - fi if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ! _ACEOF fi - done else ! echo "$as_me:6579: 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 --- 5878,5904 ---- ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_ext fi ! echo "$as_me:5889: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <&5 echo $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 *************** *** 6584,6590 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 6587 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 5906,5912 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lgen $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 5909 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 6594,6605 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dirname (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 5916,5921 ---- *************** *** 6609,6624 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6612: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6615: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_dirname=yes else --- 5925,5940 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:5928: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5931: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:5934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5937: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gen_dirname=yes else *************** *** 6629,6639 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:6632: 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:6636: 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 --- 5945,5955 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:5948: 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:5952: 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 *************** *** 6642,6653 **** save_LIBS="$LIBS" LIBS="$LIBS -lgen" if test "$cross_compiling" = yes; then ! { { echo "$as_me:6645: 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 6650 "configure" #include "confdefs.h" #include --- 5958,5969 ---- save_LIBS="$LIBS" LIBS="$LIBS -lgen" if test "$cross_compiling" = yes; then ! { { echo "$as_me:5961: 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 5966 "configure" #include "confdefs.h" #include *************** *** 6667,6681 **** _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:6670: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6673: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:6675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_broken_dirname="no" else --- 5983,5997 ---- _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:5986: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:5989: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:5991: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:5994: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_broken_dirname="no" else *************** *** 6690,6761 **** LIBS="$save_LIBS" fi ! echo "$as_me:6693: 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" ! cat >>confdefs.h <<\_ACEOF #define HAVE_DIRNAME 1 ! _ACEOF for ac_header in libgen.h 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:6705: 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:6710: result: `eval echo '${'$as_ac_Header'}'`" >&5 - echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - else - # Is the header compilable? - echo "$as_me:6714: checking $ac_header usability" >&5 - echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF - #line 6717 "configure" - #include "confdefs.h" - $ac_includes_default - #include <$ac_header> - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:6723: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:6726: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6729: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:6732: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_header_compiler=yes else ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! ac_header_compiler=no ! fi ! rm -f conftest.$ac_objext conftest.$ac_ext ! echo "$as_me:6741: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6 ! ! # Is the header present? ! echo "$as_me:6745: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 ! cat >conftest.$ac_ext <<_ACEOF ! #line 6748 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:6752: \"$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:6758: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag --- 6006,6039 ---- LIBS="$save_LIBS" fi ! echo "$as_me:6009: 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" ! cat >>confdefs.h <<\EOF #define HAVE_DIRNAME 1 ! EOF for ac_header in libgen.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! echo "$as_me:6020: 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 6026 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:6030: \"$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:6036: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag *************** *** 6766,6814 **** ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext - echo "$as_me:6776: 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:6782: 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:6784: 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:6787: WARNING: $ac_header: present but cannot be compiled." >&5 - echo "$as_me: WARNING: $ac_header: present but cannot be compiled." >&2;} - { echo "$as_me:6789: WARNING: $ac_header: check for missing prerequisite headers?" >&5 - echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:6791: 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:6794: 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:6801: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - - fi if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 ! _ACEOF fi - done fi --- 6044,6065 ---- ac_cpp_err=yes fi if test -z "$ac_cpp_err"; then ! eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! eval "$as_ac_Header=no" fi rm -f conftest.err conftest.$ac_ext fi ! echo "$as_me:6055: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <&5 echo $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 6830 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 6072,6084 ---- for ac_func in gettimeofday time do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:6075: 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 6081 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 6841,6852 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6092,6097 ---- *************** *** 6864,6879 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6867: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6870: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6873: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6876: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 6109,6124 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6112: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6115: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6118: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6121: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 6883,6894 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6886: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 6128,6139 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6131: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for $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 6905 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 6141,6153 ---- 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:6144: 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 6150 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 6916,6927 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6161,6166 ---- *************** *** 6939,6954 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6942: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6945: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6951: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 6178,6193 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6181: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6184: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6190: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 6958,6969 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6961: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 6197,6208 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6200: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for $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 6980 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 6210,6222 ---- for ac_func in utmpname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:6213: 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 6219 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 6991,7002 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6230,6235 ---- *************** *** 7014,7029 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7017: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7020: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7023: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7026: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 6247,6262 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6250: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6253: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6256: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6259: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 7033,7044 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:7036: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 6266,6277 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6269: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for $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 7055 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 6279,6291 ---- 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:6282: 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 6288 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 7066,7077 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6299,6304 ---- *************** *** 7089,7104 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7092: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7095: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7098: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7101: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 6316,6331 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6319: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6322: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6325: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6328: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 7108,7119 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:7111: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 6335,6346 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6338: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for $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 7130 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 6348,6360 ---- for ac_func in setutxent utmpxname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:6351: 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 6357 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 7141,7152 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6368,6373 ---- *************** *** 7164,7179 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7167: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7170: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7173: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7176: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 6385,6400 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6388: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6391: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6397: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 7183,7205 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:7186: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done ! echo "$as_me:7196: 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 7202 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getuserattr (); below. */ --- 6404,6426 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6407: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then ! cat >>confdefs.h <&5 echo $ECHO_N "checking for 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 6423 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getuserattr (); below. */ *************** *** 7213,7224 **** char getuserattr (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6434,6439 ---- *************** *** 7236,7251 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7239: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7245: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7248: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getuserattr=yes else --- 6451,6466 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6454: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6457: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6460: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6463: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getuserattr=yes else *************** *** 7255,7269 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:7258: 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 #define HAVE_GETUSERATTR 1 ! _ACEOF else ! echo "$as_me:7266: 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 --- 6470,6484 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6473: 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 <<\EOF #define HAVE_GETUSERATTR 1 ! EOF else ! echo "$as_me:6481: 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 *************** *** 7271,7277 **** ac_check_lib_save_LIBS=$LIBS LIBS="-ls $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7274 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 6486,6492 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-ls $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 6489 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 7281,7292 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char getuserattr (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6496,6501 ---- *************** *** 7296,7311 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7299: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_s_getuserattr=yes else --- 6505,6520 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6508: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6514: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6517: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_s_getuserattr=yes else *************** *** 7316,7339 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7319: 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 #define HAVE_GETUSERATTR 1 ! _ACEOF fi fi ! echo "$as_me:7330: 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 7336 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char daemon (); below. */ --- 6525,6548 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:6528: 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 <<\EOF #define HAVE_GETUSERATTR 1 ! EOF fi fi ! echo "$as_me:6539: 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 6545 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char daemon (); below. */ *************** *** 7347,7358 **** char daemon (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6556,6561 ---- *************** *** 7370,7385 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7373: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_daemon=yes else --- 6573,6588 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6576: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6579: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6585: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_daemon=yes else *************** *** 7389,7403 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:7392: 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 #define HAVE_DAEMON 1 ! _ACEOF else ! echo "$as_me:7400: 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 --- 6592,6606 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6595: result: $ac_cv_func_daemon" >&5 echo "${ECHO_T}$ac_cv_func_daemon" >&6 if test $ac_cv_func_daemon = yes; then ! cat >>confdefs.h <<\EOF #define HAVE_DAEMON 1 ! EOF else ! echo "$as_me:6603: 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 *************** *** 7405,7411 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7408 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 6608,6614 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 6611 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 7415,7426 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char daemon (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6618,6623 ---- *************** *** 7430,7445 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7433: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7436: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7439: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7442: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_daemon=yes else --- 6627,6642 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6630: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6633: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6636: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6639: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_daemon=yes else *************** *** 7450,7473 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7453: 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 #define HAVE_DAEMON 1 ! _ACEOF fi fi ! echo "$as_me:7464: 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 7470 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpagesize (); below. */ --- 6647,6670 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:6650: result: $ac_cv_lib_bsd_daemon" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_daemon" >&6 if test $ac_cv_lib_bsd_daemon = yes; then ! LIBS="$LIBS -lbsd"; cat >>confdefs.h <<\EOF #define HAVE_DAEMON 1 ! EOF fi fi ! echo "$as_me:6661: 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 6667 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpagesize (); below. */ *************** *** 7481,7492 **** char getpagesize (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6678,6683 ---- *************** *** 7504,7519 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpagesize=yes else --- 6695,6710 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6698: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6701: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6704: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6707: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpagesize=yes else *************** *** 7523,7537 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:7526: 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 #define HAVE_GETPAGESIZE 1 ! _ACEOF else ! echo "$as_me:7534: 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 --- 6714,6728 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:6717: result: $ac_cv_func_getpagesize" >&5 echo "${ECHO_T}$ac_cv_func_getpagesize" >&6 if test $ac_cv_func_getpagesize = yes; then ! cat >>confdefs.h <<\EOF #define HAVE_GETPAGESIZE 1 ! EOF else ! echo "$as_me:6725: 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 *************** *** 7539,7545 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lucb $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7542 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 6730,6736 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lucb $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 6733 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 7549,7560 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char getpagesize (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6740,6745 ---- *************** *** 7564,7579 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7567: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7570: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7573: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7576: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ucb_getpagesize=yes else --- 6749,6764 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:6752: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6755: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:6758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ucb_getpagesize=yes else *************** *** 7584,7595 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7587: 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 #define HAVE_GETPAGESIZE 1 ! _ACEOF fi --- 6769,6780 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:6772: result: $ac_cv_lib_ucb_getpagesize" >&5 echo "${ECHO_T}$ac_cv_lib_ucb_getpagesize" >&6 if test $ac_cv_lib_ucb_getpagesize = yes; then ! LIBS="$LIBS -lucb"; cat >>confdefs.h <<\EOF #define HAVE_GETPAGESIZE 1 ! EOF fi *************** *** 7597,7611 **** # Check for broken snprintf if test "x$ac_cv_func_snprintf" = "xyes" ; then ! echo "$as_me:7600: 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:7603: 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 7608 "configure" #include "confdefs.h" #include --- 6782,6796 ---- # Check for broken snprintf if test "x$ac_cv_func_snprintf" = "xyes" ; then ! echo "$as_me:6785: 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:6788: 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 6793 "configure" #include "confdefs.h" #include *************** *** 7613,7642 **** _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:7616: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7619: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:7621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7624: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:7626: 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:7633: result: no" >&5 echo "${ECHO_T}no" >&6 ! cat >>confdefs.h <<\_ACEOF #define BROKEN_SNPRINTF 1 ! _ACEOF ! { echo "$as_me:7639: 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 --- 6798,6827 ---- _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:6801: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:6804: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:6806: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:6809: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:6811: 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:6818: result: no" >&5 echo "${ECHO_T}no" >&6 ! cat >>confdefs.h <<\EOF #define BROKEN_SNPRINTF 1 ! EOF ! { echo "$as_me:6824: 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 *************** *** 7644,7665 **** fi fi ! echo "$as_me:7647: 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 7654 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 6829,7029 ---- fi fi ! echo "$as_me:6832: 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 6838 "configure" ! #include "confdefs.h" ! #include ! #include ! #include ! #include ! ! _ACEOF ! if { (eval echo "$as_me:6846: \"$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:6852: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null; then ! if test -s conftest.err; then ! ac_cpp_err=$ac_c_preproc_warn_flag ! else ! ac_cpp_err= ! fi ! else ! ac_cpp_err=yes ! fi ! if test -z "$ac_cpp_err"; then ! ac_cv_header_stdc=yes ! else ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! ac_cv_header_stdc=no ! fi ! rm -f conftest.err conftest.$ac_ext ! ! if test $ac_cv_header_stdc = yes; then ! # SunOS 4.x string.h does not declare mem*, contrary to ANSI. ! cat >conftest.$ac_ext <<_ACEOF ! #line 6874 "configure" ! #include "confdefs.h" ! #include ! ! _ACEOF ! if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ! egrep "memchr" >/dev/null 2>&1; then ! : ! else ! ac_cv_header_stdc=no ! fi ! rm -f conftest* ! ! fi ! ! if test $ac_cv_header_stdc = yes; then ! # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. ! cat >conftest.$ac_ext <<_ACEOF ! #line 6892 "configure" ! #include "confdefs.h" ! #include ! ! _ACEOF ! if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ! egrep "free" >/dev/null 2>&1; then ! : ! else ! ac_cv_header_stdc=no ! fi ! rm -f conftest* ! ! fi ! ! if test $ac_cv_header_stdc = yes; then ! # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. ! if test "$cross_compiling" = yes; then ! : ! else ! cat >conftest.$ac_ext <<_ACEOF ! #line 6913 "configure" ! #include "confdefs.h" ! #include ! #if ((' ' & 0x0FF) == 0x020) ! # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') ! # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) ! #else ! # define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \ ! || ('j' <= (c) && (c) <= 'r') \ ! || ('s' <= (c) && (c) <= 'z')) ! # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) ! #endif ! ! #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) ! int ! main () ! { ! int i; ! for (i = 0; i < 256; i++) ! if (XOR (islower (i), ISLOWER (i)) ! || toupper (i) != TOUPPER (i)) ! exit(2); ! exit (0); ! } ! _ACEOF ! rm -f conftest$ac_exeext ! if { (eval echo "$as_me:6939: \"$ac_link\"") >&5 ! (eval $ac_link) 2>&5 ! ac_status=$? ! echo "$as_me:6942: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:6944: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:6947: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ! : ! else ! echo "$as_me: program exited with status $ac_status" >&5 ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! ac_cv_header_stdc=no ! fi ! rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ! fi ! fi ! fi ! echo "$as_me:6960: result: $ac_cv_header_stdc" >&5 ! echo "${ECHO_T}$ac_cv_header_stdc" >&6 ! if test $ac_cv_header_stdc = yes; then ! ! cat >>confdefs.h <<\EOF ! #define STDC_HEADERS 1 ! EOF ! ! fi ! ! # On IRIX 5.3, sys/types and inttypes.h are conflicting. ! ! for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ ! inttypes.h stdint.h unistd.h ! do ! as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! echo "$as_me:6976: 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 6982 "configure" ! #include "confdefs.h" ! $ac_includes_default ! #include <$ac_header> ! _ACEOF ! rm -f conftest.$ac_objext ! if { (eval echo "$as_me:6988: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>&5 ! ac_status=$? ! echo "$as_me:6991: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:6994: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:6997: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ! eval "$as_ac_Header=yes" ! else ! echo "$as_me: failed program was:" >&5 ! cat conftest.$ac_ext >&5 ! eval "$as_ac_Header=no" ! fi ! rm -f conftest.$ac_objext conftest.$ac_ext ! fi ! echo "$as_me:7007: result: `eval echo '${'$as_ac_Header'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 ! if test `eval echo '${'$as_ac_Header'}'` = yes; then ! cat >>confdefs.h <&5 echo $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 7024 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 7669,7684 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7672: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7675: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_1=yes else --- 7033,7048 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7036: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7039: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7042: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7045: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_1=yes else *************** *** 7689,7703 **** rm -f conftest.$ac_objext conftest.$ac_ext # Use it with no arg. cat >conftest.$ac_ext <<_ACEOF ! #line 7692 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7053,7061 ---- rm -f conftest.$ac_objext conftest.$ac_ext # Use it with no arg. cat >conftest.$ac_ext <<_ACEOF ! #line 7056 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 7707,7722 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7710: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7716: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7719: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_0=yes else --- 7065,7080 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7068: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7071: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7074: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7077: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_func_getpgrp_0=yes else *************** *** 7730,7741 **** 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:7733: 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 7738 "configure" #include "confdefs.h" $ac_includes_default --- 7088,7099 ---- 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:7091: 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 7096 "configure" #include "confdefs.h" $ac_includes_default *************** *** 7789,7803 **** _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:7792: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:7797: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7800: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpgrp_void=yes else --- 7147,7161 ---- _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:7150: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7153: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:7155: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7158: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getpgrp_void=yes else *************** *** 7811,7823 **** esac # $ac_func_getpgrp_0:$ac_func_getpgrp_1 fi ! echo "$as_me:7814: 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 ! cat >>confdefs.h <<\_ACEOF #define GETPGRP_VOID 1 ! _ACEOF fi --- 7169,7181 ---- esac # $ac_func_getpgrp_0:$ac_func_getpgrp_1 fi ! echo "$as_me:7172: 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 ! cat >>confdefs.h <<\EOF #define GETPGRP_VOID 1 ! EOF fi *************** *** 7830,7841 **** if test "x$withval" != "xno" ; then if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then ! { { echo "$as_me:7833: error: PAM headers not found" >&5 echo "$as_me: error: PAM headers not found" >&2;} { (exit 1); exit 1; }; } fi ! echo "$as_me:7838: 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 --- 7188,7199 ---- if test "x$withval" != "xno" ; then if test "x$ac_cv_header_security_pam_appl_h" != "xyes" ; then ! { { echo "$as_me:7191: error: PAM headers not found" >&5 echo "$as_me: error: PAM headers not found" >&2;} { (exit 1); exit 1; }; } fi ! echo "$as_me:7196: 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 *************** *** 7843,7849 **** ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7846 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 7201,7207 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7204 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 7853,7864 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dlopen (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7211,7216 ---- *************** *** 7868,7883 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7871: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7874: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7877: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7880: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else --- 7220,7235 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7223: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7226: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7229: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7232: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else *************** *** 7888,7905 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7891: 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 #define HAVE_LIBDL 1 ! _ACEOF LIBS="-ldl $LIBS" fi ! echo "$as_me:7902: 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 --- 7240,7257 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7243: result: $ac_cv_lib_dl_dlopen" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then ! cat >>confdefs.h <&5 echo $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 *************** *** 7907,7913 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lpam $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7910 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 7259,7265 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lpam $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7262 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 7917,7928 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char pam_set_item (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7269,7274 ---- *************** *** 7932,7947 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7935: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7938: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7941: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7944: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pam_pam_set_item=yes else --- 7278,7293 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7281: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7284: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7287: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7290: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_pam_pam_set_item=yes else *************** *** 7952,7968 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7955: result: $ac_cv_lib_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 #define HAVE_LIBPAM 1 ! _ACEOF LIBS="-lpam $LIBS" else ! { { echo "$as_me:7965: error: *** libpam missing" >&5 echo "$as_me: error: *** libpam missing" >&2;} { (exit 1); exit 1; }; } fi --- 7298,7314 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7301: result: $ac_cv_lib_pam_pam_set_item" >&5 echo "${ECHO_T}$ac_cv_lib_pam_pam_set_item" >&6 if test $ac_cv_lib_pam_pam_set_item = yes; then ! cat >>confdefs.h <&5 echo "$as_me: error: *** libpam missing" >&2;} { (exit 1); exit 1; }; } fi *************** *** 7970,7982 **** for ac_func in pam_getenvlist do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:7973: 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 7979 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ --- 7316,7328 ---- for ac_func in pam_getenvlist do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:7319: 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 7325 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ *************** *** 7990,8001 **** char $ac_func (); char (*f) (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7336,7341 ---- *************** *** 8013,8028 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:8016: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8019: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:8022: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8025: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else --- 7353,7368 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7356: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7359: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7362: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7365: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else *************** *** 8032,8043 **** fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:8035: 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 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 ! _ACEOF fi done --- 7372,7383 ---- fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:7375: 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 <>confdefs.h <<\_ACEOF #define USE_PAM 1 ! _ACEOF fi --- 7385,7393 ---- disable_shadow=yes PAM_MSG="yes" ! cat >>confdefs.h <<\EOF #define USE_PAM 1 ! EOF fi *************** *** 8056,8076 **** # Check for older PAM if test "x$PAM_MSG" = "xyes" ; then # Check PAM strerror arguments (old PAM) ! echo "$as_me:8059: 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 8062 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7396,7410 ---- # Check for older PAM if test "x$PAM_MSG" = "xyes" ; then # Check PAM strerror arguments (old PAM) ! echo "$as_me:7399: 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 7402 "configure" #include "confdefs.h" #include #include int main () { *************** *** 8080,8107 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8083: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8086: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8092: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:8094: result: no" >&5 echo "${ECHO_T}no" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! cat >>confdefs.h <<\_ACEOF #define HAVE_OLD_PAM 1 ! _ACEOF ! echo "$as_me:8104: result: yes" >&5 echo "${ECHO_T}yes" >&6 PAM_MSG="yes (old library)" --- 7414,7441 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7417: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! echo "$as_me:7428: result: no" >&5 echo "${ECHO_T}no" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! cat >>confdefs.h <<\EOF #define HAVE_OLD_PAM 1 ! EOF ! echo "$as_me:7438: result: yes" >&5 echo "${ECHO_T}yes" >&6 PAM_MSG="yes (old library)" *************** *** 8127,8133 **** if test "x$prefix" != "xNONE" ; then tryssldir="$tryssldir $prefix" fi ! echo "$as_me:8130: 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 --- 7461,7467 ---- if test "x$prefix" != "xNONE" ; then tryssldir="$tryssldir $prefix" fi ! echo "$as_me:7464: 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 *************** *** 8168,8179 **** # 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:8171: 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 8176 "configure" #include "confdefs.h" #include --- 7502,7513 ---- # 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:7505: 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 7510 "configure" #include "confdefs.h" #include *************** *** 8188,8202 **** _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8191: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8194: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8196: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8199: \$? = $ac_status" >&5 (exit $ac_status); }; }; then found_crypto=1 --- 7522,7536 ---- _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:7525: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7528: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:7530: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7533: \$? = $ac_status" >&5 (exit $ac_status); }; }; then found_crypto=1 *************** *** 8217,8223 **** done if test -z "$found_crypto" ; then ! { { echo "$as_me:8220: 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 --- 7551,7557 ---- done if test -z "$found_crypto" ; then ! { { echo "$as_me:7554: 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 *************** *** 8228,8240 **** ac_cv_openssldir=$ssldir fi ! echo "$as_me:8231: 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 ! cat >>confdefs.h <<\_ACEOF #define HAVE_OPENSSL 1 ! _ACEOF ssldir=$ac_cv_openssldir if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then --- 7562,7574 ---- ac_cv_openssldir=$ssldir fi ! echo "$as_me:7565: 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 ! cat >>confdefs.h <<\EOF #define HAVE_OPENSSL 1 ! EOF ssldir=$ac_cv_openssldir if test ! -z "$ssldir" -a "x$ssldir" != "x/usr"; then *************** *** 8264,8270 **** # Now test RSA support saved_LIBS="$LIBS" ! echo "$as_me:8267: 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 --- 7598,7604 ---- # Now test RSA support saved_LIBS="$LIBS" ! echo "$as_me:7601: 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 *************** *** 8273,8284 **** LIBS="$saved_LIBS -lRSAglue -lrsaref" fi if test "$cross_compiling" = yes; then ! { { echo "$as_me:8276: 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 8281 "configure" #include "confdefs.h" #include --- 7607,7618 ---- LIBS="$saved_LIBS -lRSAglue -lrsaref" fi if test "$cross_compiling" = yes; then ! { { echo "$as_me:7610: 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 7615 "configure" #include "confdefs.h" #include *************** *** 8298,8312 **** _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8301: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8304: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8306: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8309: \$? = $ac_status" >&5 (exit $ac_status); }; }; then rsa_works=1 --- 7632,7646 ---- _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:7635: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7638: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:7640: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7643: \$? = $ac_status" >&5 (exit $ac_status); }; }; then rsa_works=1 *************** *** 8323,8344 **** LIBS="$saved_LIBS" if test ! -z "$no_rsa" ; then ! echo "$as_me:8326: result: disabled" >&5 echo "${ECHO_T}disabled" >&6 RSA_MSG="disabled" else if test -z "$rsa_works" ; then ! { echo "$as_me:8331: 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:8336: result: yes" >&5 echo "${ECHO_T}yes" >&6 RSA_MSG="yes" else RSA_MSG="yes (using RSAref)" ! echo "$as_me:8341: result: using RSAref" >&5 echo "${ECHO_T}using RSAref" >&6 LIBS="$LIBS -lcrypto -lRSAglue -lrsaref" fi --- 7657,7678 ---- LIBS="$saved_LIBS" if test ! -z "$no_rsa" ; then ! echo "$as_me:7660: result: disabled" >&5 echo "${ECHO_T}disabled" >&6 RSA_MSG="disabled" else if test -z "$rsa_works" ; then ! { echo "$as_me:7665: 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:7670: result: yes" >&5 echo "${ECHO_T}yes" >&6 RSA_MSG="yes" else RSA_MSG="yes (using RSAref)" ! echo "$as_me:7675: result: using RSAref" >&5 echo "${ECHO_T}using RSAref" >&6 LIBS="$LIBS -lcrypto -lRSAglue -lrsaref" fi *************** *** 8348,8354 **** # 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:8351: 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 --- 7682,7688 ---- # 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:7685: 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 *************** *** 8356,8362 **** ac_check_lib_save_LIBS=$LIBS LIBS="-lcrypt $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 8359 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ --- 7690,7696 ---- ac_check_lib_save_LIBS=$LIBS LIBS="-lcrypt $LIBS" cat >conftest.$ac_ext <<_ACEOF ! #line 7693 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ *************** *** 8366,8377 **** /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char crypt (); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7700,7705 ---- *************** *** 8381,8396 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:8384: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8387: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:8390: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8393: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_crypt_crypt=yes else --- 7709,7724 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:7712: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7715: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:7718: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7721: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_crypt_crypt=yes else *************** *** 8401,8407 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:8404: 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" --- 7729,7735 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:7732: 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" *************** *** 8415,8435 **** fi # Checks for data types ! echo "$as_me:8418: 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 8424 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7743,7757 ---- fi # Checks for data types ! echo "$as_me:7746: 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 7752 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8442,8457 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8445: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8448: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8451: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8454: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_char=yes else --- 7764,7779 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7767: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7770: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7773: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7776: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_char=yes else *************** *** 8461,8470 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:8464: result: $ac_cv_type_char" >&5 echo "${ECHO_T}$ac_cv_type_char" >&6 ! echo "$as_me:8467: 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 --- 7783,7792 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:7786: result: $ac_cv_type_char" >&5 echo "${ECHO_T}$ac_cv_type_char" >&6 ! echo "$as_me:7789: 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 *************** *** 8473,8487 **** if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 8476 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7795,7803 ---- if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 7798 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8491,8519 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8494: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8497: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8503: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8508 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7807,7829 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7810: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7813: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7816: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7819: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 7824 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8523,8538 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8526: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8529: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8532: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8535: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else --- 7833,7848 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7836: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7839: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7842: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7845: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else *************** *** 8548,8562 **** ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8551 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7858,7866 ---- ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 7861 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8566,8581 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8569: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else --- 7870,7885 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7873: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7876: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7879: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7882: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else *************** *** 8591,8605 **** 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 8594 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7895,7903 ---- 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 7898 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8609,8624 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8612: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8615: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8618: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8621: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else --- 7907,7922 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:7910: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:7913: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:7916: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7919: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else *************** *** 8631,8650 **** ac_cv_sizeof_char=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:8634: 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 8639 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7929,7942 ---- ac_cv_sizeof_char=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:7932: 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 7937 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8658,8672 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8661: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_char=`cat conftest.val` else --- 7950,7964 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:7953: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:7956: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:7958: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:7961: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_char=`cat conftest.val` else *************** *** 8682,8708 **** ac_cv_sizeof_char=0 fi fi ! echo "$as_me:8685: 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:8691: 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 8697 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 7974,7994 ---- ac_cv_sizeof_char=0 fi fi ! echo "$as_me:7977: result: $ac_cv_sizeof_char" >&5 echo "${ECHO_T}$ac_cv_sizeof_char" >&6 ! cat >>confdefs.h <&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 7989 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8715,8730 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8718: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8721: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8724: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8727: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_short_int=yes else --- 8001,8016 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8004: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8007: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8010: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8013: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_short_int=yes else *************** *** 8734,8743 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:8737: result: $ac_cv_type_short_int" >&5 echo "${ECHO_T}$ac_cv_type_short_int" >&6 ! echo "$as_me:8740: 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 --- 8020,8029 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:8023: result: $ac_cv_type_short_int" >&5 echo "${ECHO_T}$ac_cv_type_short_int" >&6 ! echo "$as_me:8026: 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 *************** *** 8746,8760 **** if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 8749 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8032,8040 ---- if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 8035 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8764,8792 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8767: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8770: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8773: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8776: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8781 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8044,8066 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8047: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8050: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8056: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8061 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8796,8811 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8799: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8802: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8805: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8808: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else --- 8070,8085 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8073: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8076: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8079: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8082: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else *************** *** 8821,8835 **** ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8824 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8095,8103 ---- ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8098 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8839,8854 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8842: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8845: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8848: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8851: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else --- 8107,8122 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8110: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8113: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8116: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8119: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else *************** *** 8864,8878 **** 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 8867 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8132,8140 ---- 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 8135 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8882,8897 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8885: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8888: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8894: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else --- 8144,8159 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8147: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8150: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8153: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8156: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else *************** *** 8904,8923 **** ac_cv_sizeof_short_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:8907: 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 8912 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8166,8179 ---- ac_cv_sizeof_short_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:8169: 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 8174 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8931,8945 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8934: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8937: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8939: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8942: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_short_int=`cat conftest.val` else --- 8187,8201 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8190: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8193: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8198: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_short_int=`cat conftest.val` else *************** *** 8955,8981 **** ac_cv_sizeof_short_int=0 fi fi ! echo "$as_me:8958: 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:8964: 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 8970 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8211,8231 ---- ac_cv_sizeof_short_int=0 fi fi ! echo "$as_me:8214: result: $ac_cv_sizeof_short_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_short_int" >&6 ! cat >>confdefs.h <&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 8226 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 8988,9003 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8991: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8994: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9000: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else --- 8238,8253 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8241: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8244: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8247: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8250: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else *************** *** 9007,9016 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9010: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 ! echo "$as_me:9013: 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 --- 8257,8266 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:8260: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 ! echo "$as_me:8263: 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 *************** *** 9019,9033 **** if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 9022 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8269,8277 ---- if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 8272 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9037,9065 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9040: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9043: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9049: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 9054 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8281,8303 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8284: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8287: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8290: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8293: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8298 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9069,9084 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9072: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9075: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9078: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9081: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else --- 8307,8322 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8310: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8313: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8319: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else *************** *** 9094,9108 **** ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 9097 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8332,8340 ---- ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8335 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9112,9127 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9115: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else --- 8344,8359 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8347: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else *************** *** 9137,9151 **** 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 9140 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8369,8377 ---- 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 8372 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9155,9170 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9158: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9161: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9164: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9167: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else --- 8381,8396 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8384: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8387: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8390: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8393: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else *************** *** 9177,9196 **** ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:9180: 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 9185 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8403,8416 ---- ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:8406: 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 8411 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9204,9218 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:9207: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:9210: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:9212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9215: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else --- 8424,8438 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8427: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8430: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else *************** *** 9228,9254 **** ac_cv_sizeof_int=0 fi fi ! echo "$as_me:9231: 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:9237: 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 9243 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8448,8468 ---- ac_cv_sizeof_int=0 fi fi ! echo "$as_me:8451: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 ! cat >>confdefs.h <&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 8463 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9261,9276 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9264: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9267: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9270: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9273: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_int=yes else --- 8475,8490 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8478: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_int=yes else *************** *** 9280,9289 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9283: result: $ac_cv_type_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_int" >&6 ! echo "$as_me:9286: 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 --- 8494,8503 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:8497: result: $ac_cv_type_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_int" >&6 ! echo "$as_me:8500: 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 *************** *** 9292,9306 **** if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 9295 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8506,8514 ---- if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 8509 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9310,9338 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9313: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9316: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9319: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9322: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 9327 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8518,8540 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8521: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8524: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8530: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8535 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9342,9357 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9345: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9348: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9351: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9354: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else --- 8544,8559 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8547: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else *************** *** 9367,9381 **** ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 9370 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8569,8577 ---- ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8572 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9385,9400 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9388: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9391: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9397: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else --- 8581,8596 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8584: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8587: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8590: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8593: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else *************** *** 9410,9424 **** 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 9413 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8606,8614 ---- 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 8609 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9428,9443 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9431: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9434: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9437: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9440: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else --- 8618,8633 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8621: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8624: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8630: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else *************** *** 9450,9469 **** ac_cv_sizeof_long_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:9453: 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 9458 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8640,8653 ---- ac_cv_sizeof_long_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:8643: 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 8648 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9477,9491 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:9480: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:9483: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:9485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_int=`cat conftest.val` else --- 8661,8675 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8664: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8667: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8672: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_int=`cat conftest.val` else *************** *** 9501,9527 **** ac_cv_sizeof_long_int=0 fi fi ! echo "$as_me:9504: 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:9510: 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 9516 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8685,8705 ---- ac_cv_sizeof_long_int=0 fi fi ! echo "$as_me:8688: result: $ac_cv_sizeof_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_int" >&6 ! cat >>confdefs.h <&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 8700 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9534,9549 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9537: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9540: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9543: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9546: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_long_int=yes else --- 8712,8727 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8715: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8724: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_long_int=yes else *************** *** 9553,9562 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9556: result: $ac_cv_type_long_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_long_int" >&6 ! echo "$as_me:9559: 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 --- 8731,8740 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:8734: result: $ac_cv_type_long_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_long_int" >&6 ! echo "$as_me:8737: 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 *************** *** 9565,9579 **** if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 9568 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8743,8751 ---- if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF ! #line 8746 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9583,9611 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9586: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9589: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9595: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 9600 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8755,8777 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8772 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9615,9630 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9618: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9627: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else --- 8781,8796 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8784: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8787: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8793: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else *************** *** 9640,9654 **** ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 9643 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8806,8814 ---- ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF ! #line 8809 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9658,9673 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9661: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9667: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9670: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else --- 8818,8833 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8821: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8824: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8827: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8830: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else *************** *** 9683,9697 **** 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 9686 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8843,8851 ---- 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 8846 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9701,9716 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9704: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9707: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9710: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9713: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else --- 8855,8870 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8858: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8861: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8864: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8867: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else *************** *** 9723,9742 **** ac_cv_sizeof_long_long_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:9726: 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 9731 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8877,8890 ---- ac_cv_sizeof_long_long_int=$ac_lo else if test "$cross_compiling" = yes; then ! { { echo "$as_me:8880: 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 8885 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 9750,9764 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:9753: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:9756: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:9758: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9761: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_long_int=`cat conftest.val` else --- 8898,8912 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:8901: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:8904: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:8906: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8909: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_long_int=`cat conftest.val` else *************** *** 9774,9802 **** ac_cv_sizeof_long_long_int=0 fi fi ! echo "$as_me:9777: 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:9784: 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 9791 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8922,8944 ---- ac_cv_sizeof_long_long_int=0 fi fi ! echo "$as_me:8925: result: $ac_cv_sizeof_long_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_long_int" >&6 ! cat >>confdefs.h <&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 8939 "configure" #include "confdefs.h" #include int main () { *************** *** 9806,9821 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9809: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9812: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9815: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9818: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int="yes" else --- 8948,8963 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:8951: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:8954: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:8957: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:8960: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int="yes" else *************** *** 9827,9858 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9830: 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 #define HAVE_U_INT 1 ! _ACEOF have_u_int=1 fi ! echo "$as_me:9840: 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 9847 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 8969,8994 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:8972: result: $ac_cv_have_u_int" >&5 echo "${ECHO_T}$ac_cv_have_u_int" >&6 if test "x$ac_cv_have_u_int" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_U_INT 1 ! EOF have_u_int=1 fi ! echo "$as_me:8982: 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 8989 "configure" #include "confdefs.h" #include int main () { *************** *** 9862,9877 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9865: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9868: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9874: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_intxx_t="yes" else --- 8998,9013 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9001: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9004: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9007: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9010: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_intxx_t="yes" else *************** *** 9883,9894 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9886: 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 #define HAVE_INTXX_T 1 ! _ACEOF have_intxx_t=1 fi --- 9019,9030 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9022: result: $ac_cv_have_intxx_t" >&5 echo "${ECHO_T}$ac_cv_have_intxx_t" >&6 if test "x$ac_cv_have_intxx_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_INTXX_T 1 ! EOF have_intxx_t=1 fi *************** *** 9896,9913 **** if (test -z "$have_intxx_t" && \ test "x$ac_cv_header_stdint_h" = "xyes") then ! echo "$as_me:9899: 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 9902 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9032,9043 ---- if (test -z "$have_intxx_t" && \ test "x$ac_cv_header_stdint_h" = "xyes") then ! echo "$as_me:9035: 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 9038 "configure" #include "confdefs.h" #include int main () { *************** *** 9917,9967 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9920: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9923: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9926: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9929: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_INTXX_T 1 ! _ACEOF ! echo "$as_me:9936: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:9942: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9949: 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 9956 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9047,9091 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9050: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9053: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9056: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9059: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\EOF #define HAVE_INTXX_T 1 ! EOF ! echo "$as_me:9066: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:9072: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9079: 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 9086 "configure" #include "confdefs.h" #include int main () { *************** *** 9971,9986 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9974: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9977: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9980: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9983: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_int64_t="yes" else --- 9095,9110 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9098: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9101: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9104: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9107: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_int64_t="yes" else *************** *** 9992,10020 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9995: 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 #define HAVE_INT64_T 1 ! _ACEOF have_int64_t=1 fi if test -z "$have_int64_t" ; then ! echo "$as_me:10006: 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 10009 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9116,9138 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9119: result: $ac_cv_have_int64_t" >&5 echo "${ECHO_T}$ac_cv_have_int64_t" >&6 if test "x$ac_cv_have_int64_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_INT64_T 1 ! EOF have_int64_t=1 fi if test -z "$have_int64_t" ; then ! echo "$as_me:9130: 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 9133 "configure" #include "confdefs.h" #include int main () { *************** *** 10024,10074 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10027: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10030: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_INT64_T 1 ! _ACEOF ! echo "$as_me:10043: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:10049: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10056: 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 10063 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9142,9186 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9145: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\EOF #define HAVE_INT64_T 1 ! EOF ! echo "$as_me:9161: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:9167: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9174: 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 9181 "configure" #include "confdefs.h" #include int main () { *************** *** 10078,10093 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10081: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_intxx_t="yes" else --- 9190,9205 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9193: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9196: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9199: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9202: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_intxx_t="yes" else *************** *** 10099,10127 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10102: 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 #define HAVE_U_INTXX_T 1 ! _ACEOF have_u_intxx_t=1 fi if test -z "$have_u_intxx_t" ; then ! echo "$as_me:10113: 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 10116 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9211,9233 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9214: result: $ac_cv_have_u_intxx_t" >&5 echo "${ECHO_T}$ac_cv_have_u_intxx_t" >&6 if test "x$ac_cv_have_u_intxx_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_U_INTXX_T 1 ! EOF have_u_intxx_t=1 fi if test -z "$have_u_intxx_t" ; then ! echo "$as_me:9225: 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 9228 "configure" #include "confdefs.h" #include int main () { *************** *** 10131,10181 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10134: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10137: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10143: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_U_INTXX_T 1 ! _ACEOF ! echo "$as_me:10150: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:10156: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10163: 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 10170 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9237,9281 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9240: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9243: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9246: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9249: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\EOF #define HAVE_U_INTXX_T 1 ! EOF ! echo "$as_me:9256: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:9262: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9269: 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 9276 "configure" #include "confdefs.h" #include int main () { *************** *** 10185,10200 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10188: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10191: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10194: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10197: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int64_t="yes" else --- 9285,9300 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9288: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9291: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9294: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9297: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_int64_t="yes" else *************** *** 10206,10240 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10209: 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 #define HAVE_U_INT64_T 1 ! _ACEOF have_u_int64_t=1 fi if test -z "$have_u_intxx_t" ; then ! echo "$as_me:10220: 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 10227 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9306,9334 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9309: result: $ac_cv_have_u_int64_t" >&5 echo "${ECHO_T}$ac_cv_have_u_int64_t" >&6 if test "x$ac_cv_have_u_int64_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_U_INT64_T 1 ! EOF have_u_int64_t=1 fi if test -z "$have_u_intxx_t" ; then ! echo "$as_me:9320: 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 9327 "configure" #include "confdefs.h" #include int main () { *************** *** 10244,10259 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10247: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10250: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10253: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10256: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_uintxx_t="yes" else --- 9338,9353 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9341: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9344: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9347: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9350: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_uintxx_t="yes" else *************** *** 10265,10293 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10268: 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 #define HAVE_UINTXX_T 1 ! _ACEOF fi fi if test -z "$have_uintxx_t" ; then ! echo "$as_me:10279: 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 10282 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9359,9381 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9362: result: $ac_cv_have_uintxx_t" >&5 echo "${ECHO_T}$ac_cv_have_uintxx_t" >&6 if test "x$ac_cv_have_uintxx_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_UINTXX_T 1 ! EOF fi fi if test -z "$have_uintxx_t" ; then ! echo "$as_me:9373: 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 9376 "configure" #include "confdefs.h" #include int main () { *************** *** 10297,10325 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10300: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10303: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10306: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10309: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_UINTXX_T 1 ! _ACEOF ! echo "$as_me:10316: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:10322: result: no" >&5 echo "${ECHO_T}no" >&6 fi --- 9385,9413 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9388: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9391: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9397: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\EOF #define HAVE_UINTXX_T 1 ! EOF ! echo "$as_me:9404: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:9410: result: no" >&5 echo "${ECHO_T}no" >&6 fi *************** *** 10329,10348 **** 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:10332: 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 10335 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9417,9430 ---- 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:9420: 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 9423 "configure" #include "confdefs.h" #include int main () { *************** *** 10356,10412 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10359: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10362: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10365: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10368: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_U_INTXX_T 1 ! _ACEOF ! cat >>confdefs.h <<\_ACEOF #define HAVE_INTXX_T 1 ! _ACEOF ! echo "$as_me:10379: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:10385: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10392: 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 10399 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9438,9488 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9441: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9444: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9447: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9450: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! cat >>confdefs.h <<\EOF #define HAVE_U_INTXX_T 1 ! EOF ! cat >>confdefs.h <<\EOF #define HAVE_INTXX_T 1 ! EOF ! echo "$as_me:9461: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! echo "$as_me:9467: result: no" >&5 echo "${ECHO_T}no" >&6 fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9474: 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 9481 "configure" #include "confdefs.h" #include int main () { *************** *** 10416,10431 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10419: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_char="yes" else --- 9492,9507 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9495: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9498: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9501: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9504: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_u_char="yes" else *************** *** 10437,10468 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10440: 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 #define HAVE_U_CHAR 1 ! _ACEOF fi ! echo "$as_me:10449: 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 10455 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9513,9538 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9516: result: $ac_cv_have_u_char" >&5 echo "${ECHO_T}$ac_cv_have_u_char" >&6 if test "x$ac_cv_have_u_char" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_U_CHAR 1 ! EOF fi ! echo "$as_me:9525: 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 9531 "configure" #include "confdefs.h" #include #include int main () { *************** *** 10475,10490 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10478: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else --- 9545,9560 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9548: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9551: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9557: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else *************** *** 10494,10506 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10497: 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:10503: 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 --- 9564,9576 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9567: 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:9573: 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 *************** *** 10512,10518 **** for arg2 in "struct sockaddr" void; do for t in int size_t unsigned long "unsigned long"; do cat >conftest.$ac_ext <<_ACEOF ! #line 10515 "configure" #include "confdefs.h" #include --- 9582,9588 ---- for arg2 in "struct sockaddr" void; do for t in int size_t unsigned long "unsigned long"; do cat >conftest.$ac_ext <<_ACEOF ! #line 9585 "configure" #include "confdefs.h" #include *************** *** 10520,10531 **** int getpeername (int, $arg2 *, $t *); - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9590,9595 ---- *************** *** 10538,10553 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10541: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10544: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10547: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10550: \$? = $ac_status" >&5 (exit $ac_status); }; }; then curl_cv_socklen_t_equiv="$t" --- 9602,9617 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9605: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9614: \$? = $ac_status" >&5 (exit $ac_status); }; }; then curl_cv_socklen_t_equiv="$t" *************** *** 10562,10601 **** done if test "x$curl_cv_socklen_t_equiv" = x; then ! { { echo "$as_me:10565: 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:10572: result: $curl_cv_socklen_t_equiv" >&5 echo "${ECHO_T}$curl_cv_socklen_t_equiv" >&6 ! cat >>confdefs.h <<_ACEOF #define socklen_t $curl_cv_socklen_t_equiv ! _ACEOF fi ! echo "$as_me:10581: 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 10588 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9626,9659 ---- done if test "x$curl_cv_socklen_t_equiv" = x; then ! { { echo "$as_me:9629: 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:9636: result: $curl_cv_socklen_t_equiv" >&5 echo "${ECHO_T}$curl_cv_socklen_t_equiv" >&6 ! cat >>confdefs.h <&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 9652 "configure" #include "confdefs.h" #include int main () { *************** *** 10605,10620 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10608: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10611: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10614: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10617: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_size_t="yes" else --- 9663,9678 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9666: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9669: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9672: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9675: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_size_t="yes" else *************** *** 10626,10658 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10629: 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 #define HAVE_SIZE_T 1 ! _ACEOF fi ! echo "$as_me:10638: 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 10645 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9684,9710 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9687: result: $ac_cv_have_size_t" >&5 echo "${ECHO_T}$ac_cv_have_size_t" >&6 if test "x$ac_cv_have_size_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_SIZE_T 1 ! EOF fi ! echo "$as_me:9696: 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 9703 "configure" #include "confdefs.h" #include int main () { *************** *** 10662,10677 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10665: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ssize_t="yes" else --- 9714,9729 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9717: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9720: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9723: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9726: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ssize_t="yes" else *************** *** 10683,10715 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10686: 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 #define HAVE_SSIZE_T 1 ! _ACEOF fi ! echo "$as_me:10695: 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 10702 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9735,9761 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9738: result: $ac_cv_have_ssize_t" >&5 echo "${ECHO_T}$ac_cv_have_ssize_t" >&6 if test "x$ac_cv_have_ssize_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_SSIZE_T 1 ! EOF fi ! echo "$as_me:9747: 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 9754 "configure" #include "confdefs.h" #include int main () { *************** *** 10719,10734 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10722: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10725: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10731: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_clock_t="yes" else --- 9765,9780 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9768: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9771: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9777: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_clock_t="yes" else *************** *** 10740,10773 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10743: 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 #define HAVE_CLOCK_T 1 ! _ACEOF fi ! echo "$as_me:10752: 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 10759 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9786,9813 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9789: result: $ac_cv_have_clock_t" >&5 echo "${ECHO_T}$ac_cv_have_clock_t" >&6 if test "x$ac_cv_have_clock_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_CLOCK_T 1 ! EOF fi ! echo "$as_me:9798: 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 9805 "configure" #include "confdefs.h" #include #include int main () { *************** *** 10777,10811 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10780: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10783: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10786: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10789: \$? = $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 10796 "configure" #include "confdefs.h" #include #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9817,9845 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9820: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9823: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9826: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9829: \$? = $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 9836 "configure" #include "confdefs.h" #include #include #include int main () { *************** *** 10815,10830 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10818: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10827: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_sa_family_t="yes" else --- 9849,9864 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9852: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9855: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9858: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9861: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_sa_family_t="yes" else *************** *** 10839,10871 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10842: 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 #define HAVE_SA_FAMILY_T 1 ! _ACEOF fi ! echo "$as_me:10851: 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 10858 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9873,9899 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9876: result: $ac_cv_have_sa_family_t" >&5 echo "${ECHO_T}$ac_cv_have_sa_family_t" >&6 if test "x$ac_cv_have_sa_family_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_SA_FAMILY_T 1 ! EOF fi ! echo "$as_me:9885: 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 9892 "configure" #include "confdefs.h" #include int main () { *************** *** 10875,10890 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10878: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10881: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10884: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10887: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pid_t="yes" else --- 9903,9918 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9906: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pid_t="yes" else *************** *** 10896,10928 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10899: 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 #define HAVE_PID_T 1 ! _ACEOF fi ! echo "$as_me:10908: 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 10915 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9924,9950 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9927: result: $ac_cv_have_pid_t" >&5 echo "${ECHO_T}$ac_cv_have_pid_t" >&6 if test "x$ac_cv_have_pid_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_PID_T 1 ! EOF fi ! echo "$as_me:9936: 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 9943 "configure" #include "confdefs.h" #include int main () { *************** *** 10932,10947 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10935: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10938: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10941: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10944: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_mode_t="yes" else --- 9954,9969 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:9957: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:9960: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:9963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:9966: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_mode_t="yes" else *************** *** 10953,10986 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10956: 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 #define HAVE_MODE_T 1 ! _ACEOF fi ! echo "$as_me:10965: 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 10972 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 9975,10002 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:9978: result: $ac_cv_have_mode_t" >&5 echo "${ECHO_T}$ac_cv_have_mode_t" >&6 if test "x$ac_cv_have_mode_t" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_MODE_T 1 ! EOF fi ! echo "$as_me:9987: 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 9994 "configure" #include "confdefs.h" #include #include int main () { *************** *** 10990,11005 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10993: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10996: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10999: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11002: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_storage="yes" else --- 10006,10021 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10009: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10012: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10015: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10018: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_storage="yes" else *************** *** 11011,11044 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11014: 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 #define HAVE_STRUCT_SOCKADDR_STORAGE 1 ! _ACEOF fi ! echo "$as_me:11023: 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 11030 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 10027,10054 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10030: result: $ac_cv_have_struct_sockaddr_storage" >&5 echo "${ECHO_T}$ac_cv_have_struct_sockaddr_storage" >&6 if test "x$ac_cv_have_struct_sockaddr_storage" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_STRUCT_SOCKADDR_STORAGE 1 ! EOF fi ! echo "$as_me:10039: 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 10046 "configure" #include "confdefs.h" #include #include int main () { *************** *** 11048,11063 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11051: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11054: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11057: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11060: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_in6="yes" else --- 10058,10073 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10061: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10064: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_sockaddr_in6="yes" else *************** *** 11069,11102 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11072: 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 #define HAVE_STRUCT_SOCKADDR_IN6 1 ! _ACEOF fi ! echo "$as_me:11081: 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 11088 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 10079,10106 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10082: result: $ac_cv_have_struct_sockaddr_in6" >&5 echo "${ECHO_T}$ac_cv_have_struct_sockaddr_in6" >&6 if test "x$ac_cv_have_struct_sockaddr_in6" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_STRUCT_SOCKADDR_IN6 1 ! EOF fi ! echo "$as_me:10091: 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 10098 "configure" #include "confdefs.h" #include #include int main () { *************** *** 11106,11121 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11109: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11112: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11115: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11118: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_in6_addr="yes" else --- 10110,10125 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10113: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10116: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10122: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_in6_addr="yes" else *************** *** 11127,11161 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11130: 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 #define HAVE_STRUCT_IN6_ADDR 1 ! _ACEOF fi ! echo "$as_me:11139: 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 11146 "configure" #include "confdefs.h" #include #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 10131,10159 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10134: result: $ac_cv_have_struct_in6_addr" >&5 echo "${ECHO_T}$ac_cv_have_struct_in6_addr" >&6 if test "x$ac_cv_have_struct_in6_addr" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_STRUCT_IN6_ADDR 1 ! EOF fi ! echo "$as_me:10143: 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 10150 "configure" #include "confdefs.h" #include #include #include int main () { *************** *** 11165,11180 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11168: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11171: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11174: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11177: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_addrinfo="yes" else --- 10163,10178 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10166: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10169: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10172: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10175: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_addrinfo="yes" else *************** *** 11186,11216 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11189: 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 #define HAVE_STRUCT_ADDRINFO 1 ! _ACEOF fi ! echo "$as_me:11198: 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 11205 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 10184,10208 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10187: result: $ac_cv_have_struct_addrinfo" >&5 echo "${ECHO_T}$ac_cv_have_struct_addrinfo" >&6 if test "x$ac_cv_have_struct_addrinfo" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_STRUCT_ADDRINFO 1 ! EOF fi ! echo "$as_me:10196: 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 10203 "configure" #include "confdefs.h" #include int main () { *************** *** 11220,11235 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11223: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11226: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11229: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11232: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_timeval="yes" else --- 10212,10227 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:10215: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:10218: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:10221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10224: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_struct_timeval="yes" else *************** *** 11241,11252 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11244: 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 #define HAVE_STRUCT_TIMEVAL 1 ! _ACEOF have_struct_timeval=1 fi --- 10233,10244 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:10236: result: $ac_cv_have_struct_timeval" >&5 echo "${ECHO_T}$ac_cv_have_struct_timeval" >&6 if test "x$ac_cv_have_struct_timeval" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_STRUCT_TIMEVAL 1 ! EOF have_struct_timeval=1 fi *************** *** 11259,11270 **** NO_SFTP='#' else if test "$cross_compiling" = yes; then ! { { echo "$as_me:11262: 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 11267 "configure" #include "confdefs.h" #include --- 10251,10262 ---- NO_SFTP='#' else if test "$cross_compiling" = yes; then ! { { echo "$as_me:10254: 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 10259 "configure" #include "confdefs.h" #include *************** *** 11292,11315 **** _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:11295: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:11298: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:11300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then true else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! cat >>confdefs.h <<\_ACEOF #define BROKEN_SNPRINTF 1 ! _ACEOF fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext --- 10284,10307 ---- _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:10287: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:10290: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:10292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:10295: \$? = $ac_status" >&5 (exit $ac_status); }; }; then true else echo "$as_me: program exited with status $ac_status" >&5 echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 ! cat >>confdefs.h <<\EOF #define BROKEN_SNPRINTF 1 ! EOF fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext *************** *** 11319,11332 **** # 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:11322: 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 11329 "configure" #include "confdefs.h" #include --- 10311,10324 ---- # 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:10314: 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 10321 "configure" #include "confdefs.h" #include *************** *** 11343,11372 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11346: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_HOST_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11355: 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:11362: 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 11369 "configure" #include "confdefs.h" #include --- 10335,10364 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10338: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_HOST_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10347: 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:10354: 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 10361 "configure" #include "confdefs.h" #include *************** *** 11383,11412 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11386: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_HOST_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11395: 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:11402: 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 11409 "configure" #include "confdefs.h" #include --- 10375,10404 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10378: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_HOST_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10387: 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:10394: 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 10401 "configure" #include "confdefs.h" #include *************** *** 11423,11452 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11426: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_SYSLEN_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11435: 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:11442: 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 11449 "configure" #include "confdefs.h" #include --- 10415,10444 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10418: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_SYSLEN_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10427: 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:10434: 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 10441 "configure" #include "confdefs.h" #include *************** *** 11463,11492 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11466: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_PID_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11475: 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:11482: 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 11489 "configure" #include "confdefs.h" #include --- 10455,10484 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10458: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_PID_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10467: 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:10474: 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 10481 "configure" #include "confdefs.h" #include *************** *** 11503,11532 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11506: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_TYPE_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11515: 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:11522: 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 11529 "configure" #include "confdefs.h" #include --- 10495,10524 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10498: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_TYPE_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10507: 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:10514: 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 10521 "configure" #include "confdefs.h" #include *************** *** 11543,11572 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11546: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_TYPE_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11555: 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:11562: 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 11569 "configure" #include "confdefs.h" #include --- 10535,10564 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10538: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_TYPE_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10547: 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:10554: 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 10561 "configure" #include "confdefs.h" #include *************** *** 11583,11612 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11586: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_TV_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11595: 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:11602: 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 11609 "configure" #include "confdefs.h" #include --- 10575,10604 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10578: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_TV_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10587: 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:10594: 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 10601 "configure" #include "confdefs.h" #include *************** *** 11623,11652 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11626: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_ID_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11635: 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:11642: 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 11649 "configure" #include "confdefs.h" #include --- 10615,10644 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10618: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_ID_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10627: 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:10634: 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 10641 "configure" #include "confdefs.h" #include *************** *** 11663,11692 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11666: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_ID_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11675: 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:11682: 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 11689 "configure" #include "confdefs.h" #include --- 10655,10684 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10658: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_ID_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10667: 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:10674: 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 10681 "configure" #include "confdefs.h" #include *************** *** 11703,11732 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11706: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_ADDR_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11715: 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:11722: 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 11729 "configure" #include "confdefs.h" #include --- 10695,10724 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10698: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_ADDR_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10707: 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:10714: 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 10721 "configure" #include "confdefs.h" #include *************** *** 11743,11772 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11746: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_ADDR_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11755: 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:11762: 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 11769 "configure" #include "confdefs.h" #include --- 10735,10764 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10738: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_ADDR_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10747: 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:10754: 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 10761 "configure" #include "confdefs.h" #include *************** *** 11783,11812 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11786: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_ADDR_V6_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11795: 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:11802: 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 11809 "configure" #include "confdefs.h" #include --- 10775,10804 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10778: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_ADDR_V6_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10787: 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:10794: 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 10801 "configure" #include "confdefs.h" #include *************** *** 11823,11852 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11826: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_ADDR_V6_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11835: 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:11842: 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 11849 "configure" #include "confdefs.h" #include --- 10815,10844 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10818: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_ADDR_V6_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10827: 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:10834: 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 10841 "configure" #include "confdefs.h" #include *************** *** 11863,11892 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11866: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_EXIT_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11875: 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:11882: 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 11889 "configure" #include "confdefs.h" #include --- 10855,10884 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10858: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_EXIT_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10867: 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:10874: 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 10881 "configure" #include "confdefs.h" #include *************** *** 11903,11932 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11906: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_TIME_IN_UTMP 1 ! _ACEOF fi else ! echo "$as_me:11915: 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:11922: 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 11929 "configure" #include "confdefs.h" #include --- 10895,10924 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10898: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_TIME_IN_UTMP 1 ! EOF fi else ! echo "$as_me:10907: 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:10914: 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 10921 "configure" #include "confdefs.h" #include *************** *** 11943,11972 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11946: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_TIME_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11955: 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:11962: 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 11969 "configure" #include "confdefs.h" #include --- 10935,10964 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10938: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_TIME_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10947: 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:10954: 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 10961 "configure" #include "confdefs.h" #include *************** *** 11983,12016 **** ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:11986: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_TV_IN_UTMPX 1 ! _ACEOF fi else ! echo "$as_me:11995: result: no" >&5 echo "${ECHO_T}no" >&6 fi ! echo "$as_me:11999: 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 12005 "configure" #include "confdefs.h" $ac_includes_default - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 10975,11002 ---- ossh_result=`eval 'echo $'"$ossh_varname"` if test -n "`echo $ossh_varname`"; then ! echo "$as_me:10978: result: $ossh_result" >&5 echo "${ECHO_T}$ossh_result" >&6 if test "x$ossh_result" = "xyes"; then ! cat >>confdefs.h <<\EOF #define HAVE_TV_IN_UTMPX 1 ! EOF fi else ! echo "$as_me:10987: result: no" >&5 echo "${ECHO_T}no" >&6 fi ! echo "$as_me:10991: 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 10997 "configure" #include "confdefs.h" $ac_includes_default int main () { *************** *** 12022,12037 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:12025: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:12028: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:12031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12034: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_member_struct_stat_st_blksize=yes else --- 11008,11023 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11011: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11014: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11017: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11020: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_member_struct_stat_st_blksize=yes else *************** *** 12041,12075 **** fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:12044: 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 ! cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_STAT_ST_BLKSIZE 1 ! _ACEOF fi ! echo "$as_me:12054: 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 12061 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 11027,11055 ---- fi rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11030: 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 ! cat >>confdefs.h <&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 11047 "configure" #include "confdefs.h" #include #include int main () { *************** *** 12079,12094 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:12082: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:12085: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:12088: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12091: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ss_family_in_struct_ss="yes" else --- 11059,11074 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11062: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11065: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11068: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11071: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_ss_family_in_struct_ss="yes" else *************** *** 12099,12132 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:12102: 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 #define HAVE_SS_FAMILY_IN_SS 1 ! _ACEOF fi ! echo "$as_me:12111: 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 12118 "configure" #include "confdefs.h" #include #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 11079,11106 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11082: result: $ac_cv_have_ss_family_in_struct_ss" >&5 echo "${ECHO_T}$ac_cv_have_ss_family_in_struct_ss" >&6 if test "x$ac_cv_have_ss_family_in_struct_ss" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_SS_FAMILY_IN_SS 1 ! EOF fi ! echo "$as_me:11091: 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 11098 "configure" #include "confdefs.h" #include #include int main () { *************** *** 12136,12151 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:12139: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:12142: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:12145: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12148: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have___ss_family_in_struct_ss="yes" else --- 11110,11125 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11113: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11116: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11119: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11122: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have___ss_family_in_struct_ss="yes" else *************** *** 12157,12189 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:12160: 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 #define HAVE___SS_FAMILY_IN_SS 1 ! _ACEOF fi ! echo "$as_me:12169: 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 12176 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 11131,11157 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11134: result: $ac_cv_have___ss_family_in_struct_ss" >&5 echo "${ECHO_T}$ac_cv_have___ss_family_in_struct_ss" >&6 if test "x$ac_cv_have___ss_family_in_struct_ss" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE___SS_FAMILY_IN_SS 1 ! EOF fi ! echo "$as_me:11143: 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 11150 "configure" #include "confdefs.h" #include int main () { *************** *** 12193,12208 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:12196: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:12199: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:12202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12205: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_class_in_struct_passwd="yes" else --- 11161,11176 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11164: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11167: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11170: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11173: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_class_in_struct_passwd="yes" else *************** *** 12214,12246 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:12217: 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 #define HAVE_PW_CLASS_IN_PASSWD 1 ! _ACEOF fi ! echo "$as_me:12226: 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 12233 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 11182,11208 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11185: result: $ac_cv_have_pw_class_in_struct_passwd" >&5 echo "${ECHO_T}$ac_cv_have_pw_class_in_struct_passwd" >&6 if test "x$ac_cv_have_pw_class_in_struct_passwd" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_PW_CLASS_IN_PASSWD 1 ! EOF fi ! echo "$as_me:11194: 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 11201 "configure" #include "confdefs.h" #include int main () { *************** *** 12250,12265 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:12253: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:12256: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:12259: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12262: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_expire_in_struct_passwd="yes" else --- 11212,11227 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11215: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11218: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11221: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11224: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_expire_in_struct_passwd="yes" else *************** *** 12271,12303 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:12274: 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 #define HAVE_PW_EXPIRE_IN_PASSWD 1 ! _ACEOF fi ! echo "$as_me:12283: 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 12290 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 11233,11259 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11236: result: $ac_cv_have_pw_expire_in_struct_passwd" >&5 echo "${ECHO_T}$ac_cv_have_pw_expire_in_struct_passwd" >&6 if test "x$ac_cv_have_pw_expire_in_struct_passwd" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_PW_EXPIRE_IN_PASSWD 1 ! EOF fi ! echo "$as_me:11245: 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 11252 "configure" #include "confdefs.h" #include int main () { *************** *** 12307,12322 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:12310: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:12313: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:12316: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12319: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_change_in_struct_passwd="yes" else --- 11263,11278 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:11266: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? ! echo "$as_me:11269: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:11272: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11275: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_pw_change_in_struct_passwd="yes" else *************** *** 12328,12358 **** rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:12331: 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 #define HAVE_PW_CHANGE_IN_PASSWD 1 ! _ACEOF fi ! echo "$as_me:12340: 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 12347 "configure" #include "confdefs.h" - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 11284,11308 ---- rm -f conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:11287: result: $ac_cv_have_pw_change_in_struct_passwd" >&5 echo "${ECHO_T}$ac_cv_have_pw_change_in_struct_passwd" >&6 if test "x$ac_cv_have_pw_change_in_struct_passwd" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE_PW_CHANGE_IN_PASSWD 1 ! EOF fi ! echo "$as_me:11296: 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 11303 "configure" #include "confdefs.h" int main () { *************** *** 12362,12377 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:12365: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:12368: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:12371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12374: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines___progname="yes" else --- 11312,11327 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:11315: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:11318: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:11321: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:11324: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_libc_defines___progname="yes" else *************** *** 12383,12415 **** rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:12386: 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 #define HAVE___PROGNAME 1 ! _ACEOF fi ! echo "$as_me:12395: 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 12402 "configure" #include "confdefs.h" #include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" - # endif - int F77_DUMMY_MAIN() { return 1; } - #endif int main () { --- 11333,11359 ---- rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:11336: result: $ac_cv_libc_defines___progname" >&5 echo "${ECHO_T}$ac_cv_libc_defines___progname" >&6 if test "x$ac_cv_libc_defines___progname" = "xyes" ; then ! cat >>confdefs.h <<\EOF #define HAVE___PROGNAME 1 ! EOF fi ! echo "$as_me:11345: 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 11352 "configure" #include "confdefs.h" #include int main () { *************** *** 12419,12434 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:12422: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? ! echo "$as_me:12425: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:12428: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? ! echo "$as_me:12431: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_have_getopt_optreset="yes" else --- 11363,11378 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:11366: \"$ac_link\"") >&5