diff options
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
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() |