diff options
author | Stef Walter <stef@thewalter.net> | 2013-07-10 14:28:15 +0200 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2013-07-10 15:07:55 +0200 |
commit | edd04b610c1c83f26ed036569ad95b89a41fc558 (patch) | |
tree | 7ec7040b9ef612b36a399592c018c0a131ddfa75 /trust/Makefile.am | |
parent | eca5a6e491f5f85ba1f06afcea3177c3442ae557 (diff) |
Add support for using freebl3 for SHA1 and MD5 hashing
Since we don't want to link freebl3 to libp11-kit.so where it isn't
needed, move the SHA-1 and MD5 digest functionality to the trust/
directory.
Diffstat (limited to 'trust/Makefile.am')
-rw-r--r-- | trust/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/trust/Makefile.am b/trust/Makefile.am index 58e4889..ca7e2d7 100644 --- a/trust/Makefile.am +++ b/trust/Makefile.am @@ -31,6 +31,7 @@ libtrust_data_la_SOURCES = \ MODULE_SRCS = \ builder.c builder.h \ + digest.c digest.h \ index.c index.h \ parser.c parser.h \ persist.c persist.h \ @@ -56,6 +57,7 @@ p11_kit_trust_la_LIBADD = \ $(top_builddir)/common/libp11-library.la \ $(top_builddir)/common/libp11-common.la \ $(LIBTASN1_LIBS) \ + $(HASH_LIBS) \ $(NULL) p11_kit_trust_la_LDFLAGS = \ @@ -81,6 +83,7 @@ trust_LDADD = \ $(top_builddir)/common/libp11-tool.la \ $(LTLIBINTL) \ $(LIBTASN1_LIBS) \ + $(HASH_LIBS) \ $(NULL) trust_CFLAGS = \ @@ -93,6 +96,7 @@ trust_SOURCES = \ anchor.c anchor.h \ parser.c parser.h \ persist.c persist.h \ + digest.c digest.h \ extract.c extract.h \ extract-info.c \ extract-jks.c \ |