summaryrefslogtreecommitdiff
path: root/third_party/wscript
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-11-07 10:51:11 +0100
committerAndreas Schneider <asn@cryptomilk.org>2017-11-25 10:14:13 +0100
commit22bf36c85ae11cd280a58729348c76032910dc16 (patch)
treebf049502c4c965c34e54053e2a0afa7323f01bf4 /third_party/wscript
parent6cf7abbcfdad84fee57852862ebe44aa6115ca25 (diff)
downloadsamba-22bf36c85ae11cd280a58729348c76032910dc16.tar.gz
build: Move socket_wrapper to third_party
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org>
Diffstat (limited to 'third_party/wscript')
-rw-r--r--third_party/wscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/wscript b/third_party/wscript
index 7c2923f611e..a5192eb5f1c 100644
--- a/third_party/wscript
+++ b/third_party/wscript
@@ -51,6 +51,8 @@ def configure(conf):
conf.RECURSE('popt')
conf.RECURSE('zlib')
conf.RECURSE('aesni-intel')
+ if conf.CONFIG_GET('ENABLE_SELFTEST'):
+ conf.RECURSE('socket_wrapper')
def build(bld):
@@ -75,3 +77,5 @@ def build(bld):
bld.RECURSE('zlib')
bld.RECURSE('popt')
bld.RECURSE('aesni-intel')
+ if bld.CONFIG_GET('SOCKET_WRAPPER'):
+ bld.RECURSE('socket_wrapper')