summaryrefslogtreecommitdiff
path: root/auth/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-05-16 21:06:22 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-05-18 16:12:08 +0200
commita2ff3e7c6118d77699b94b81d9333ca7ea274f52 (patch)
tree4eb74be4773fa438de4d7d1d35258ed4146ea9c6 /auth/wscript_build
parentbaad855bcaad28d341867ae03c67e68e520a743a (diff)
downloadsamba-a2ff3e7c6118d77699b94b81d9333ca7ea274f52.tar.gz
build: Make auth_sam_reply a library
Diffstat (limited to 'auth/wscript_build')
-rw-r--r--auth/wscript_build11
1 files changed, 6 insertions, 5 deletions
diff --git a/auth/wscript_build b/auth/wscript_build
index 75580fd2991..0472a20a012 100644
--- a/auth/wscript_build
+++ b/auth/wscript_build
@@ -1,7 +1,8 @@
#!/usr/bin/env python
-bld.SAMBA_SUBSYSTEM('auth_sam_reply',
- source='auth_sam_reply.c',
- deps='talloc',
- autoproto='auth_sam_reply.h'
- )
+bld.SAMBA_LIBRARY('auth_sam_reply',
+ source='auth_sam_reply.c',
+ deps='talloc security samba-util',
+ autoproto='auth_sam_reply.h',
+ private_library=True
+ )