From: Bruno Haible Date: Sat, 24 Aug 2019 12:28:15 +0000 (+0200) Subject: crypto/gc-{md[24],rijndael} tests: Fix link error with --with-libgcrypt. X-Git-Tag: v1.0~4698 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=480329c98c6a8928a2b1c57e0f82e233086836f6;p=gnulib.git 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. --- diff --git a/ChangeLog b/ChangeLog index bafc87d6cc..a41fe24c8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2019-08-24 Bruno Haible + + 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 crypto/gc: Fix link error with --with-libgcrypt. 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@