diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-10-10 23:05:22 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-11 00:07:50 +0200 |
commit | 6614f38411aecdc5d5d0ba5c849b195df874b1d6 (patch) | |
tree | c16c526e4583418fecbee4481c2eba79b002e278 | |
parent | af28f7901ea2a80435714e98fb750b4c03570c96 (diff) | |
download | buildroot-6614f38411aecdc5d5d0ba5c849b195df874b1d6.tar.gz buildroot-6614f38411aecdc5d5d0ba5c849b195df874b1d6.zip |
package/weston: fix configure.ac for fbdev compositor
Apply patch from upstream.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/weston/weston-0003-compositor-fbdev-drop-dependency-on-libdrm.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/weston/weston-0003-compositor-fbdev-drop-dependency-on-libdrm.patch b/package/weston/weston-0003-compositor-fbdev-drop-dependency-on-libdrm.patch new file mode 100644 index 0000000000..dfc20dee82 --- /dev/null +++ b/package/weston/weston-0003-compositor-fbdev-drop-dependency-on-libdrm.patch @@ -0,0 +1,22 @@ +commit 7b8e970ad1f1ef96db23b379a41edeb40ef1e8b6 +Author: Adrian Negreanu <adrian.m.negreanu@intel.com> +Date: Thu Sep 26 19:31:32 2013 +0300 + + compositor-fbdev: drop dependency on libdrm + + Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com> + Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> + +diff --git a/configure.ac b/configure.ac +index 7c2da44..a43bf5b 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -190,7 +190,7 @@ AM_CONDITIONAL([ENABLE_FBDEV_COMPOSITOR], + [test x$enable_fbdev_compositor = xyes]) + AS_IF([test x$enable_fbdev_compositor = xyes], [ + AC_DEFINE([BUILD_FBDEV_COMPOSITOR], [1], [Build the fbdev compositor]) +- PKG_CHECK_MODULES([FBDEV_COMPOSITOR], [libudev >= 136 mtdev >= 1.1.0 libdrm >= 2.4.30]) ++ PKG_CHECK_MODULES([FBDEV_COMPOSITOR], [libudev >= 136 mtdev >= 1.1.0]) + ]) + + AC_ARG_ENABLE([rdp-compositor], [ --enable-rdp-compositor],, |