summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-04-06 14:28:28 +1000
committerAndrew Tridgell <tridge@samba.org>2011-04-06 08:12:19 +0200
commita8da13cd5c7b5fa7cf3c6f9b3afce066f085e67c (patch)
tree044bdde30c9de56a66995476d67f4effdc240e2f /lib
parent15576da63a35bdd6486dab1816cc12ee92764dab (diff)
downloadsamba-a8da13cd5c7b5fa7cf3c6f9b3afce066f085e67c.tar.gz
samba-a8da13cd5c7b5fa7cf3c6f9b3afce066f085e67c.tar.bz2
samba-a8da13cd5c7b5fa7cf3c6f9b3afce066f085e67c.zip
lib: make asn1_util a private library
this prevents symbol duplication of the asn1 symbols in the service and ntvfs subsystems Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'lib')
-rwxr-xr-xlib/util/wscript_build9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/util/wscript_build b/lib/util/wscript_build
index 19ccb5c4f7..11bb40a45a 100755
--- a/lib/util/wscript_build
+++ b/lib/util/wscript_build
@@ -33,10 +33,11 @@ if bld.env._SAMBA_BUILD_ == 4:
)
-bld.SAMBA_SUBSYSTEM('ASN1_UTIL',
- source='asn1.c',
- deps='talloc',
- local_include=False)
+bld.SAMBA_LIBRARY('asn1util',
+ source='asn1.c',
+ deps='talloc samba-util-common',
+ private_library=True,
+ local_include=False)
bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',