From be7a4b4c09ac63e2b5e4e08ee89cef23932775a8 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sat, 29 Sep 2012 00:42:36 +0200 Subject: [PATCH] Warn when SDL_image is disabled. --- qb/config.libs.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 3af5593452..5cd0cf5751 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -100,7 +100,10 @@ else HAVE_CG='no' fi -[ "$HAVE_SDL" = "no" ] && HAVE_SDL_IMAGE=no +if [ "$HAVE_SDL" = "no" ]; then + echo "SDL is disabled. Disabling SDL_image." + HAVE_SDL_IMAGE=no +fi check_pkgconf SDL_IMAGE SDL_image check_pkgconf LIBPNG libpng 1.5