From a27a494e665a16b55d5a0520c3acc2bdd278e4c8 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 13 Jan 2013 16:36:28 +0100 Subject: configure: change libcaca test to pkg-config Caca is important. --- configure | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 5082e00a59..f6696398c5 100755 --- a/configure +++ b/configure @@ -2029,21 +2029,10 @@ echores "$_xf86keysym" echocheck "CACA" if test "$_caca" = auto ; then _caca=no - if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then - cat > $TMPC << EOF -#include -#ifdef CACA_API_VERSION_1 - #include -#endif -int main(void) { caca_init(); return 0; } -EOF - cc_check $(caca-config --libs) && _caca=yes - fi + pkg_config_add 'caca >= 0.99.beta18' && _caca=yes fi if test "$_caca" = yes ; then def_caca='#define CONFIG_CACA 1' - extra_cflags="$extra_cflags $(caca-config --cflags)" - libs_mplayer="$libs_mplayer $(caca-config --libs)" vomodules="caca $vomodules" else def_caca='#undef CONFIG_CACA' -- cgit v1.2.3