From: Amitay Isaacs Date: Sun, 15 May 2016 11:44:22 +0000 (+1000) Subject: lib/util: Expose few more subsystems for standalone ctdb build X-Git-Tag: tdb-1.3.10~945 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2db6eb87b40d27623be7328aefec1799a48306ea;p=thirdparty%2Fsamba.git lib/util: Expose few more subsystems for standalone ctdb build Signed-off-by: Amitay Isaacs Reviewed-by: Volker Lendecke --- diff --git a/lib/util/wscript_build b/lib/util/wscript_build index d8c9f221abc..6d2ab4ac27f 100755 --- a/lib/util/wscript_build +++ b/lib/util/wscript_build @@ -70,6 +70,23 @@ bld.SAMBA_SUBSYSTEM('samba-util-core', tevent execinfo pthread strv''', local_include=False) +bld.SAMBA_LIBRARY('iov_buf', + source='iov_buf.c', + local_include=False, + private_library=True) + +bld.SAMBA_LIBRARY('msghdr', + source='msghdr.c', + deps='replace iov_buf', + local_include=False, + private_library=True) + +bld.SAMBA_LIBRARY('sys_rw', + source='sys_rw.c sys_rw_data.c', + deps='replace iov_buf', + local_include=False, + private_library=True) + if bld.env.SAMBA_UTIL_CORE_ONLY: bld.SAMBA_LIBRARY('tevent-util', @@ -182,20 +199,3 @@ else: deps='talloc tdb strv util_tdb tdb-wrap samba-util', local_include=False, private_library=True) - - bld.SAMBA_LIBRARY('iov_buf', - source='iov_buf.c', - local_include=False, - private_library=True) - - bld.SAMBA_LIBRARY('msghdr', - source='msghdr.c', - deps='replace iov_buf', - local_include=False, - private_library=True) - - bld.SAMBA3_LIBRARY('sys_rw', - source='sys_rw.c sys_rw_data.c', - deps='replace iov_buf', - local_include=False, - private_library=True)