diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-25 16:41:53 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-25 16:41:53 +0000 |
commit | a67eeedaa2be043f9905999d7d3c8014c7773a7d (patch) | |
tree | d45b2fedf16537e7d3ff93b2d29a00c560bb4333 | |
parent | 1ac605341958564ce84a3c9784a746920c7148a9 (diff) | |
download | xine-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-- | 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]) |