From 8c90287198afa59b4d96ebaa7985d38753c14caf Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Mon, 13 Dec 2010 17:41:26 +0300 Subject: build do not add -no-undefined on openbsd --- source4/lib/ldb/wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index c75525d106..eb205e0145 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -62,7 +62,8 @@ def configure(conf): # we don't want any libraries or modules to rely on runtime # resolution of symbols - conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) + if sys.platform != "openbsd": + conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) conf.SAMBA_CONFIG_H() -- cgit