summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-08-24 14:28:15 +0200
committerBruno Haible <bruno@clisp.org>2019-08-24 14:28:15 +0200
commit480329c98c6a8928a2b1c57e0f82e233086836f6 (patch)
tree732dcb3990c08fea65ede0adfd7835bae89e090f
parent31e6cd88898a5742b53cf96eb53f7d2ff139f9af (diff)
downloadgnulib-480329c98c6a8928a2b1c57e0f82e233086836f6.tar.gz
crypto/gc-{md[24],rijndael} tests: Fix link error with --with-libgcrypt.
* modules/crypto/gc-md2-tests (test_gc_md2_LDADD): New variable. * modules/crypto/gc-md4-tests (test_gc_md4_LDADD): New variable. * modules/crypto/gc-rijndael-tests (test_gc_rijndael_LDADD): New variable.
-rw-r--r--ChangeLog8
-rw-r--r--modules/crypto/gc-md2-tests1
-rw-r--r--modules/crypto/gc-md4-tests1
-rw-r--r--modules/crypto/gc-rijndael-tests1
4 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bafc87d6cc..a41fe24c8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2019-08-24 Bruno Haible <bruno@clisp.org>
+ crypto/gc-{md[24],rijndael} tests: Fix link error with --with-libgcrypt.
+ * modules/crypto/gc-md2-tests (test_gc_md2_LDADD): New variable.
+ * modules/crypto/gc-md4-tests (test_gc_md4_LDADD): New variable.
+ * modules/crypto/gc-rijndael-tests (test_gc_rijndael_LDADD): New
+ variable.
+
+2019-08-24 Bruno Haible <bruno@clisp.org>
+
crypto/gc: Fix link error with --with-libgcrypt.
* m4/gc.m4 (gl_GC): Set LIB_CRYPTO to the value found by the
AC_LIB_HAVE_LINKFLAGS invocation.
diff --git a/modules/crypto/gc-md2-tests b/modules/crypto/gc-md2-tests
index 759d3d5503..74ccdf03cd 100644
--- a/modules/crypto/gc-md2-tests
+++ b/modules/crypto/gc-md2-tests
@@ -8,3 +8,4 @@ configure.ac:
Makefile.am:
TESTS += test-gc-md2
check_PROGRAMS += test-gc-md2
+test_gc_md2_LDADD = $(LDADD) @LIB_CRYPTO@
diff --git a/modules/crypto/gc-md4-tests b/modules/crypto/gc-md4-tests
index c6bd64a0f8..b2a4ce1a12 100644
--- a/modules/crypto/gc-md4-tests
+++ b/modules/crypto/gc-md4-tests
@@ -8,3 +8,4 @@ configure.ac:
Makefile.am:
TESTS += test-gc-md4
check_PROGRAMS += test-gc-md4
+test_gc_md4_LDADD = $(LDADD) @LIB_CRYPTO@
diff --git a/modules/crypto/gc-rijndael-tests b/modules/crypto/gc-rijndael-tests
index 1bf243336c..c7aaee2d63 100644
--- a/modules/crypto/gc-rijndael-tests
+++ b/modules/crypto/gc-rijndael-tests
@@ -8,3 +8,4 @@ configure.ac:
Makefile.am:
TESTS += test-gc-rijndael
check_PROGRAMS += test-gc-rijndael
+test_gc_rijndael_LDADD = $(LDADD) @LIB_CRYPTO@