From 594e3161810ba5a57ce5a3c88a8cd89b11d04650 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Tue, 24 Apr 2012 19:37:13 +0300 Subject: lib/replace: split out GSSAPI from lib/replace/system/kerberos.h into lib/replace/system/gssapi.h With waf build include directories are defined by dependencies specified to subsystems. Without proper dependency cannot be found for embedded Heimdal builds when there are no system-wide gssapi/gssapi.h available. Split out GSSAPI header includes in a separate replacement header and use that explicitly where needed. Autobuild-User: Alexander Bokovoy Autobuild-Date: Wed Apr 25 00:18:33 CEST 2012 on sn-devel-104 --- source4/auth/gensec/gensec_gssapi.c | 4 +--- source4/auth/kerberos/krb5_init_context.c | 1 + source4/auth/kerberos/wscript_build | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) (limited to 'source4/auth') diff --git a/source4/auth/gensec/gensec_gssapi.c b/source4/auth/gensec/gensec_gssapi.c index efd8443760..31964731d5 100644 --- a/source4/auth/gensec/gensec_gssapi.c +++ b/source4/auth/gensec/gensec_gssapi.c @@ -24,6 +24,7 @@ #include "includes.h" #include "lib/events/events.h" #include "system/kerberos.h" +#include "system/gssapi.h" #include "auth/kerberos/kerberos.h" #include "librpc/gen_ndr/krb5pac.h" #include "auth/auth.h" @@ -37,9 +38,6 @@ #include "auth/gensec/gensec_toplevel_proto.h" #include "param/param.h" #include "auth/session_proto.h" -#include -#include -#include #include "gensec_gssapi.h" #include "lib/util/util_net.h" #include "auth/kerberos/pac_utils.h" diff --git a/source4/auth/kerberos/krb5_init_context.c b/source4/auth/kerberos/krb5_init_context.c index 4125f39548..e90f8a6e19 100644 --- a/source4/auth/kerberos/krb5_init_context.c +++ b/source4/auth/kerberos/krb5_init_context.c @@ -22,6 +22,7 @@ #include "includes.h" #include "system/kerberos.h" +#include "system/gssapi.h" #include #include "auth/kerberos/kerberos.h" #include "lib/socket/socket.h" diff --git a/source4/auth/kerberos/wscript_build b/source4/auth/kerberos/wscript_build index 2ba6d56410..1a9b544465 100755 --- a/source4/auth/kerberos/wscript_build +++ b/source4/auth/kerberos/wscript_build @@ -2,7 +2,7 @@ bld.SAMBA_SUBSYSTEM('KRB_INIT_CTX', source='krb5_init_context.c', - deps='krb5samba' + deps='gssapi krb5samba' ) bld.SAMBA_LIBRARY('authkrb5', -- cgit