diff options
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 66f5383..9977f3f 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -1248,6 +1248,10 @@ AC_ARG_WITH(oprofile, AC_DEFINE_UNQUOTED([USE_OPROFILE],$USE_OPROFILE, [Define if we have the oprofile JIT-support library]) +dnl gCRAnnotations isn't the function we care about, but it's the only +dnl thing exported. +AC_CHECK_LIB(CrashReporterClient, gCRAnnotations) + dnl===-----------------------------------------------------------------------=== dnl=== dnl=== SECTION 6: Check for header files @@ -1284,6 +1288,9 @@ if test "$llvm_cv_enable_libffi" = "yes" ; then AC_CHECK_HEADERS([ffi.h ffi/ffi.h]) fi +dnl Try to find Darwin specific crash reporting library. +AC_CHECK_HEADERS([CrashReporterClient.h]) + dnl===-----------------------------------------------------------------------=== dnl=== dnl=== SECTION 7: Check for types and structures |