diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-30 13:19:46 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:18 +1000 |
commit | 33d5c4a18c1b194d82e077844bb27d922de815a9 (patch) | |
tree | 2862345ba17c3893c9766d417d55533a6bb7144f /buildtools | |
parent | 8e36daf51389c43de9182c660a68923049e7df5e (diff) | |
download | samba-33d5c4a18c1b194d82e077844bb27d922de815a9.tar.gz samba-33d5c4a18c1b194d82e077844bb27d922de815a9.tar.bz2 samba-33d5c4a18c1b194d82e077844bb27d922de815a9.zip |
build: don't link when checking a C prototype
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_conftests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/buildtools/wafsamba/samba_conftests.py b/buildtools/wafsamba/samba_conftests.py index 94ddf3a5a9..348dc341e4 100644 --- a/buildtools/wafsamba/samba_conftests.py +++ b/buildtools/wafsamba/samba_conftests.py @@ -42,6 +42,8 @@ def CHECK_C_PROTOTYPE(conf, function, prototype, define, headers=None): define=define, local_include=False, headers=headers, + link=False, + execute=False, msg='Checking C prototype for %s' % function) |