[PATCH weston] Don't fail if colord or libunwind are not present
Armin K
krejzi at email.com
Thu May 30 06:16:40 PDT 2013
This patch adds auto detection for presence of
the colord and libunwind packages.
---
configure.ac | 43 +++++++++++++++++++++++++++++++------------
1 file changed, 31 insertions(+), 12 deletions(-)
diff --git a/configure.ac b/configure.ac
index 323bd87..ba1fcac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -291,11 +291,19 @@ AM_CONDITIONAL(ENABLE_TABLET_SHELL,
AC_ARG_ENABLE(colord,
AS_HELP_STRING([--disable-colord],
[do not build colord CMS support]),,
- enable_colord=yes)
-AM_CONDITIONAL(ENABLE_COLORD,
- test "x$enable_colord" = "xyes")
-if test x$enable_colord = xyes; then
- PKG_CHECK_MODULES(COLORD, colord >= 0.1.27)
+ enable_colord=auto)
+AM_CONDITIONAL(ENABLE_COLORD, test "x$enable_colord" = "xyes")
+if test "x$enable_colord" != "xno"; then
+ PKG_CHECK_MODULES(COLORD,
+ colord >= 0.1.27,
+ have_colord=yes,
+ have_colord=no)
+ if test "x$have_colord" = "xno" -a "x$enable_colord" = "xyes"; then
+ AC_MSG_ERROR([colord support explicitly requested, but colord couldn't be found])
+ fi
+ if test "x$have_colord" = "xyes"; then
+ enable_colord=yes
+ fi
fi
AC_ARG_ENABLE(wcap-tools, [ --disable-wcap-tools],, enable_wcap_tools=yes)
@@ -319,14 +327,25 @@ if test "x$GCC" = "xyes"; then
fi
AC_SUBST(GCC_CFLAGS)
-AC_ARG_ENABLE(libunwind, AS_HELP_STRING([ --disable-libunwind],
- [Disable libunwind usage for backtraces]),,
- enable_libunwind=yes)
-if test "x$enable_libunwind" = xyes; then
- PKG_CHECK_MODULES(LIBUNWIND, libunwind)
- AC_DEFINE(HAVE_LIBUNWIND, 1, [Have libunwind support])
-fi
+AC_ARG_ENABLE(libunwind,
+ AS_HELP_STRING([--disable-libunwind],
+ [Disable libunwind usage for backtraces]),,
+ enable_libunwind=auto)
AM_CONDITIONAL(HAVE_LIBUNWIND, [test "x$enable_libunwind" = xyes])
+if test "x$enable_libunwind" != "xno"; then
+ PKG_CHECK_MODULES(LIBUNWIND,
+ libunwind,
+ have_libunwind=yes,
+ have_libunwind=no)
+ if test "x$have_libunwind" = "xno" -a "x$enable_libunwind" = "xyes"; then
+ AC_MSG_ERROR([libunwind support explicitly requested, but libunwind couldn't be found])
+ fi
+ if test "x$have_libunwind" = "xyes"; then
+ enable_libunwind=yes
+ AC_DEFINE(HAVE_LIBUNWIND, 1, [Have libunwind support])
+ fi
+fi
+
if test "x$WESTON_NATIVE_BACKEND" = "x"; then
WESTON_NATIVE_BACKEND="drm-backend.so"
--
1.8.3
More information about the wayland-devel
mailing list