diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-01-20 16:59:10 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-01-20 20:23:13 +0100 |
commit | c41d3c187e342f448c6700cde17c88955579b26c (patch) | |
tree | 86c882438a82e7f105e4687877081934dc23225f /source3 | |
parent | fbb292ec14ac36c1ef2e655c3c1aa268cbdb34f3 (diff) | |
download | samba-c41d3c187e342f448c6700cde17c88955579b26c.tar.gz samba-c41d3c187e342f448c6700cde17c88955579b26c.tar.bz2 samba-c41d3c187e342f448c6700cde17c88955579b26c.zip |
s3:configure.in: move gss_wrap_iov check to the other function checks
This also makes sure we search for it if it's in -lgssapi
instead of -lgssapi_krb5 or -lgss.
metze
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Fri Jan 20 20:23:13 CET 2012 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 2a719e7a11..b1a3c08d29 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -3844,7 +3844,6 @@ if test x"$with_ads_support" != x"no"; then if test x"$have_gssapi" != x"yes"; then AC_CHECK_LIB_EXT(gssapi_krb5, KRB5_LIBS,gss_display_status,[],[],have_gssapi=yes) AC_CHECK_LIB_EXT(gss, KRB5_LIBS,gss_display_status,[],[],have_gssapi=yes) - AC_CHECK_FUNC_EXT(gss_wrap_iov, $KRB5_LIBS) fi ################################################################ # test for AD / GSSAPI support being enabled @@ -3905,6 +3904,7 @@ if test x"$with_ads_support" != x"no"; then AC_CHECK_FUNC_EXT(gss_mech_krb5, $KRB5_LIBS) AC_CHECK_FUNC_EXT(gss_oid_equal, $KRB5_LIBS) AC_CHECK_FUNC_EXT(gss_inquire_sec_context_by_oid, $KRB5_LIBS) + AC_CHECK_FUNC_EXT(gss_wrap_iov, $KRB5_LIBS) # This is for FreeBSD (and possibly others). gss_mech_krb5 is a # #define to GSS_KRB5_MECHANISM, which is defined in -lgssapi_krb5 |