From 7a35a6874add19277647fff70c0d730ef1efa85a Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 19 Dec 2018 09:34:12 +0100 Subject: [PATCH] waf: Add missing libreplace deps to pyldb* This will require memset_s() because of a later commit moving ZERO_STRUCT to use memset_s(). Signed-off-by: Andreas Schneider Reviewed-by: Alexander Bokovoy Reviewed-by: Andrew Bartlett --- lib/ldb/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ldb/wscript b/lib/ldb/wscript index 49517d2770d..037245f0877 100644 --- a/lib/ldb/wscript +++ b/lib/ldb/wscript @@ -248,7 +248,7 @@ def build(bld): name = bld.pyembed_libname('pyldb-util') bld.SAMBA_LIBRARY(name, - deps='ldb', + deps='replace ldb', source='pyldb_util.c', public_headers=('' if private_library else 'pyldb.h'), public_headers_install=not private_library, @@ -262,7 +262,7 @@ def build(bld): if not bld.CONFIG_SET('USING_SYSTEM_LDB'): bld.SAMBA_PYTHON('pyldb', 'pyldb.c', - deps='ldb ' + name, + deps='replace ldb ' + name, realname='ldb.so', cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION) -- 2.11.4.GIT