diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-30 19:21:12 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-30 12:55:39 +0200 |
commit | a49e771a93d54b0f3475242d5e74e09c130c3fac (patch) | |
tree | d52ea68d551dd2725c7f8507bec0945a1d59cfc0 | |
parent | 65bd5eb04bcd426833ba4a5cf424af9710f03f2e (diff) | |
download | samba-a49e771a93d54b0f3475242d5e74e09c130c3fac.tar.gz samba-a49e771a93d54b0f3475242d5e74e09c130c3fac.tar.bz2 samba-a49e771a93d54b0f3475242d5e74e09c130c3fac.zip |
build: Make gss_wrap_iov mandatory for krb5 build
This isn't in Heimdal 1.1, so we still fail on that version, but at
least we fail for the right reasons.
Andrew Bartlett
-rw-r--r-- | source3/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index 989b617d57..70a877da38 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4101,6 +4101,11 @@ if test x"$with_ads_support" != x"no"; then use_ads=no fi + if test x"$ac_cv_func_ext_gss_wrap_iov" != x"yes" ; then + AC_MSG_WARN(gss_wrap_iov not found in -lgssapi) + use_ads=no + fi + if test x"$ac_cv_func_ext_gss_get_name_attribute" != x"yes" ; then if test x"$ac_cv_func_ext_gsskrb5_extract_authz_data_from_sec_context" != x"yes" -o \ x"$ac_cv_func_ext_gss_inquire_sec_context_by_oid" != x"yes" |