diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-29 11:48:06 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-30 23:49:00 +1100 |
commit | b6b0d2cea32c06c3f7a5574d22d1a344d70bd0d3 (patch) | |
tree | 8f3b891de252fb8e7d5b8edf11b8cdaae2e101c0 /source4/kdc/wscript_build | |
parent | 89c829f654b5b67f37ce39b93bc0a456a3718ecd (diff) | |
download | samba-b6b0d2cea32c06c3f7a5574d22d1a344d70bd0d3.tar.gz samba-b6b0d2cea32c06c3f7a5574d22d1a344d70bd0d3.tar.xz samba-b6b0d2cea32c06c3f7a5574d22d1a344d70bd0d3.zip |
s4-kdc: create a 'pac' private grouping library
this removes the final case where we have an object file linked into
two libraries
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/kdc/wscript_build')
-rw-r--r-- | source4/kdc/wscript_build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/kdc/wscript_build b/source4/kdc/wscript_build index 1433922268a..a934087e905 100644 --- a/source4/kdc/wscript_build +++ b/source4/kdc/wscript_build @@ -32,6 +32,12 @@ bld.SAMBA_SUBSYSTEM('PAC_GLUE', deps='ldb auth_sam auth_sam_reply CREDENTIALS hdb samba-hostconfig com_err' ) +bld.SAMBA_LIBRARY('pac', + source=[], + deps='PAC_GLUE', + private_library=True, + grouping_library=True) + bld.SAMBA_LIBRARY('db-glue', source='db-glue.c', |