From 41106e7993cc699ba7d9dc5884d40a4c5091b8c4 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Mon, 9 Nov 2015 17:15:17 +0100 Subject: [PATCH] pki: Explicitly link against -lpthread and -ldl if required We already do this for charon, as some toolchains require an explicit link even if libstrongswan already depends on it. --- src/pki/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pki/Makefile.am b/src/pki/Makefile.am index a3da0ab04f..261e41c16b 100644 --- a/src/pki/Makefile.am +++ b/src/pki/Makefile.am @@ -17,7 +17,10 @@ pki_SOURCES = pki.c pki.h command.c command.h \ commands/signcrl.c \ commands/verify.c -pki_LDADD = $(top_builddir)/src/libstrongswan/libstrongswan.la +pki_LDADD = \ + $(top_builddir)/src/libstrongswan/libstrongswan.la \ + $(PTHREADLIB) $(DLLIB) + pki.o : $(top_builddir)/config.status AM_CPPFLAGS = \