fix id3tag detection

This commit is contained in:
zmike 2014-05-07 15:36:15 -04:00
parent fc0e3e7658
commit 036a39e91d
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ AC_ARG_ENABLE([module-id3-loader],
[want_id3_loader=$enableval], [])
if test -n "$want_id3_loader" ; then
PKG_CHECK_MODULES([ID3], [id3tag], [have_id3=yes], [have_id3=no])
if text "x$have_id3" != "xyes" ; then
if test "x$have_id3" != "xyes" ; then
AC_MSG_ERROR([libid3tag not found])
fi
want_id3_loader=yes