From a67eeedaa2be043f9905999d7d3c8014c7773a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Mon, 25 Dec 2006 16:41:53 +0000 Subject: =?UTF-8?q?=20=20*=20Don't=20check=20for=20libpostproc=20version?= =?UTF-8?q?=20and=20assume=20that=20if=20libavcodec=20is=20found=20=20=20?= =?UTF-8?q?=20=20correctly,=20libpostproc=20is=20of=20the=20same=20version?= =?UTF-8?q?,=20too.=20Reported=20by=20Ville=20=20=20=20=20Skytt=C3=A4.=20[?= =?UTF-8?q?bug=20#1617344]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CVS patchset: 8443 CVS date: 2006/12/25 16:41:53 --- ChangeLog | 3 +++ configure.ac | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 382b3e7f3..d3ec73314 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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]) -- cgit v1.2.3