From b12ad862c1b3c56797a0885930e36f5d6be9dd67 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 8 Nov 2011 18:15:55 +0100 Subject: [PATCH] Calculate checksums for libsimaka and libtls. These are currently not checked though. And because they don't define a _init function an warning is reported when the checksum is calculated. --- src/checksum/Makefile.am | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/checksum/Makefile.am b/src/checksum/Makefile.am index ae9690b0b..036a63715 100644 --- a/src/checksum/Makefile.am +++ b/src/checksum/Makefile.am @@ -39,6 +39,10 @@ if !MONOLITHIC AM_CFLAGS += -DH_PLUGINS=\""${h_plugins}\"" endif endif + +if USE_TLS + deps += $(top_builddir)/src/libtls/libtls.la + libs += $(DESTDIR)$(ipseclibdir)/libtls.so endif if USE_LIBTNCCS @@ -47,7 +51,8 @@ if USE_LIBTNCCS endif if USE_SIMAKA - checksum_builder_LDADD += $(top_builddir)/src/libsimaka/libsimaka.la + deps += $(top_builddir)/src/libsimaka/libsimaka.la + libs += $(DESTDIR)$(ipseclibdir)/libsimaka.so endif if USE_CHARON