efl: Require elput for gl-drm

Software drm requires elput in order to function. As gl-drm also uses
ecore_drm2 it should require elput too.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-11-14 09:10:27 -05:00
parent a198c2423c
commit a3721800c4
1 changed files with 6 additions and 2 deletions

View File

@ -2156,12 +2156,16 @@ AC_ARG_ENABLE([gl-drm],
[enable gl drm engine. @<:@default=disabled@:>@])],
[
if test "x${enableval}" = "xyes" ; then
want_gl_drm="yes"
if test "x${want_elput}" != "xyes" ; then
AC_MSG_ERROR([elput is required to build gl-drm support])
fi
want_gl_drm="yes"
else
want_gl_drm="no"
want_gl_drm="no"
fi
],
[want_gl_drm="no"])
# Fontconfig
AC_ARG_ENABLE([fontconfig],
[AS_HELP_STRING([--disable-fontconfig],[disable fontconfig for finding fonts. @<:@default=enabled@:>@])],