diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-05-16 21:06:22 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-05-18 16:12:08 +0200 |
commit | a2ff3e7c6118d77699b94b81d9333ca7ea274f52 (patch) | |
tree | 4eb74be4773fa438de4d7d1d35258ed4146ea9c6 /auth | |
parent | baad855bcaad28d341867ae03c67e68e520a743a (diff) | |
download | samba-a2ff3e7c6118d77699b94b81d9333ca7ea274f52.tar.gz samba-a2ff3e7c6118d77699b94b81d9333ca7ea274f52.tar.bz2 samba-a2ff3e7c6118d77699b94b81d9333ca7ea274f52.zip |
build: Make auth_sam_reply a library
Diffstat (limited to 'auth')
-rw-r--r-- | auth/wscript_build | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/auth/wscript_build b/auth/wscript_build index 75580fd299..0472a20a01 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 + ) |