diff options
Diffstat (limited to 'source4/auth/kerberos')
-rw-r--r-- | source4/auth/kerberos/kerberos_util.c | 3 | ||||
-rw-r--r-- | source4/auth/kerberos/wscript_build | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/source4/auth/kerberos/kerberos_util.c b/source4/auth/kerberos/kerberos_util.c index 27cbeb06a2..3020e978bd 100644 --- a/source4/auth/kerberos/kerberos_util.c +++ b/source4/auth/kerberos/kerberos_util.c @@ -27,7 +27,8 @@ #include "auth/credentials/credentials_proto.h" #include "auth/credentials/credentials_krb5.h" #include "auth/kerberos/kerberos_credentials.h" -#include "ldb.h" +#include "auth/kerberos/kerberos_util.h" +#include <ldb.h> #include "param/secrets.h" struct principal_container { diff --git a/source4/auth/kerberos/wscript_build b/source4/auth/kerberos/wscript_build index 0c1828a55b..f5f615c004 100644 --- a/source4/auth/kerberos/wscript_build +++ b/source4/auth/kerberos/wscript_build @@ -7,3 +7,9 @@ bld.SAMBA_SUBSYSTEM('KERBEROS', deps='ASN1_UTIL auth_sam_reply tevent LIBPACKET LIBNDR' ) +bld.SAMBA_SUBSYSTEM('KERBEROS_UTIL', + autoproto='kerberos_util.h', + source='kerberos_util.c', + deps='KERBEROS com_err ldb SECRETS', + ) + |