From fc74475415e3f0c90b20b54302e6694850f5c3ff Mon Sep 17 00:00:00 2001 From: Jean Guyomarc'h Date: Sat, 28 May 2016 13:07:22 +0200 Subject: [PATCH] autotools: improve libunwind detection Libuwind may not be shipped with a pkg-config file. It can be distributed on the system, but the autotools would fail to detect it because it relied only on pkg-config. We now first check with pkg-config, and then try to compile and link a program using libuwind to see if it is supported anyway. This is a first step towards a working eina_log_backtrace on Mac OS X. --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index 1efae6ed10..f9664320c5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,6 +42,7 @@ m4/efl_compiler.m4 \ m4/efl_doxygen.m4 \ m4/efl_path_max.m4 \ m4/efl_threads.m4 \ +m4/efl_libunwind.m4 \ m4/eina_check.m4 \ m4/eina_config.m4 \ m4/eio_check_options.m4 \