You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
692 B

  1. --- a/configure.ac
  2. +++ b/configure.ac
  3. @@ -826,20 +826,6 @@ if test "x$BUILD_EXAMPLES" = "xyes"; the
  4. fi
  5. AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
  6. -dnl libunwind is optionally used by the leaks tracer
  7. -PKG_CHECK_MODULES(UNWIND, libunwind, HAVE_UNWIND=yes, HAVE_UNWIND=no)
  8. -
  9. -dnl Check for backtrace() from libc
  10. -AC_CHECK_FUNC(backtrace, [
  11. - AC_CHECK_HEADERS([execinfo.h], [
  12. - AC_DEFINE(HAVE_BACKTRACE,1,[Have backtrace])
  13. - ], [], [])
  14. -])
  15. -
  16. -if test "x$HAVE_UNWIND" = "xyes"; then
  17. - AC_DEFINE(HAVE_UNWIND, 1, [libunwind available])
  18. -fi
  19. -
  20. dnl building of unit test libraries
  21. AC_ARG_ENABLE(check,
  22. AS_HELP_STRING([--disable-check],[disable building unit test libraries]),