s3: fixed krb5 build problem on ubuntu karmic
authorAndrew Tridgell <tridge@samba.org>
Thu, 15 Oct 2009 23:40:50 +0000 (10:40 +1100)
committerAndrew Tridgell <tridge@samba.org>
Thu, 15 Oct 2009 23:40:50 +0000 (10:40 +1100)
Karmic has MIT krb5 1.7-beta3, which has the symbol
krb5_auth_con_set_req_cksumtype but no prototype for it.

See also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=531635

source3/configure.in
source3/libsmb/clikrb5.c

index 9d93ec7d9992f6153e0b7b811dbfedcf3a301d81..ad43624f2ea300f511d607a7585ac5348878267d 100644 (file)
@@ -3434,6 +3434,10 @@ if test x"$with_ads_support" != x"no"; then
   AC_CHECK_FUNC_EXT(krb5_fwd_tgt_creds, $KRB5_LIBS)
   AC_CHECK_FUNC_EXT(krb5_auth_con_set_req_cksumtype, $KRB5_LIBS)
 
+  # MIT krb5 1.7beta3 (in Ubuntu Karmic) does not have this declaration
+  # but does have the symbol
+  AC_CHECK_DECLS(krb5_auth_con_set_req_cksumtype, [], [], [#include <krb5.h>])
+
   LIBS="$KRB5_LIBS $LIBS"
 
   AC_CACHE_CHECK(whether krb5_ticket contains kvno and enctype,
index 152c23bd150c39f679ef563c8a2fecde0b3ab2ae..145e30beb3e14b115d630f7184baa8011d95280c 100644 (file)
@@ -1858,6 +1858,15 @@ static krb5_error_code ads_krb5_get_fwd_ticket( krb5_context context,
        char *pChksum = NULL;
        char *p = NULL;
 
+/* MIT krb5 1.7beta3 (in Ubuntu Karmic) is missing the prototype,
+   but still has the symbol */
+#if !HAVE_DECL_KRB5_AUTH_CON_SET_REQ_CKSUMTYPE
+krb5_error_code krb5_auth_con_set_req_cksumtype(  
+       krb5_context     context,
+       krb5_auth_context      auth_context,  
+       krb5_cksumtype     cksumtype);
+#endif
+
        ZERO_STRUCT(fwdData);
        ZERO_STRUCTP(authenticator);