Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

umurmur: patch for openssl3 #41991

Merged
merged 1 commit into from Feb 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions srcpkgs/umurmur/patches/remove-crypto-mem-ctrl.patch
@@ -0,0 +1,16 @@
From: https://git.alpinelinux.org/aports/plain/main/umurmur/remove-crypto-mem-ctrl.patch
dkwo marked this conversation as resolved.
Show resolved Hide resolved

fix build with OpenSSL 3

--- umurmur-0.2.20.orig/src/ssli_openssl.c
+++ umurmur-0.2.20/src/ssli_openssl.c
@@ -142,8 +142,6 @@

Log_info("Generating new server certificate.");

- CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
-
x509 = X509_new();
if (!x509)
goto err_out;

2 changes: 1 addition & 1 deletion srcpkgs/umurmur/template
@@ -1,7 +1,7 @@
# Template file for 'umurmur'
pkgname=umurmur
version=0.2.20
revision=2
revision=3
build_style=gnu-configure
configure_args="--enable-shmapi --with-ssl=openssl"
conf_files="/etc/umurmur/umurmur.conf"
Expand Down