diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-27 19:32:57 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-27 19:32:57 +0100 |
commit | bc0e77e9e73b2bf687a690ef644e8a509c3c9e32 (patch) | |
tree | acc012ea48ca46efeff188a2e8381fd2d75005de | |
parent | d9350e4dd4710f78d6ea723667777451436efb7a (diff) | |
download | xine-lib-bc0e77e9e73b2bf687a690ef644e8a509c3c9e32.tar.gz xine-lib-bc0e77e9e73b2bf687a690ef644e8a509c3c9e32.tar.bz2 |
Fix internal libmad compilation in the absence of external libmad.
-rw-r--r-- | m4/decoders.m4 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4 index 95f7aab7e..08aa9e8e7 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -258,7 +258,7 @@ use internal ffmpeg. else AC_MSG_RESULT([Using included libmad support]) fi - if test x"$have_external_libmad" != x"no"; then + if test x"$have_external_libmad" != x"yes"; then case "$host_or_hostalias" in i?86-* | k?-* | athlon-* | pentium*-) AC_DEFINE([FPM_INTEL], 1, [Define to select libmad fixed point arithmetic implementation]) @@ -291,8 +291,6 @@ use internal ffmpeg. AC_DEFINE([FPM_DEFAULT], 1, [Define to select libmad fixed point arithmetic implementation]) ;; esac - fi - if test x"$have_external_libmad" != x"yes"; then LIBMAD_CFLAGS='-I$(top_srcdir)/contrib/libmad' LIBMAD_LIBS='$(top_builddir)/contrib/libmad/libmad.la' LIBMAD_DEPS='$(top_builddir)/contrib/libmad/libmad.la' |