From 8dcb59318b83a96a4884d884572fa94aef96f71a Mon Sep 17 00:00:00 2001 From: Themaister Date: Tue, 18 Sep 2012 12:18:16 +0200 Subject: [PATCH] Require EGL to be present if KMS is compiled. --- qb/config.libs.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index d1bb8e7635..ea1b54cde7 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -128,12 +128,14 @@ fi check_lib DYNAMIC "$DYLIB" dlopen +HAVE_EGL=no if [ "$HAVE_KMS" = "yes" ]; then check_pkgconf GBM gbm check_pkgconf DRM libdrm if [ "$HAVE_GBM" = "yes" ] && [ "$HAVE_DRM" = "yes" ]; then HAVE_KMS=yes + HAVE_EGL=yes fi fi