mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2025-03-11 06:37:31 +00:00
abuild-tar: load engines on openssl < 3
This commit is contained in:
parent
dc99ce423a
commit
272c1e4780
@ -376,6 +376,10 @@ int main(int argc, char **argv)
|
||||
int ndx;
|
||||
|
||||
OpenSSL_add_all_algorithms();
|
||||
#if defined(OPENSSL_VERSION_MAJOR) && OPENSSL_VERSION_MAJOR < 3
|
||||
ENGINE_load_builtin_engines();
|
||||
ENGINE_register_all_complete();
|
||||
#endif
|
||||
|
||||
while (getopt_long(argc, argv, "", options, &ndx) != -1) {
|
||||
if (ndx == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user