aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 3597213..fbd57a5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,6 +78,13 @@ AC_CHECK_HEADERS([SDL_ttf.h], , [
AC_MSG_ERROR([Required libSDL_ttf header missing!])
])
+AC_CHECK_LIB(SDL_ffmpeg, SDL_ffmpegOpen, , [
+ AC_MSG_ERROR([Required libSDL_ffmpeg missing!])
+])
+AC_CHECK_HEADERS([SDL/SDL_ffmpeg.h], , [
+ AC_MSG_ERROR([Required libSDL_ffmpeg header missing!])
+])
+
PKG_CHECK_MODULES(LIBVLC, [libvlc >= 1.1.10], [
CFLAGS="$CFLAGS $LIBVLC_CFLAGS"
CPPFLAGS="$CPPFLAGS $LIBVLC_CFLAGS"