summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch
diff options
context:
space:
mode:
authorTim Orling <TicoTimo@gmail.com>2014-05-30 08:52:10 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-01 14:29:31 +0100
commitdfe49a11fadb6312dbebe9bb644d1fbfe83171c6 (patch)
tree3af3305e9692bec68cb9a2d9423a5abf929d7d0d /meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch
parentdd1dacf7bde252294d63215df6a5d7636110f003 (diff)
downloadpoky-dfe49a11fadb6312dbebe9bb644d1fbfe83171c6.tar.gz
weston: make lcms explicitly configurable
Per Ross's comment, make --enable-lcms deterministic. Follow upstream style to make it more likely to be merged upstream. (From OE-Core rev: e2f45c6284f0a26cc858f9ae5887a4c1ef844d96) Signed-off-by: Tim Orling <TicoTimo@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch')
-rw-r--r--meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch b/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch
deleted file mode 100644
index ef145b8473..0000000000
--- a/meta/recipes-graphics/wayland/weston/make-lcms-configurable.patch
+++ /dev/null
@@ -1,22 +0,0 @@
1Index: weston-1.5.0/configure.ac
2===================================================================
3--- weston-1.5.0.orig/configure.ac
4+++ weston-1.5.0/configure.ac
5@@ -491,8 +491,16 @@ AC_ARG_ENABLE(demo-clients-install,
6 enable_demo_clients_install=no)
7 AM_CONDITIONAL(INSTALL_DEMO_CLIENTS, [test "x$enable_demo_clients_install" = "xyes"])
8
9+AC_ARG_ENABLE(lcms,
10+ AS_HELP_STRING([--disable-lcms],
11+ [disable lcms support]),,
12+ enable_lcms=yes)
13+
14+AS_IF([test "x$enable_lcms" != "xno"], [
15 PKG_CHECK_MODULES(LCMS, lcms2,
16- [have_lcms=yes], [have_lcms=no])
17+ [have_lcms=yes], [have_lcms=no])],
18+ [have_lcms=no])
19+
20 if test "x$have_lcms" = xyes; then
21 AC_DEFINE(HAVE_LCMS, 1, [Have lcms support])
22 fi