summaryrefslogtreecommitdiff
path: root/libcli/http/wscript_build
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-04-02 18:34:24 +0200
committerRalph Boehme <slow@samba.org>2019-08-07 12:54:40 +0000
commitfc0371b932286d4f50f8650b1e7a7132f83e565c (patch)
tree30906a5fb788949690862faca9c86f156796313d /libcli/http/wscript_build
parenta0065c57601a16011dc1a90688a724ae8acb3377 (diff)
downloadsamba-fc0371b932286d4f50f8650b1e7a7132f83e565c.tar.gz
s4:lib/http: move to the toplevel
This is going to be used from the s3 RPC server soon... Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Samuel Cabrero <scabrero@suse.de>
Diffstat (limited to 'libcli/http/wscript_build')
-rw-r--r--libcli/http/wscript_build21
1 files changed, 21 insertions, 0 deletions
diff --git a/libcli/http/wscript_build b/libcli/http/wscript_build
new file mode 100644
index 00000000000..4ef1574bc67
--- /dev/null
+++ b/libcli/http/wscript_build
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+bld.SAMBA_LIBRARY('http',
+ source='http.c http_auth.c http_conn.c',
+ deps='talloc tevent samba3core dns_lookup',
+ private_library=True,
+)
+
+bld.SAMBA_MODULE('gensec_http_basic',
+ source='gensec/basic.c',
+ subsystem='gensec',
+ init_function='gensec_http_basic_init',
+ deps='samba-util auth_session'
+)
+
+bld.SAMBA_MODULE('gensec_http_generic',
+ source='gensec/generic.c',
+ subsystem='gensec',
+ init_function='gensec_http_generic_init',
+ deps='samba-util auth_session'
+)