From 2f45d588ff191cf5c0b717ff79d3571fc94cf2cf Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 9 Nov 2014 10:19:16 -0600 Subject: Fix FTBFS on Debian Jessie --- kaffeine/configure.in.in | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/kaffeine/configure.in.in b/kaffeine/configure.in.in index 02736cd..1d84afe 100644 --- a/kaffeine/configure.in.in +++ b/kaffeine/configure.in.in @@ -251,14 +251,21 @@ LIB_OGGVORBIS="" if test "$with_oggvorbis" != "no" ; then AC_MSG_CHECKING([for Ogg/Vorbis encoder]) - if "$PKG_CONFIG" --exists vorbisenc ; then + if "$PKG_CONFIG" --exists vorbisenc vorbis ogg ; then with_oggvorbis=yes - CFLAGS_OGGVORBIS=`"$PKG_CONFIG" --cflags vorbisenc` - LIB_OGGVORBIS=`"$PKG_CONFIG" --libs vorbisenc` + CFLAGS_OGGVORBIS=`"$PKG_CONFIG" --cflags vorbisenc vorbis ogg` + LIB_OGGVORBIS=`"$PKG_CONFIG" --libs vorbisenc vorbis ogg` AC_MSG_RESULT([yes]) else - with_oggvorbis=no - AC_MSG_RESULT([no]) + if "$PKG_CONFIG" --exists vorbisenc ; then + with_oggvorbis=yes + CFLAGS_OGGVORBIS=`"$PKG_CONFIG" --cflags vorbisenc` + LIB_OGGVORBIS=`"$PKG_CONFIG" --libs vorbisenc` + AC_MSG_RESULT([yes]) + else + with_oggvorbis=no + AC_MSG_RESULT([no]) + fi fi fi -- cgit v1.2.3