summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-05-25 14:53:32 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-05-31 00:32:07 +0200
commit53140724f149058a8404727533ae792cbb8b1340 (patch)
tree3068a0782c4a4568e41be5907a1cac196833dfda /source3/wscript_build
parent8524924a460349a9aa56db475d771b8884fbe517 (diff)
downloadsamba-53140724f149058a8404727533ae792cbb8b1340.tar.gz
samba-53140724f149058a8404727533ae792cbb8b1340.tar.bz2
samba-53140724f149058a8404727533ae792cbb8b1340.zip
s3-lib Move string_init functions into their own file
These have not been moved in common, as they are not talloc-based, but it helps with dependencies if these are seperated from the rest of util_str.c Andrew Bartlett
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-xsource3/wscript_build5
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/wscript_build b/source3/wscript_build
index 2ee4f62fe0..5b89cf0427 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -789,7 +789,7 @@ bld.SAMBA3_SUBSYSTEM('KRBCLIENT',
bld.SAMBA3_LIBRARY('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 passdb PTHREADPOOL interfaces cap',
+ 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 passdb PTHREADPOOL interfaces cap string_init',
private_library=True,
vars=locals())
@@ -984,6 +984,9 @@ bld.SAMBA3_SUBSYSTEM('tdb-wrap3',
deps='tdb-wrap',
vars=locals())
+bld.SAMBA3_SUBSYSTEM('string_init',
+ source='''lib/string_init.c''')
+
bld.SAMBA3_SUBSYSTEM('CHARSET3',
source='''lib/util_str.c lib/charcnv.c lib/fstring.c''',
public_deps='ICONV_WRAPPER samba3core CHARSET',