From af68fe7113ae0783f03732a6cda53e7ccae3220a Mon Sep 17 00:00:00 2001 From: Amitay Isaacs Date: Fri, 16 Mar 2012 13:34:05 +1100 Subject: build: Fix build issue on OpenBSD 5.x Do not use -Wl,-no-undefined flag on OpenBSD 5.x (tested on 5.0) Autobuild-User: Amitay Isaacs Autobuild-Date: Fri Mar 16 05:14:03 CET 2012 on sn-devel-104 --- buildtools/wafsamba/samba_autoconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buildtools/wafsamba/samba_autoconf.py') diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index de4632eea8..2bb86c786c 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -722,9 +722,9 @@ def SETUP_CONFIGURE_CACHE(conf, enable): def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(conf): # we don't want any libraries or modules to rely on runtime # resolution of symbols - if sys.platform != "openbsd4": + if sys.platform != "openbsd4" and sys.platform != "openbsd5": conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) - if sys.platform != "openbsd4" and conf.env.undefined_ignore_ldflags == []: + if sys.platform != "openbsd4" and sys.platform != "openbsd5" and conf.env.undefined_ignore_ldflags == []: if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup']): conf.env.undefined_ignore_ldflags = ['-undefined', 'dynamic_lookup'] -- cgit