summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-12-25 16:41:53 +0000
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2006-12-25 16:41:53 +0000
commita67eeedaa2be043f9905999d7d3c8014c7773a7d (patch)
treed45b2fedf16537e7d3ff93b2d29a00c560bb4333
parent1ac605341958564ce84a3c9784a746920c7148a9 (diff)
downloadxine-lib-a67eeedaa2be043f9905999d7d3c8014c7773a7d.tar.gz
xine-lib-a67eeedaa2be043f9905999d7d3c8014c7773a7d.tar.bz2
* 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] CVS patchset: 8443 CVS date: 2006/12/25 16:41:53
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac2
2 files changed, 4 insertions, 1 deletions
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])