summaryrefslogtreecommitdiff
path: root/source4/kdc/mit-kdb/wscript_build
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2014-05-12 10:49:24 +0200
committerAndrew Bartlett <abartlet@samba.org>2016-03-17 04:32:28 +0100
commitade958e20b561b702e2fec86a28659144dbe4a9e (patch)
tree05714e9d40a0d0c2824bd378b6f09ddc66ef092c /source4/kdc/mit-kdb/wscript_build
parent7feb650a372094f2ecfa82e41756d5e2fa92ff9a (diff)
downloadsamba-ade958e20b561b702e2fec86a28659144dbe4a9e.tar.gz
mit-kdb: Add initial MIT KDB Samba driver
Signed-off-by: Andreas Schneider <asn@samba.org> Signed-off-by: Simo Sorce <idra@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Pair-Programmed-With: Simo Sorce <idra@samba.org> Reviewed-by: Sumit Bose <sbose@redhat.com> Reviewed-by: Guenther Deschner <gd@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/kdc/mit-kdb/wscript_build')
-rw-r--r--source4/kdc/mit-kdb/wscript_build21
1 files changed, 21 insertions, 0 deletions
diff --git a/source4/kdc/mit-kdb/wscript_build b/source4/kdc/mit-kdb/wscript_build
new file mode 100644
index 00000000000..68f086649c2
--- /dev/null
+++ b/source4/kdc/mit-kdb/wscript_build
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+bld.SAMBA_LIBRARY('mit-kdb-samba',
+ source='''
+ kdb_samba.c
+ kdb_samba_common.c
+ kdb_samba_masterkey.c
+ kdb_samba_pac.c
+ kdb_samba_policies.c
+ kdb_samba_principals.c
+ ''',
+ private_library=True,
+ realname='samba.so',
+ install_path='${LIBDIR}/krb5/plugins/kdb',
+ deps='''
+ MIT_SAMBA
+ com_err
+ krb5
+ kdb5
+ ''',
+ enabled=bld.CONFIG_SET('HAVE_KDB_H'))