From ee9d075ae44ca8fdfa16afe878038711641f9a0c Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 15 Oct 2014 11:29:12 +0200 Subject: nss_wrapper: check for nss.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Schneider Reviewed-by: Ralph Boehme Autobuild-User(master): Ralph Böhme Autobuild-Date(master): Wed Oct 15 14:06:11 CEST 2014 on sn-devel-104 --- lib/nss_wrapper/wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/nss_wrapper') diff --git a/lib/nss_wrapper/wscript b/lib/nss_wrapper/wscript index 94d23d55ad..b25b83d30a 100644 --- a/lib/nss_wrapper/wscript +++ b/lib/nss_wrapper/wscript @@ -9,6 +9,8 @@ def configure(conf): conf.DEFINE('USING_SYSTEM_NSS_WRAPPER', 1) libnss_wrapper_so_path = 'libnss_wrapper.so' else: + conf.CHECK_HEADERS('nss.h') + # check HAVE_GCC_THREAD_LOCAL_STORAGE conf.CHECK_CODE(''' __thread int tls; @@ -94,7 +96,7 @@ def configure(conf): conf.DEFINE('NSS_WRAPPER', 1) def build(bld): - if not bld.CONFIG_SET("USING_SYSTEM_NSS_WRAPPER"): + if bld.CONFIG_SET("HAVE_NSS_H") and not bld.CONFIG_SET("USING_SYSTEM_NSS_WRAPPER"): # We need to do it this way or the library wont work. # Using private_library=True will add symbol version which # breaks preloading! -- cgit