summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-05-31 10:42:30 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-05-31 02:57:19 +0200
commit8c8ff2cd6b597f7c4759cfaf178857ac533cc9ba (patch)
treebdd1e0992f5474a6a37b16eaa6cc2d603ab7f6bf /source3/wscript_build
parent52399f3177515fce777d85288650ff89f9028dc9 (diff)
downloadsamba-8c8ff2cd6b597f7c4759cfaf178857ac533cc9ba.tar.gz
samba-8c8ff2cd6b597f7c4759cfaf178857ac533cc9ba.tar.bz2
samba-8c8ff2cd6b597f7c4759cfaf178857ac533cc9ba.zip
s3-lib Move source3-specific malloc replacements into a seperate file
This will make it easier to create a dep tree for otherwise simple libraries. Andrew Bartlett
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-xsource3/wscript_build8
1 files changed, 7 insertions, 1 deletions
diff --git a/source3/wscript_build b/source3/wscript_build
index 842d95e306..21ada04330 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -792,7 +792,7 @@ bld.SAMBA3_SUBSYSTEM('KRBCLIENT',
bld.SAMBA3_SUBSYSTEM('samba3core',
source=LIB_SRC,
- deps='LIBCRYPTO ndr security NDR_SECURITY samba-util NDR_MESSAGING LIBASYNC_REQ tdb-wrap3 UTIL_TDB UTIL_PW SAMBA_VERSION KRB5_WRAP flag_mapping util_reg PTHREADPOOL interfaces cap string_init param util_str CHARSET3 namearray SECRETS3 dbwrap_util util_sec',
+ deps='LIBCRYPTO ndr security NDR_SECURITY samba-util NDR_MESSAGING LIBASYNC_REQ tdb-wrap3 UTIL_TDB UTIL_PW SAMBA_VERSION KRB5_WRAP flag_mapping util_reg PTHREADPOOL interfaces cap string_init param util_str CHARSET3 namearray SECRETS3 dbwrap_util util_sec util_malloc',
vars=locals())
bld.SAMBA3_SUBSYSTEM('LIB_NONSMBD',
@@ -998,6 +998,12 @@ bld.SAMBA3_LIBRARY('dbwrap_util',
private_library=True,
allow_undefined_symbols=False)
+bld.SAMBA3_LIBRARY('util_malloc',
+ source='''lib/util_malloc.c''',
+ deps='samba-util-common',
+ private_library=True,
+ allow_undefined_symbols=False)
+
bld.SAMBA3_LIBRARY('string_init',
source='''lib/string_init.c''',
deps='samba-util-common',