mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
Put the back check for the FLAC library. This looks to have been accidentally removed when the sidplay one was added.
Original commit message from CVS: Put the back check for the FLAC library. This looks to have been accidentally removed when the sidplay one was added.
This commit is contained in:
parent
67b62497ca
commit
741c4985eb
1 changed files with 5 additions and 0 deletions
|
@ -568,6 +568,11 @@ AC_CHECK_HEADER(mpeg2dec/mpeg2.h, :, HAVE_MPEG2DEC=no)
|
|||
dnl Check for sidplay
|
||||
AC_PATH_LIBSIDPLAY
|
||||
|
||||
dnl Check for flac
|
||||
AC_MSG_CHECKING(FLAC library)
|
||||
AC_CHECK_LIB(FLAC, FLAC__stream_decoder_new, HAVE_FLAC=yes, HAVE_FLAC=no, -lm)
|
||||
AC_CHECK_HEADER(FLAC/all.h, :, HAVE_FLAC=no)
|
||||
|
||||
dnl Check for librtp
|
||||
AC_MSG_CHECKING(rtp library)
|
||||
AC_CHECK_LIB(rtp, rtp_packet_new_take_data, HAVE_LIBRTP=yes, HAVE_LIBRTP=no, $GLIB_LIBS $GLIB_CFLAGS)
|
||||
|
|
Loading…
Reference in a new issue