summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-11-21 13:37:41 +0100
committerAndreas Schneider <asn@cryptomilk.org>2023-01-09 10:43:37 +0000
commit75db84b1e59a42737343445c43c41494460c89f0 (patch)
treefe0f501a1a4e66d6a4923cc10da29cdffbc895b2 /buildtools
parent7545e2c77b69fc57e436e3ed298fdb68033ce49f (diff)
downloadsamba-75db84b1e59a42737343445c43c41494460c89f0.tar.gz
buildtools/wafsamba: Avoid calling lib_func without a prototype
This is a backport of commit f4c0a750d4adebcf2342a44e85f04526c34 ("WAF: Fix detection of linker features") to buildtools/wafsamba/samba_conftests.py. It fixes the check for rpath support with compilers in strict C99 mode. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15281 Signed-off-by: Florian Weimer <fweimer@redhat.com> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_waf18.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_waf18.py b/buildtools/wafsamba/samba_waf18.py
index e2a078bd3a0..cfdceea14ca 100644
--- a/buildtools/wafsamba/samba_waf18.py
+++ b/buildtools/wafsamba/samba_waf18.py
@@ -209,7 +209,8 @@ def CHECK_LIBRARY_SUPPORT(conf, rpath=False, version_script=False, msg=None):
lib_node.parent.mkdir()
lib_node.write('int lib_func(void) { return 42; }\n', 'w')
main_node = bld.srcnode.make_node('main.c')
- main_node.write('int main(void) {return !(lib_func() == 42);}', 'w')
+ main_node.write('int lib_func(void);\n'
+ 'int main(void) {return !(lib_func() == 42);}', 'w')
linkflags = []
if version_script:
script = bld.srcnode.make_node('ldscript')