From f2527d217cbc7f64259d00c63a549a3119a4ed66 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 18 Jun 2010 22:43:17 +0200 Subject: replace: Avoid hiding symbols when libreplace is builtin, as this appears to cause unresolved symbols at the moment. --- lib/replace/wscript | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/replace/wscript b/lib/replace/wscript index 57739124e9..9cdfd7f344 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -364,7 +364,11 @@ def build(bld): bld.SAMBA_LIBRARY('replace', source=REPLACE_SOURCE, group='base_libraries', - hide_symbols=bld.BUILTIN_LIBRARY('replace'), + # FIXME: Ideally symbols should be hidden here so they + # don't appear in the global namespace when Samba + # libraries are loaded, but this doesn't appear to work + # at the moment: + # hide_symbols=bld.BUILTIN_LIBRARY('replace'), deps='crypt dl nsl socket') TEST_SOURCES = '''test/testsuite.c test/main.c test/strptime.c -- cgit