mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 13:32:29 +00:00
configure.ac: save libs correctly when checking mad
Original commit message from CVS: * configure.ac: save libs correctly when checking mad
This commit is contained in:
parent
121a598de8
commit
8329a17922
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-04-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
save libs correctly when checking mad
|
||||||
|
|
||||||
2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* ext/mad/gstid3tag.c: (plugin_init):
|
* ext/mad/gstid3tag.c: (plugin_init):
|
||||||
|
|
|
@ -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")
|
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad")
|
||||||
if test "x$HAVE_MAD" = "xyes"; then
|
if test "x$HAVE_MAD" = "xyes"; then
|
||||||
HAVE_MAD="no"
|
HAVE_MAD="no"
|
||||||
save_libs=$LIBS
|
save_LIBS=$LIBS
|
||||||
LIBS="-lz"
|
LIBS="-lz"
|
||||||
AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz")
|
AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz")
|
||||||
LIBS=$save_LIBS
|
LIBS=$save_LIBS
|
||||||
|
|
Loading…
Reference in a new issue