diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-12 22:58:40 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-12 22:58:40 -0400 |
commit | 88e4fa03427252304dbbae078ce394269bfc71e9 (patch) | |
tree | 418ca8ac47caa4a836e4deeb2c5e51afa3dc23bc | |
parent | 0b248a5bd28ead6740cdd78f5a4d7e84a9435516 (diff) | |
download | xine-lib-88e4fa03427252304dbbae078ce394269bfc71e9.tar.gz xine-lib-88e4fa03427252304dbbae078ce394269bfc71e9.tar.bz2 |
Fix the sense of a check for with_external_libmad
-rw-r--r-- | m4/decoders.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4 index 665e93a27..5e3ec7b48 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -171,7 +171,7 @@ use internal ffmpeg. AC_MSG_RESULT([*** no usable version of libmad found, using internal copy ***]) fi fi - if test x"$with_external_libmad" != x"no"; then + if test x"$with_external_libmad" = x"no"; then AC_MSG_RESULT([Using included libmad support]) case "$host_or_hostalias" in i?86-* | k?-* | athlon-* | pentium*-) |