# HG changeset patch # User Karl Heuer # Date 913842828 0 # Node ID 040b8e4d01e762ef09122cbe4cc944fa59015807 # Parent 2a56bdf4cef7e6a96b368f2f0d95363eb2e25dc4 Remove GSS-API support, since it has been removed from movemail. diff -r 2a56bdf4cef7 -r 040b8e4d01e7 configure.in --- a/configure.in Wed Dec 16 21:12:17 1998 +0000 +++ b/configure.in Wed Dec 16 21:13:48 1998 +0000 @@ -54,9 +54,6 @@ AC_ARG_WITH(hesiod, [ --with-hesiod support Hesiod to get the POP server host], [AC_DEFINE(HESIOD)]) -AC_ARG_WITH(gssapi, -[ --with-gssapi support GSSAPI-authenticated POP], -[AC_DEFINE(GSSAPI)]) dnl This should be the last --with option, because --with-x is dnl added later on when we find the path of X, and it's best to dnl keep them together visually. @@ -1639,11 +1636,7 @@ AC_CHECK_LIB(com_err, com_err) AC_CHECK_LIB(crypto, mit_des_cbc_encrypt) AC_CHECK_LIB(krb5, krb5_init_context) - if test "${with_kerberos5+set}" = set; then - if test "${with_gssapi+set}" = set; then - AC_CHECK_LIB(gssapi_krb5,gss_init_sec_context) - fi - else + if test "${with_kerberos5+set}" != set; then AC_CHECK_LIB(des, des_cbc_encrypt,, AC_CHECK_LIB(des425, des_cbc_encrypt)) AC_CHECK_LIB(krb, krb_get_cred,, @@ -1663,11 +1656,6 @@ AC_CHECK_HEADERS(com_err.h) fi -if test "${with_gssapi+set}" = set; then - AC_CHECK_LIB(gssapi, gss_init_sec_context) - AC_CHECK_HEADERS(gssapi.h) -fi - # Solaris requires -lintl if you want strerror (which calls dgettext) # to return localized messages. AC_CHECK_LIB(intl, dgettext)