diff options
author | Andy Wingo <wingo@pobox.com> | 2002-02-10 15:12:25 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-02-10 15:12:25 +0000 |
commit | 9add402512b6e9583be43d85aaa69ba4f2ee2bf4 (patch) | |
tree | 29297ee6862f8bd3e53ae51ef8262df589c6a995 /configure.ac | |
parent | d02cd6b3020fc184f291c07426d158e13a99f8ca (diff) | |
download | gst-plugins-bad-9add402512b6e9583be43d85aaa69ba4f2ee2bf4.tar.gz gst-plugins-bad-9add402512b6e9583be43d85aaa69ba4f2ee2bf4.tar.bz2 gst-plugins-bad-9add402512b6e9583be43d85aaa69ba4f2ee2bf4.zip |
fix mad check, add defaut options properly
Original commit message from CVS:
fix mad check, add defaut options properly
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 18906f73..01311da9 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,7 @@ AC_SUBST(GST_LIBVERSION) dnl Add parameters for aclocal dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL) -ACLOCAL="cat m4/*.m4 >acinclude.m4;$ACLOCAL $ACLOCAL_FLAGS" +ACLOCAL="cat m4/*.m4>acinclude.m4;$ACLOCAL $ACLOCAL_FLAGS" AM_MAINTAINER_MODE @@ -458,7 +458,10 @@ GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [ if test "x$HAVE_MAD" = "xyes"; then # installed with mad >= 0.14 HAVE_MAD="no" + save_libs=$LIBS + LIBS="-lz" AC_CHECK_LIB(id3tag, id3_tag_query, HAVE_MAD="yes" MAD_LIBS="$MAD_LIBS -lid3tag") + LIBS=$save_libs fi ]) AC_SUBST(MAD_LIBS) |