From e92c33bff5d393bbf6e735f58a02608ec4e11e56 Mon Sep 17 00:00:00 2001 From: Sean Harmer Date: Tue, 5 Jun 2012 10:35:34 +0100 Subject: Do not build eglfs QPA when cross compiling for QNX Commit 2a1b50d67c1f2f4c5bd5efe048080989db37f44f introduced a dependency on evdev for eglfs which QNX does not provide. QNX also has a dedicated QPA plugin so the eglfs plugin is not needed there. It is not possible to use the -device configure defaults approach as it is not cross-platform. Change-Id: I2d151f16cf1a9576a0b0b528f0e9c17834c66e91 Reviewed-by: Oswald Buddenhagen --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index d605fe07e2..d74eb10723 100755 --- a/configure +++ b/configure @@ -4742,7 +4742,7 @@ elif [ "$CFG_OPENGL" = "desktop" ]; then fi if [ "$CFG_EGLFS" != "no" ]; then - if [ "$CFG_OPENGL" = "es2" ]; then + if [ "$CFG_OPENGL" = "es2" ] && [ "$XPLATFORM_QNX" = "no" ]; then CFG_EGLFS="$CFG_EGL" else CFG_EGLFS="no" -- cgit v1.2.3