1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

lib/ccan: add a missing dependency to 'execinfo' for 'backtrace()'

metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Tue May 15 16:12:54 CEST 2012 on sn-devel-104
This commit is contained in:
Stefan Metzmacher 2012-05-15 12:40:19 +02:00
parent 78af4738e7
commit 5e6357b421

View File

@ -117,8 +117,12 @@ def configure(conf):
addmain=False, link=False, cflags="-Werror",
define='HAVE_WARN_UNUSED_RESULT')
# backtrace could be in libexecinfo or in libc
conf.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo', checklibc=True, headers='execinfo.h')
def build(bld):
bld.SAMBA_LIBRARY('ccan',
vnum="0.1-init-1161-g661d41f",
source=bld.path.ant_glob('*/*.c'),
deps='execinfo',
private_library=True)