Source: fontconfig Version: 2.15.0-2.3 Tags: ftbfs fixed-upstream User: [email protected] Usertags: rebootstrap
fontconfig fails to build from source on musl, because it does not correctly detect availability of gettext. As a result, it does not generate locales and fails dh_install due to missing files. The root cause is a bug in the gettext detection macro. The problem is fixed there, but fontconfig selects an older version that still contains the problem. Please update the version of the gettext macro to fix the detection. I'm attaching a patch for your convenience. Helmut
--- a/configure.ac +++ b/configure.ac @@ -118,6 +118,7 @@ AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package]) +AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8]) AM_GNU_GETTEXT_VERSION([0.19.7]) AM_GNU_GETTEXT([external])

