Merge pull request #753 from ss23/cross_compiling-execinfo

Use AC_COMPILE instead of AC_RUN to check for execinfo.h
This commit is contained in:
Jari Sundell
2018-06-27 18:36:21 +09:00
committed by GitHub
+1 -1
View File
@@ -153,7 +153,7 @@ dnl Need to fix this so that it uses the stuff defined by the system.
AC_DEFUN([TORRENT_CHECK_EXECINFO], [
AC_MSG_CHECKING(for execinfo.h)
AC_RUN_IFELSE([AC_LANG_SOURCE([
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
#include <execinfo.h>
int main() { backtrace((void**)0, 0); backtrace_symbols((char**)0, 0); return 0;}
])],