Re: [Banshee-List] Mirage - Automatic Playlist Generation Plugin



On Fri, 2007-08-31 at 16:21 +0200, Dominik Schnitzer wrote:
>  ...
>   * MPG123/FAAD/OGG123/SOX are reguired because of performance reasons.

Hi,

Here's a small patch against the configure.ac file. It fixes the
detection of the various utilities so that configure really fails when
they are not found.

My mp3 collection is now being processed (192/1615)... Can't wait to
test it !

Thanks for your work !

-- 
Bertrand Lorentz <bertrand lorentz gmail com>
> http://flickr.com/photos/bl8/ <
--- configure.ac.orig	2007-09-03 20:01:21.000000000 +0200
+++ configure.ac	2007-09-03 20:06:05.000000000 +0200
@@ -19,19 +19,19 @@
 AC_SUBST(MCS)
 
 AC_PATH_PROG(MPG123, mpg123, no)
-if test "x$GMCS" = "xno"; then
+if test "x$MPG123" = "xno"; then
         AC_MSG_ERROR([mpg123 Not found])
 fi
 AC_PATH_PROG(OGG123, ogg123, no)
-if test "x$GMCS" = "xno"; then
+if test "x$OGG123" = "xno"; then
         AC_MSG_ERROR([ogg123 Not found])
 fi
 AC_PATH_PROG(SOX, sox, no)
-if test "x$GMCS" = "xno"; then
+if test "x$SOX" = "xno"; then
         AC_MSG_ERROR([sox Not found])
 fi
 AC_PATH_PROG(FAAD, faad, no)
-if test "x$GMCS" = "xno"; then
+if test "x$FAAD" = "xno"; then
         AC_MSG_ERROR([faad Not found])
 fi
 

Attachment: signature.asc
Description: This is a digitally signed message part



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]