diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -19,6 +19,9 @@ xine-lib (1.1.4) Kay. [bug #1602663] * Fix invalid memory access in Real Media SDP with tailored stream; reported by Roland Kay. [bug #1602631] + * Don't check for libpostproc version and assume that if libavcodec is found + correctly, libpostproc is of the same version, too. Reported by Ville + Skyttä. [bug #1617344] xine-lib (1.1.3) * Security fixes: diff --git a/configure.ac b/configure.ac index ef46671a9..5d68331b9 100644 --- a/configure.ac +++ b/configure.ac @@ -367,7 +367,7 @@ AC_ARG_WITH([external-ffmpeg], AC_HELP_STRING([--with-external-ffmpeg], [use ext if test "x$with_external_ffmpeg" = "xyes"; then PKG_CHECK_MODULES([FFMPEG], [libavcodec >= 51.11.0]) - PKG_CHECK_MODULES([FFMPEG_POSTPROC], [libpostproc >= 51.11.0]) + PKG_CHECK_MODULES([FFMPEG_POSTPROC], [libpostproc]) AC_SUBST([FFMPEG_CFLAGS]) AC_SUBST([FFMPEG_LIBS]) AC_SUBST([FFMPEG_POSTPROC_CFLAGS]) |