Files
nixpkgs/pkgs/by-name/db/dbus-test-runner/use-regular-gettext.patch
Grimmauld 7a0af8fd4a dbus-test-runner: use regular gettext to fix build
`glib` gettext is deprecated and currently broken.
This fixes the build by using regular gettext instead.
2025-07-13 12:03:32 +02:00

13 lines
352 B
Diff

--- a/configure.ac
+++ b/configure.ac
@@ -46,7 +46,8 @@ GETTEXT_PACKAGE=dbus-test-runner
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Name of the default gettext domain])
-AM_GLIB_GNU_GETTEXT
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION([0.21])
###########################
# gcov coverage reporting