Make libz static when building static libs

This commit is contained in:
Ron Pedde 2006-07-24 19:00:26 +00:00
parent dd5b5acdac
commit 0266e13503

View File

@ -270,7 +270,7 @@ AC_CHECK_LIB(id3tag,id3_file_open,,echo "no libid3tag. Try --with-id3tag=dir";ex
LIBS=$OLDLIBS LIBS=$OLDLIBS
if test "$STATIC_LIBS" != "no"; then if test "$STATIC_LIBS" != "no"; then
LIBS="${LIBS} ${STATIC_LIBS}/libid3tag.a -lz" LIBS="${LIBS} ${STATIC_LIBS}/libid3tag.a ${STATIC_LIBS}/libz.a"
else else
LIBS="${LIBS} -lid3tag -lz" LIBS="${LIBS} -lid3tag -lz"
fi fi