mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
092b6b68a0
gnupg 2.1.14 fails to compile under OS X due to a missing -lintl flag [1]. This was fixed in commit c49c43d7 in the gnupg repository [2], which adds the flag to Makefile.am. This commit adds the flag to Makefile.in. [1] https://lists.gnupg.org/pipermail/gnupg-devel/2016-July/031354.html [2] https://lists.gnupg.org/pipermail/gnupg-devel/2016-July/031362.html Fixes #17617.
12 lines
355 B
Diff
12 lines
355 B
Diff
--- a/tests/gpgscm/Makefile.in
|
|
+++ b/tests/gpgscm/Makefile.in
|
|
@@ -457,7 +457,7 @@
|
|
scheme-config.h opdefines.h scheme.c scheme.h scheme-private.h
|
|
|
|
gpgscm_LDADD = $(LDADD) $(common_libs) \
|
|
- $(NETLIBS) $(LIBICONV) $(LIBREADLINE) \
|
|
+ $(NETLIBS) $(LIBICONV) $(LIBREADLINE) $(LIBINTL) \
|
|
$(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS)
|
|
|
|
t_child_SOURCES = t-child.c
|