summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac12
1 files changed, 10 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 2069102f58..2781197cf0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -849,8 +849,16 @@ case "${build_profile}" in
;;
esac
-PKG_CHECK_MODULES(UNWIND, [libunwind libunwind-generic],
- [have_unwind=yes], [have_unwind=no])
+want_unwind="yes"
+have_unwind="no"
+AC_ARG_ENABLE([unwind],
+ [AS_HELP_STRING([--disable-unwind],[Disable unwind library. @<:@default=enabled@:>@])],
+ [want_unwind="no"], [])
+
+if test x"${want_unwind}" = "xyes"; then
+ PKG_CHECK_MODULES(UNWIND, [libunwind libunwind-generic],
+ [have_unwind=${want_unwind}], [have_unwind=no])
+fi
AS_IF([test "x$have_unwind" = "xyes"],
[AC_DEFINE([HAVE_UNWIND], [1], [Have libunwind])])
AM_CONDITIONAL(HAVE_UNWIND, test "x$have_unwind" = "xyes")