summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d436f451d..fdea0eb67 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
xine-lib (1.1.17) 2009-??-??
* Fix build with older ffmpeg, both internal and in Debian 5.0.
+ * Add version check for CACA library and disable CACA plugin if needed
xine-lib (1.1.16) 2009-01-07
* Security fixes:
diff --git a/configure.ac b/configure.ac
index beb344314..5bc13b383 100644
--- a/configure.ac
+++ b/configure.ac
@@ -952,7 +952,7 @@ AC_ARG_WITH([caca],
AS_HELP_STRING([--without-caca], [Do not build CACA support]))
if test "x$with_caca" != "xno"; then
- PKG_CHECK_MODULES([CACA], [caca cucul], [have_caca="yes"], [have_caca="no"])
+ PKG_CHECK_MODULES([CACA], [caca >= 0.99beta15 cucul >= 0.99beta15 ], [have_caca="yes"], [have_caca="no"])
if test "x$with_caca" = "xyes" && test "x$have_caca" = "xno"; then
AC_MSG_ERROR([CACA support requested, but libcaca 0.99 not found])
fi