diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-07-13 11:36:23 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-07-13 11:36:23 +0100 |
commit | fb07620556cad09ebfd1454ea644300c5630276e (patch) | |
tree | 550bb9e21c5d38185daab55f48eb76c83af4b186 | |
parent | 19480c300bf8f5e43b07f6025062e72ecb6ea7b2 (diff) | |
download | xine-lib-fb07620556cad09ebfd1454ea644300c5630276e.tar.gz xine-lib-fb07620556cad09ebfd1454ea644300c5630276e.tar.bz2 |
Adjust checking for libavcodec to match the new external ffmpeg default.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0527bed4e..aa8b94904 100644 --- a/configure.ac +++ b/configure.ac @@ -319,10 +319,12 @@ AC_SUBST(LIBMPEG2_CFLAGS) AC_ARG_WITH([external-ffmpeg], AS_HELP_STRING([--with-external-ffmpeg], [use external ffmpeg library])) case "x$with_external_ffmpeg" in + xno) + ;; xyes) PKG_CHECK_MODULES([FFMPEG], [libavcodec >= 51.20.0]) ;; - xsoft) + *) with_external_ffmpeg=yes PKG_CHECK_MODULES([FFMPEG], [libavcodec >= 51.20.0], [], [AC_MSG_RESULT(no); with_external_ffmpeg=no]) |