30 lines
1018 B
Diff
30 lines
1018 B
Diff
From 9af5efc2a92bc1ade61eed31a5192ea4bb253549 Mon Sep 17 00:00:00 2001
|
||
From: Jian <Jian.Li@freescale.com>
|
||
Date: Fri, 24 Apr 2015 17:12:02 +0800
|
||
Subject: [PATCH] Fix for gl plugin not built in wayland backend
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
Upstream Status: Inappropriate [i.MX specific]
|
||
|
||
Signed-off-by: Jian <Jian.Li@freescale.com>
|
||
Signed-off-by: Lyon Wang <lyon.wang@freescale.com>
|
||
---
|
||
configure.ac | 2 +-
|
||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
||
diff --git a/configure.ac b/configure.ac
|
||
index 622e5bb16278..63cc7161cec5 100644
|
||
--- a/configure.ac
|
||
+++ b/configure.ac
|
||
@@ -789,7 +789,7 @@ case $host in
|
||
LIBS=$old_LIBS
|
||
CFLAGS=$old_CFLAGS
|
||
|
||
- PKG_CHECK_MODULES(WAYLAND_EGL, wayland-client >= 1.0 wayland-cursor >= 1.0 wayland-egl >= 9.0, HAVE_WAYLAND_EGL=yes, HAVE_WAYLAND_EGL=no)
|
||
+ PKG_CHECK_MODULES(WAYLAND_EGL, wayland-client >= 1.0 wayland-cursor >= 1.0 wayland-egl >= 1.0, HAVE_WAYLAND_EGL=yes, HAVE_WAYLAND_EGL=no)
|
||
;;
|
||
esac
|
||
|