summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2016-12-06 18:07:36 +0100
committerRalph Boehme <slow@samba.org>2017-01-02 14:12:27 +0100
commitf4c0a750d4adebcf2342a44e85f04526c34268c8 (patch)
treebb98e1be8ce75f0677927c3e465bd1038b68959a /buildtools
parentb7ae41e6ca133e08f1dc62bd49436f51f490f46b (diff)
downloadsamba-f4c0a750d4adebcf2342a44e85f04526c34268c8.tar.gz
WAF: Fix detection of linker features
Following check of linker feature failed with strict CFLAGS "-Werrorr=implicit-function-declaration -Werror=implicit-int" Checking for rpath library support : not found Checking for -Wl,--version-script support : not found ../main.c: In function ‘main’: ../main.c:1:26: error: implicit declaration of function ‘lib_func’ [-Werror=implicit-function-declaration] int main(void) {return !(lib_func() == 42);} ^~~~~~~~ Signed-off-by: Lukas Slebodnik <lslebodn@redhat.com> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_conftests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_conftests.py b/buildtools/wafsamba/samba_conftests.py
index 045f858e9cd..c9f8fdc0131 100644
--- a/buildtools/wafsamba/samba_conftests.py
+++ b/buildtools/wafsamba/samba_conftests.py
@@ -286,7 +286,9 @@ def CHECK_LIBRARY_SUPPORT(conf, rpath=False, version_script=False, msg=None):
os.makedirs(subdir)
Utils.writef(os.path.join(subdir, 'lib1.c'), 'int lib_func(void) { return 42; }\n')
- Utils.writef(os.path.join(dir, 'main.c'), 'int main(void) {return !(lib_func() == 42);}\n')
+ Utils.writef(os.path.join(dir, 'main.c'),
+ 'int lib_func(void);\n'
+ 'int main(void) {return !(lib_func() == 42);}\n')
bld = Build.BuildContext()
bld.log = conf.log