diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-11-08 18:15:55 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-11-08 18:35:11 +0100 |
commit | b12ad862c1b3c56797a0885930e36f5d6be9dd67 (patch) | |
tree | b8126d1f448053e76c35ac520cbb97b8e63bea7e /src/checksum | |
parent | 89bad63bacdc1143b112f3c69a661d3c0b5542bf (diff) | |
download | strongswan-b12ad862c1b3c56797a0885930e36f5d6be9dd67.tar.bz2 strongswan-b12ad862c1b3c56797a0885930e36f5d6be9dd67.tar.xz |
Calculate checksums for libsimaka and libtls.
These are currently not checked though. And because they don't define a
<libname>_init function an warning is reported when the checksum is
calculated.
Diffstat (limited to 'src/checksum')
-rw-r--r-- | src/checksum/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
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 |