configure: change libcaca test to pkg-config

Caca is important.
This commit is contained in:
wm4 2013-01-13 16:36:28 +01:00
parent f064debfb7
commit a27a494e66
1 changed files with 1 additions and 12 deletions

13
configure vendored
View File

@ -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 <caca.h>
#ifdef CACA_API_VERSION_1
#include <caca0.h>
#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'