]> Savannah Git Hosting - gnulib.git/commitdiff
crypto/gc-arcfour tests: Fix link error when using --with-libgcrypt. master
authorCollin Funk <collin.funk1@gmail.com>
Mon, 5 May 2025 01:06:02 +0000 (18:06 -0700)
committerCollin Funk <collin.funk1@gmail.com>
Mon, 5 May 2025 01:06:02 +0000 (18:06 -0700)
* modules/crypto/gc-arcfour-tests (Makefile.am): Link the test program
to @LIB_CRYPTO@.

ChangeLog
modules/crypto/gc-arcfour-tests

index 32f43859915abf917b5d12935d3ff84c3a5aa7c9..c3f6b2988345dba2d7457544b17cc8400aa737db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2025-05-04  Collin Funk  <collin.funk1@gmail.com>
+
+       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  <bruno@clisp.org>
 
        sockets: Fix typo in comment.
index 3c22ae49d8f31b2049736720d25c1e7cf9ea2ed5..8e8e849c9d3ce0acfe0db360114d941af277ebc8 100644 (file)
@@ -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)