summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_conftests.py
diff options
context:
space:
mode:
authorMatthieu Patou <mat@matws.net>2010-10-31 18:50:15 +0300
committerMatthieu Patou <mat@samba.org>2010-10-31 16:35:17 +0000
commitc3fa203435b82d14805024db8e4a3660859cbdf0 (patch)
treefa22e649df7cdddf18162f0b4304507292d9da84 /buildtools/wafsamba/samba_conftests.py
parent9f0fb0261ecdecb093ced28024a36973bf1938b9 (diff)
downloadsamba-c3fa203435b82d14805024db8e4a3660859cbdf0.tar.gz
samba-c3fa203435b82d14805024db8e4a3660859cbdf0.tar.bz2
samba-c3fa203435b82d14805024db8e4a3660859cbdf0.zip
build: In some case the flags for the sun studio linker are wrong
In this case we test if the -Wl,-h,%s works and if so use this form Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Sun Oct 31 16:35:17 UTC 2010 on sn-devel-104
Diffstat (limited to 'buildtools/wafsamba/samba_conftests.py')
-rw-r--r--buildtools/wafsamba/samba_conftests.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/buildtools/wafsamba/samba_conftests.py b/buildtools/wafsamba/samba_conftests.py
index 49cd4ff17c..4811614ab7 100644
--- a/buildtools/wafsamba/samba_conftests.py
+++ b/buildtools/wafsamba/samba_conftests.py
@@ -94,6 +94,20 @@ def find_config_dir(conf):
return dir
@conf
+def CHECK_SHLIB_INTRASINC_NAME_FLAGS(conf, msg):
+ '''
+ check if the waf default flags for setting the name of lib
+ are ok
+ '''
+
+ snip = '''
+int foo(int v) {
+ return v * 2;
+}
+'''
+ return conf.check(features='cc cshlib',vnum="1",fragment=snip,msg=msg)
+
+@conf
def CHECK_SHLIB_W_PYTHON(conf, msg):
'''check if we need -undefined dynamic_lookup'''