commit da847748446a607dc6f8a5f4d8710ae53476c5ba
Author: phantomjinx <[email protected]>
Date: Thu Apr 21 23:28:38 2011 +0100
Incorrect library for ogg vorbis files
* Need libvorbisfile not just libvorbis
configure.ac | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 01a2299..978b641 100644
--- a/configure.ac
+++ b/configure.ac
@@ -230,7 +230,7 @@ dnl Check for libvorbisfile and libvorbis
dnl -------------------------------------------------------------
AC_ARG_WITH(ogg, AS_HELP_STRING([--without-ogg],[Disable Ogg/Vorbis support]))
if test "x$with_ogg" != "xno"; then
- PKG_CHECK_MODULES(VORBIS, vorbis >= 1.3.1, have_ogg=yes, have_ogg=no)
+ PKG_CHECK_MODULES(VORBISFILE, vorbisfile >= 1.3.1, have_ogg=yes,
have_ogg=no)
if test "x$with_ogg" = "xyes" -a "x$have_ogg" = "xno"; then
AC_MSG_WARN([Ogg/Vorbis support explicitly requested but ogg/vorbis
libs couldn't be found])
fi
@@ -238,9 +238,9 @@ fi
AM_CONDITIONAL(HAVE_LIBVORBISFILE, test "x$have_ogg" = "xyes")
if test "x$have_ogg" = "xyes"; then
AC_DEFINE(HAVE_LIBVORBISFILE, 1, [Define if you have the ogg/vorbis
library])
- CPPFLAGS="$CPPFLAGS $VORBIS_CFLAGS"
- CFLAGS="$CFLAGS $VORBIS_CFLAGS"
- LIBS="$LIBS $VORBIS_LIBS"
+ CPPFLAGS="$CPPFLAGS $VORBISFILE_CFLAGS"
+ CFLAGS="$CFLAGS $VORBISFILE_CFLAGS"
+ LIBS="$LIBS $VORBISFILE_LIBS"
fi
dnl Check for FLAC
------------------------------------------------------------------------------
Fulfilling the Lean Software Promise
Lean software platforms are now widely adopted and the benefits have been
demonstrated beyond question. Learn why your peers are replacing JEE
containers with lightweight application servers - and what you can gain
from the move. http://p.sf.net/sfu/vmware-sfemails
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2