summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-01-20 16:55:43 +0100
committerStefan Metzmacher <metze@samba.org>2012-01-20 18:44:10 +0100
commit74abe369df26c58094a601dd6ff8c27c3d0b2b2a (patch)
tree350ae6b714ce8813ed557453e970e866e1566f41 /source3
parent018af56bf2da2f8445bbef2c8be2a65475b528ea (diff)
downloadsamba-74abe369df26c58094a601dd6ff8c27c3d0b2b2a.tar.gz
samba-74abe369df26c58094a601dd6ff8c27c3d0b2b2a.tar.bz2
samba-74abe369df26c58094a601dd6ff8c27c3d0b2b2a.zip
s3:build: for now do not require gsskrb5_extract_authz_data_from_sec_context
We do not use it yet. metze
Diffstat (limited to 'source3')
-rw-r--r--source3/configure.in11
-rw-r--r--source3/wscript8
2 files changed, 10 insertions, 9 deletions
diff --git a/source3/configure.in b/source3/configure.in
index a5b4487fa2..3ba2c8b695 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -4517,13 +4517,12 @@ if test x"$with_ads_support" != x"no"; then
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"
- then
- AC_MSG_WARN(need either gss_get_name_attribute or gsskrb5_extract_authz_data_from_sec_context and gss_inquire_sec_context_by_oid in -lgssapi for PAC support)
+ # for now do not require gsskrb5_extract_authz_data_from_sec_context
+ # as we do not use it
+ if test x"$ac_cv_func_ext_gss_get_name_attribute" != x"yes" -a \
+ x"$ac_cv_func_ext_gss_inquire_sec_context_by_oid" != x"yes"; then
+ AC_MSG_WARN(need either gss_get_name_attribute or gss_inquire_sec_context_by_oid in -lgssapi for PAC support)
use_ads=no
- fi
fi
if test x"$use_ads" = x"yes"; then
diff --git a/source3/wscript b/source3/wscript
index 1a5a5c4b23..552735f64f 100644
--- a/source3/wscript
+++ b/source3/wscript
@@ -805,10 +805,12 @@ return krb5_kt_resolve(context, "WRFILE:api", &keytab);
# gsskrb5_extract_authz_data_from_sec_context, but it is a
# clue that this Heimdal, which does the PAC processing we
# need on the standard gss_inquire_sec_context_by_oid
+ #
+ # For now do not require gsskrb5_extract_authz_data_from_sec_context,
+ # as we do not use it.
if not conf.CONFIG_SET('HAVE_GSS_GET_NAME_ATTRIBUTE') and \
- not (conf.CONFIG_SET('HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT') and \
- conf.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID')):
- Logs.warn("need eiterh gss_get_name_attribute or gsskrb5_extract_authz_data_from_sec_context and gss_inquire_sec_context_by_oid in -lgssapi for PAC support")
+ not conf.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID'):
+ Logs.warn("need eiterh gss_get_name_attribute or gss_inquire_sec_context_by_oid in -lgssapi for PAC support")
use_ads=False
if use_ads: