Files
nixpkgs/pkgs/os-specific/linux/fuse/fuse2-gettext-0.25.patch
Alyssa Ross 243fac58b4 fuse: fix build
configure.ac uses the AM_ICONV macro, which is part of gettext.  The
patch makes autoreconf recognise the project as using gettext, which
has the added benefit of meaning we no longer need to run makeconf.sh,
and can rely on just the autoreconf from autoreconfHook.

Previously, we were actually doing autoreconf twice; once from the
hook and once from the script, which I doubt was intentional…
2025-06-29 18:12:44 +02:00

14 lines
371 B
Diff

diff --git a/configure.ac b/configure.ac
index 9946a0e..4621771 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,6 +4,8 @@ AC_PREREQ(2.59d)
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([foreign])
+AM_GNU_GETTEXT_VERSION([0.25])
+AM_GNU_GETTEXT([external])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)])
AC_CONFIG_HEADERS(include/config.h)