Comment 6 for bug 281561

Revision history for this message
James Westby (james-w) wrote :

libtunepimp is failing because

    dnl Check for MAD decoder lib for mp3 support
    AC_CHECK_LIB(mad,mad_version,
                 AC_DEFINE(HAVE_LIBMAD,1,[MP3 Decode Support])
                 TP_PLUGINS="$TP_PLUGINS mp3"
                 with_mp3=yes,
                 echo "*"
                 echo "* The MAD mp3 decoder is not installed. Please download "
                 echo "* the decoder from http://www.mars.org/home/rob/proj/mpeg"
                 echo "* to include MP3 TRM generation capabilities."
                 echo "*"
                 with_mp3=no
                 ,-lm)

is reporting that libmad doesn't have "mad_version", but only on powerpc.

I'm a bit stumped as to why without access to a powerpc machine to look
at the config.log.

Thanks,

James