Skip to content

Commit

Permalink
configure: try to fix the failing taglib checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Harrison committed Apr 26, 2013
1 parent d6b0ae4 commit f434ac6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mythtv/configure
Expand Up @@ -4885,9 +4885,11 @@ if enabled taglib; then
echo "Can't find taglib-config. Assuming 1.6 or later."
taglib_minor="6"
fi
tagprefix=`taglib-config --prefix`
tagincludes="-I${tagprefix}/include"
fi

if test $taglib_minor -lt 6 || ! check_lib_cpp taglib/fileref.h TagLib::FileRef -ltag -lz ; then
if test $taglib_minor -lt 6 || ! check_lib_cpp taglib/fileref.h TagLib::FileRef -ltag -lz $tagincludes ; then
die "ERROR: cannot find taglib 1.6 or later."
fi
fi
Expand Down

0 comments on commit f434ac6

Please sign in to comment.