From: Ken Thomases Subject: [PATCH 1/3] configure: Add ability to disable use of libunwind using --without-unwind. Message-Id: <2EB74FF4-A074-40C5-BC49-5F41572A207A@codeweavers.com> Date: Sun, 14 Jun 2015 21:22:24 -0500 Suggested by Sebastian Lackner. --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index df28b27..ba52ade 100644 --- a/configure.ac +++ b/configure.ac @@ -74,6 +74,8 @@ AC_ARG_WITH(pthread, AS_HELP_STRING([--without-pthread],[do not use the pthrea [if test "x$withval" = "xno"; then ac_cv_header_pthread_h=no; fi]) AC_ARG_WITH(sane, AS_HELP_STRING([--without-sane],[do not use SANE (scanner support)])) AC_ARG_WITH(tiff, AS_HELP_STRING([--without-tiff],[do not use TIFF])) +AC_ARG_WITH(unwind, AS_HELP_STRING([--without-unwind],[do not use libunwind]), + [if test "x$withval" = "xno"; then ac_cv_header_libunwind_h=no; fi]) AC_ARG_WITH(v4l, AS_HELP_STRING([--without-v4l],[do not use v4l1 (v4l support)])) AC_ARG_WITH(xcomposite,AS_HELP_STRING([--without-xcomposite],[do not use the Xcomposite extension]), [if test "x$withval" = "xno"; then ac_cv_header_X11_extensions_Xcomposite_h=no; fi])