diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-11-13 18:01:09 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-11-13 19:38:38 +0100 |
commit | 86afe83d867229b11fd4ec9cb6e29af698cacdef (patch) | |
tree | bd3af9eeb082c5177895689bcf3068e30b5df55c /wscript | |
parent | af5c6fba68a05e9e196f4e9133b07cb1d62cc981 (diff) | |
download | samba-86afe83d867229b11fd4ec9cb6e29af698cacdef.tar.gz |
waf: Factor checking for undefined symbol flags out into separate method.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Nov 13 19:38:38 CET 2011 on sn-devel-104
Diffstat (limited to 'wscript')
-rwxr-xr-x | wscript | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -101,15 +101,7 @@ def configure(conf): conf.RECURSE('selftest') conf.RECURSE('source3') - # we don't want any libraries or modules to rely on runtime - # resolution of symbols - if sys.platform != "openbsd4": - conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) - - if sys.platform != "openbsd4" and conf.env.undefined_ignore_ldflags == []: - if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup']): - conf.env.undefined_ignore_ldflags = ['-undefined', 'dynamic_lookup'] - + conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS() # gentoo always adds this. We want our normal build to be as # strict as the strictest OS we support, so adding this here |