From f66f99d9db2480bb4e58bc3c76e8193dbd4e241a Mon Sep 17 00:00:00 2001 From: Samuel Iglesias Gonsalvez Date: Wed, 28 Aug 2013 11:22:41 +0200 Subject: [PATCH] configure.ac: fix broken compilation when configure with --disable-egl option Fix bug 67561: "configure with --disable-egl option breaks fbdev backend compilation" https://bugs.freedesktop.org/show_bug.cgi?id=67561 Signed-off-by: Samuel Iglesias Gonsalvez --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 802c208..0129157 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]) + PKG_CHECK_MODULES([FBDEV_COMPOSITOR], [libudev >= 136 mtdev >= 1.1.0 libdrm >= 2.4.30]) ]) AC_ARG_ENABLE([rdp-compositor], [ --enable-rdp-compositor],, -- 2.7.4