Emit a warning if libFLAC is not found.

This commit is contained in:
Moritz Bunkus 2003-11-16 20:37:14 +00:00
parent e9ff16769d
commit 72c624fffd

View File

@ -280,6 +280,10 @@ dnl
"$FLAC_LIBS")
if test "$flac_found" = "yes"; then
AC_CHECK_HEADERS(FLAC/format.h, , flac_found=no)
else
echo '*** WARNING:'
echo '*** libflac was not found. mkvmerge will be built'
echo '*** without support for FLAC tracks.'
fi
AC_SUBST(FLAC_LIBS)