The configure check for fontconfig does not check if a new enough version of fontconfig is present, resulting in a compile error when only fontconfig 1 is installed.
diff --git a/configure.ac b/configure.ac index af1d25a..547d6f0 100644 --- a/configure.ac +++ b/configure.ac @@ -154,7 +154,7 @@ fi AC_SUBST(FREETYPE_CFLAGS) AC_SUBST(FREETYPE_LIBS) -PKG_CHECK_MODULES(FONTCONFIG, fontconfig) +PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.0.0) AC_ARG_ENABLE(splash-output, AC_HELP_STRING([--disable-splash-output],
Commited
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.