added check for FAAC as well

This commit is contained in:
darkeye 2005-10-22 10:33:10 +00:00
parent abc24f7d2b
commit 02870bc21a
1 changed files with 4 additions and 2 deletions

View File

@ -152,8 +152,10 @@ fi
dnl-----------------------------------------------------------------------------
dnl make sure at least one of lame and vorbis present
dnl-----------------------------------------------------------------------------
if test "x${LAME_LDFLAGS}" = "x" -a "x${VORBIS_LDFLAGS}" = "x" ; then
AC_MSG_ERROR( [neither lame nor Ogg Vorbis configured])
if test "x${LAME_LDFLAGS}" = "x"
-a "x${VORBIS_LDFLAGS}" = "x"
-a "x${FAAC_LDFLAGS}" = "x"; then
AC_MSG_ERROR([neither lame, Ogg Vorbis nor faac configured])
fi