diff options
author | Benjamin Otte <otte@gnome.org> | 2004-04-14 15:42:03 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-04-14 15:42:03 +0000 |
commit | a8fe004ad2ec1b657004f65d9b97b32bd049d135 (patch) | |
tree | 8add40c9b5202220156b00eefa962cf89701f8e8 /configure.ac | |
parent | db9d8d6ee5734592685bdad647c5732e276746bf (diff) |
configure.ac: save libs correctly when checking mad
Original commit message from CVS:
* configure.ac:
save libs correctly when checking mad
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b83f5bf6..18e8de7e 100644 --- a/configure.ac +++ b/configure.ac @@ -1164,7 +1164,7 @@ GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [ AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad") if test "x$HAVE_MAD" = "xyes"; then HAVE_MAD="no" - save_libs=$LIBS + save_LIBS=$LIBS LIBS="-lz" AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz") LIBS=$save_LIBS |