Source: findutils
Version: 4.9.0-2
Tags: patch upstream
User: helm...@debian.org
Usertags: rebootstrap

findutils fails to build from source on musl-any-any, because it fails
to detect gettext availability. The cause is the use of outdated gettext
macros in configure.ac. Updating to newer versions fixes the issue.
Please consider applying the attached patch.

Helmut
--- a/configure.ac
+++ b/configure.ac
@@ -278,7 +278,8 @@

 dnl internationalization macros
 AM_GNU_GETTEXT([external])
-AM_GNU_GETTEXT_VERSION([0.19.3])
+AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.8])
+AM_GNU_GETTEXT_VERSION([0.19.6])

 dnl regextype.c and regexprops.c are designed to be usable outside findutils,
 dnl but findutils doesn't want to support all the regex types in gnulib,

Reply via email to