configure: fix build if libdrm is not available

If the NOT_FOUND part of the check PKG_CHECK_MODULES is not written, it
defaults to error. Addind the else clause of this check as
HAVE_WAYLAND="no"

https://bugzilla.gnome.org/show_bug.cgi?id=773927
This commit is contained in:
Luis de Bethencourt 2016-11-15 11:59:45 +00:00 committed by Luis
parent 9f690fa241
commit 2132b6b452

View file

@ -2260,7 +2260,7 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_WAYLAND, true)
AC_PATH_PROG([wayland_scanner], [wayland-scanner])
AG_GST_CHECK_FEATURE(WAYLAND, [wayland sink], wayland , [
PKG_CHECK_MODULES(WAYLAND, wayland-client >= 1.4.0, [
PKG_CHECK_MODULES([WAYLAND_DRM], [libdrm >= 2.4.55])
PKG_CHECK_MODULES([WAYLAND_DRM], [libdrm >= 2.4.55], [
PKG_CHECK_MODULES(WAYLAND_PROTOCOLS, wayland-protocols >= 1.4, [
if test "x$wayland_scanner" != "x"; then
HAVE_WAYLAND="yes"
@ -2274,6 +2274,7 @@ AG_GST_CHECK_FEATURE(WAYLAND, [wayland sink], wayland , [
])],
[ HAVE_WAYLAND="no"
])
])
])
dnl **** WebP ****