summaryrefslogtreecommitdiff
path: root/auth/gensec/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-10-07 17:24:12 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-10-11 13:41:36 +1100
commitfe02752ed6493efb7af28faa3d64d9fd7895d6f1 (patch)
tree22463dbd5f702c76ce0021f7aa6fbcc31afe2378 /auth/gensec/wscript_build
parent561d834123a2a8a96954f7cca556f8838ab38b72 (diff)
downloadsamba-fe02752ed6493efb7af28faa3d64d9fd7895d6f1.tar.gz
samba-fe02752ed6493efb7af28faa3d64d9fd7895d6f1.tar.bz2
samba-fe02752ed6493efb7af28faa3d64d9fd7895d6f1.zip
auth: move gensec_start.c to the top level
This does not change who uses gensec for now, but makes it possible to write new gensec modules outside source4/ Andrew Bartlett
Diffstat (limited to 'auth/gensec/wscript_build')
-rw-r--r--auth/gensec/wscript_build14
1 files changed, 9 insertions, 5 deletions
diff --git a/auth/gensec/wscript_build b/auth/gensec/wscript_build
index a9203f801d..e3e9372c3d 100644
--- a/auth/gensec/wscript_build
+++ b/auth/gensec/wscript_build
@@ -1,7 +1,11 @@
#!/usr/bin/env python
+bld.SAMBA_LIBRARY('gensec',
+ source='gensec.c gensec_start.c',
+ pc_files='gensec.pc',
+ autoproto='gensec_toplevel_proto.h',
+ public_deps='tevent-util samba-util errors LIBPACKET auth_system_session samba-modules gensec_util',
+ public_headers='gensec.h',
+ deps='com_err',
+ vnum='0.0.1'
+ )
-bld.SAMBA_SUBSYSTEM('gensec_runtime',
- source='gensec.c',
- deps='tevent-util tevent samba-util LIBTSOCKET',
- public_headers='gensec.h',
- autoproto='gensec_toplevel_proto.h')