diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-09-20 14:49:39 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-10-12 02:54:16 +0000 |
commit | 8beaa2924205cf6b01bc6183f7795571a3966ba5 (patch) | |
tree | 1627ed55e7f81d6e5778fd1cb613b1abcd1288f3 /source4/libcli/security/wscript_build | |
parent | 0487ef0a70a9758da31cff0832ee8decbeb92e82 (diff) | |
download | samba-8beaa2924205cf6b01bc6183f7795571a3966ba5.tar.gz samba-8beaa2924205cf6b01bc6183f7795571a3966ba5.tar.bz2 samba-8beaa2924205cf6b01bc6183f7795571a3966ba5.zip |
s4-libcli/security Use seperate subsystem for session related functions
The merged I plan in this area require spliting security.h into
two header files, a common header and a session.h for the
remaining source4-specific code.
Andrew Bartlett
Diffstat (limited to 'source4/libcli/security/wscript_build')
-rw-r--r-- | source4/libcli/security/wscript_build | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/source4/libcli/security/wscript_build b/source4/libcli/security/wscript_build index 4187bcbebe..02d79428d0 100644 --- a/source4/libcli/security/wscript_build +++ b/source4/libcli/security/wscript_build @@ -1,7 +1,13 @@ #!/usr/bin/env python +bld.SAMBA_SUBSYSTEM('LIBSECURITY_SESSION', + source='session.c', + autoproto='session_proto.h', + public_deps='LIBSECURITY_COMMON' + ) + bld.SAMBA_SUBSYSTEM('LIBSECURITY', - source='access_check.c create_descriptor.c object_tree.c session.c', + source='access_check.c create_descriptor.c object_tree.c', autoproto='proto.h', public_deps='LIBNDR LIBSECURITY_COMMON' ) |