From 3516b8b7558a69dfd06410b0c997d096a78221c9 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Thu, 1 Sep 2016 11:20:05 +0200 Subject: Add libmissing This patch adds a libmissing library to mtd-utils, containing implementations of functionality found in glibc but typically missing from embedded C libraries such as uclibc ot musl. For now, the library only contains stub implementations of the backtrace*() family of functions. Signed-off-by: David Oberhollenzer Signed-off-by: Richard Weinberger --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 9c8666c..637d692 100644 --- a/configure.ac +++ b/configure.ac @@ -72,6 +72,9 @@ AC_ARG_WITH([lzo], [AM_CONDITIONAL([WITHOUT_LZO], [false])]) +AC_CHECK_HEADERS([execinfo.h], [execinfo_found=yes]) +AM_CONDITIONAL([HAVE_EXECINFO], [test "x$execinfo_found" == "xyes"]) + PKG_CHECK_MODULES(ZLIB, [ zlib ]) PKG_CHECK_MODULES(UUID, [ uuid ]) -- cgit v1.2.3