From 64a9af8fe81116df23894387c93d7aacc05f7bc1 Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Fri, 7 Dec 2012 19:11:22 +0000 Subject: [PATCH] efl: check for sdl if it's required. SVN revision: 80489 --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 527eba561c..0f0eda8475 100644 --- a/configure.ac +++ b/configure.ac @@ -1138,6 +1138,10 @@ AC_ARG_ENABLE([sdl], ], [want_sdl="no"]) +if test "${want_sdl}"; then + EFL_PKG_CHECK_STRICT([sdl >= 1.2.0]) +fi + want_gl_sdl="no" if test "${want_sdl}" = "yes" && test "${with_opengl}" != "none"; then want_gl_sdl="yes"