From: Collin Funk Date: Mon, 5 May 2025 01:06:02 +0000 (-0700) Subject: crypto/gc-arcfour tests: Fix link error when using --with-libgcrypt. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;ds=sidebyside;p=gnulib.git crypto/gc-arcfour tests: Fix link error when using --with-libgcrypt. * modules/crypto/gc-arcfour-tests (Makefile.am): Link the test program to @LIB_CRYPTO@. --- diff --git a/ChangeLog b/ChangeLog index 32f4385991..c3f6b29883 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-05-04 Collin Funk + + crypto/gc-arcfour tests: Fix link error when using --with-libgcrypt. + * modules/crypto/gc-arcfour-tests (Makefile.am): Link the test program + to @LIB_CRYPTO@. + 2025-05-04 Bruno Haible sockets: Fix typo in comment. diff --git a/modules/crypto/gc-arcfour-tests b/modules/crypto/gc-arcfour-tests index 3c22ae49d8..8e8e849c9d 100644 --- a/modules/crypto/gc-arcfour-tests +++ b/modules/crypto/gc-arcfour-tests @@ -8,4 +8,4 @@ configure.ac: Makefile.am: TESTS += test-gc-arcfour check_PROGRAMS += test-gc-arcfour -test_gc_arcfour_LDADD = $(LDADD) $(GETRANDOM_LIB) +test_gc_arcfour_LDADD = $(LDADD) @LIB_CRYPTO@ $(GETRANDOM_LIB)