git-compat-util: really support openssl as a source of entropy
commit5b52d9f15e311b82ee5f5c5ed9927c65b63731bf
authorCarlo Marcelo Arenas Belón <carenas@gmail.com>
Tue, 5 Apr 2022 04:28:26 +0000 (4 21:28 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 6 Apr 2022 16:04:50 +0000 (6 09:04 -0700)
treea4eb036738b7ca97fb2862e32b7676007353634b
parent47efda967cfd4ef9d39de149e1e3654b051e5d19
git-compat-util: really support openssl as a source of entropy

05cd988dce5 (wrapper: add a helper to generate numbers from a CSPRNG,
2022-01-17), configure openssl as the source for entropy in NON-STOP
but doesn't add the needed header or link options.

Since the only system that is configured to use openssl as a source
of entropy is NON-STOP, add the header unconditionally, and -lcrypto
to the list of external libraries.

An additional change is required to make sure a NO_OPENSSL=1 build
will be able to work as well (tested on Linux with a modified value
of CSPRNG_METHOD = openssl), and the more complex logic that allows
for compatibility with APPLE_COMMON_CRYPTO or allowing for simpler
ways to link (without libssl) has been punted for now.

Reported-by: Randall Becker <rsbecker@nexbridge.com>
Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile
git-compat-util.h
imap-send.c