jayji pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=fc74475415e3f0c90b20b54302e6694850f5c3ff
commit fc74475415e3f0c90b20b54302e6694850f5c3ff Author: Jean Guyomarc'h <j...@guyomarch.bzh> Date: Sat May 28 13:07:22 2016 +0200 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 1efae6e..f966432 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 \ --