diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-09-09 21:24:49 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-06 07:18:07 +0200 |
commit | 7d33ec3dfe78723d62f4941684060baeb9c4bda6 (patch) | |
tree | 0ca105c694d41ebda5d6b7e9c50e0b57d4204858 /lib/util/wscript_build | |
parent | 040055bb6a578516007ab6f56ebe2ee77b0f8605 (diff) | |
download | samba-7d33ec3dfe78723d62f4941684060baeb9c4bda6.tar.gz samba-7d33ec3dfe78723d62f4941684060baeb9c4bda6.tar.bz2 samba-7d33ec3dfe78723d62f4941684060baeb9c4bda6.zip |
lib/util: consolidate module loading into common code
This creates a samba-modules private libary that handles the details.
Andrew Bartlett
Diffstat (limited to 'lib/util/wscript_build')
-rwxr-xr-x | lib/util/wscript_build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/util/wscript_build b/lib/util/wscript_build index 70a639d2d7..f4bd885231 100755 --- a/lib/util/wscript_build +++ b/lib/util/wscript_build @@ -17,6 +17,12 @@ bld.SAMBA_LIBRARY('samba-util', pc_files='samba-util.pc' ) +bld.SAMBA_LIBRARY('samba-modules', + source='modules.c', + deps='errors samba-util', + local_include=False, + private_library=True) + bld.SAMBA_LIBRARY('asn1util', source='asn1.c', deps='talloc samba-util', |