The branch, master has been updated via 61d9aa5 build: remove -no-undefined and -as-needed on openbsd from a910d0c s4:dsdb/pydsdb.c - don't throw another exception on "PyObject_AsDn"
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 61d9aa5a3e899d4dfea7bff054837b0b3907fa75 Author: Matthieu Patou <m...@matws.net> Date: Mon Dec 13 00:55:08 2010 +0300 build: remove -no-undefined and -as-needed on openbsd This is causing problems with linker Autobuild-User: Matthieu Patou <m...@samba.org> Autobuild-Date: Mon Dec 13 00:25:38 CET 2010 on sn-devel-104 ----------------------------------------------------------------------- Summary of changes: source4/wscript | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) Changeset truncated at 500 lines: diff --git a/source4/wscript b/source4/wscript index 93391da..8c1bc71 100644 --- a/source4/wscript +++ b/source4/wscript @@ -106,13 +106,16 @@ 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 != "openbsd4": + conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) # gentoo always adds this. We want our normal build to be as # strict as the strictest OS we support, so adding this here # allows us to find problems on our development hosts faster. # It also results in faster load time. - conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True) + if sys.platform != "openbsd4": + conf.ADD_LDFLAGS('-Wl,--as-needed', testflags=True) + if not conf.CHECK_NEED_LC("-lc not needed"): conf.ADD_LDFLAGS('-lc', testflags=False) -- Samba Shared Repository