diff options
-rw-r--r-- | kaffeine/configure.in.in | 17 |
1 files 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 |