diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-01-09 17:53:49 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-01-09 17:53:49 +0000 |
commit | 608736bd373309ad9d406abae24006306e47edd0 (patch) | |
tree | 1016c5ab56a7822b8b56318f1a27556ab8a9d53b | |
parent | 03f921b835ee466de2e32fb60815457db12b279d (diff) | |
download | xine-lib-608736bd373309ad9d406abae24006306e47edd0.tar.gz xine-lib-608736bd373309ad9d406abae24006306e47edd0.tar.bz2 |
Works fine with libcaca 0.99beta14. Also fix up check output.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5bc13b383..167312e56 100644 --- a/configure.ac +++ b/configure.ac @@ -952,7 +952,9 @@ 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 >= 0.99beta15 cucul >= 0.99beta15 ], [have_caca="yes"], [have_caca="no"]) + have_caca=yes + PKG_CHECK_MODULES([CACA], [caca >= 0.99beta14 cucul >= 0.99beta14 ], + [], [AC_MSG_RESULT(no); 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 |