]> granicus.if.org Git - mutt/commitdiff
Fix Kerberos configuration. From David Champion <dgc@uchicago.edu>.
authorThomas Roessler <roessler@does-not-exist.org>
Thu, 23 Mar 2000 10:53:16 +0000 (10:53 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Thu, 23 Mar 2000 10:53:16 +0000 (10:53 +0000)
configure.in

index 90113cee640b65c936f6f9be09b337e2e28b0ff2..7c874f32b9a2aa442f6c72e10f8a7dc73519cfb2 100644 (file)
@@ -474,12 +474,12 @@ AC_ARG_WITH(gss,    [    --with-gss[=DIR]         Compile in GSSAPI authenticati
          fi
 
          saved_LIBS="$LIBS"
-         AC_CHECK_LIB(krb5, krb5_init_context,,
+         AC_CHECK_LIB(krb5, krb5_change_cache,,
            AC_MSG_ERROR([could not find libkrb5 which is needed for GSS authentication]))
-         AC_CHECK_LIB(gssapi_krb5, gss_init_sec_context,,
+         AC_CHECK_LIB(gssapi_krb5, g_order_init,,
            AC_MSG_ERROR([could not find libgssapi_krb5 which is needed for GSS authentication]), -lkrb5)
          LIBS="$saved_LIBS"
-         MUTTLIBS="$MUTTLIBS -lgssapi_krb5 -lkrb5"
+         MUTTLIBS="$MUTTLIBS -lgssapi_krb5 -lkrb5 -lcrypto -lcom_err"
          AC_DEFINE(USE_GSS)
           need_gss="yes"
        fi