diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ xine-lib (1.1.15) 2008-??-?? + * Use external ffmpeg by default. * V4L: Don't segfault if asked for an input that doesn't exist xine-lib (1.1.14) 2008-06-29 diff --git a/configure.ac b/configure.ac index e8abfc211..0527bed4e 100644 --- a/configure.ac +++ b/configure.ac @@ -328,7 +328,7 @@ case "x$with_external_ffmpeg" in [AC_MSG_RESULT(no); with_external_ffmpeg=no]) ;; esac -if test "x$with_external_ffmpeg" = "xyes"; then +if test "x$with_external_ffmpeg" != "xno"; then PKG_CHECK_MODULES([FFMPEG_POSTPROC], [libpostproc]) AC_SUBST([FFMPEG_CFLAGS]) AC_SUBST([FFMPEG_LIBS]) |