From f12fcd907903742bde3ebb7ffef244c92d6d1611 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Mon, 26 Nov 2018 13:05:26 +0100 Subject: [PATCH] w32: Fix linkage of gpg-pair-tool * tools/Makefile.am (gpg_pair_tool_LDADD): Add W32SOCKLIBS. -- This is required because parts of libcommon depend on ws2_32. --- tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 196bf5210..e4fd81c5d 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -174,7 +174,7 @@ gpg_pair_tool_SOURCES = \ gpg_pair_tool_CFLAGS = $(GPG_ERROR_CFLAGS) $(INCICONV) gpg_pair_tool_LDADD = $(libcommon) \ $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \ - $(LIBINTL) $(LIBICONV) + $(LIBINTL) $(LIBICONV) $(W32SOCKLIBS) # Make sure that all libs are build before we use them. This is