configure.ac: AC_HAVE_LIBRARY has been depreciated, move to AC_CHECK_LIB
This commit is contained in:
parent
7dfbdef505
commit
8459f27312
|
@ -1000,19 +1000,18 @@ MPD_AUTO_PRE(sidplay, [sidplay decoder plugin], [No C++ compiler found])
|
|||
if test x$enable_sidplay != xno; then
|
||||
# we're not using pkg-config here
|
||||
# because libsidplay2's .pc file requires libtool
|
||||
AC_HAVE_LIBRARY(sidplay2, [found_sidplay=yes], [found_sidplay=no])
|
||||
AC_CHECK_LIB([sidplay2],[main],[found_sidplay=yes],[found_sidplay=no],[])
|
||||
|
||||
MPD_AUTO_PRE(sidplay, [sidplay decoder plugin],
|
||||
[libsidplay2 not found])
|
||||
fi
|
||||
|
||||
if test x$enable_sidplay != xno; then
|
||||
# can't use AC_HAVE_LIBRARY here, because the dash in the
|
||||
# library name triggers an autoconf bug
|
||||
AC_CHECK_LIB(resid-builder, main,
|
||||
AC_CHECK_LIB([resid-builder], [main],
|
||||
[found_sidplay=yes], [found_sidplay=no])
|
||||
|
||||
if test x$found_sidplay = xyes; then
|
||||
AC_HAVE_LIBRARY(sidutils,, [found_sidplay=no])
|
||||
AC_CHECK_LIB([sidutils],[main],[],[found_sidplay=no],[])
|
||||
fi
|
||||
|
||||
MPD_AUTO_RESULT(sidplay, [sidplay decoder plugin],
|
||||
|
|
Loading…
Reference in New Issue