stunnel: rebuild against OpenSSL

This commit is contained in:
John 2021-01-06 18:18:49 +01:00
parent 1651093523
commit a48159f8cf
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
# Template file for 'stunnel' # Template file for 'stunnel'
pkgname=stunnel pkgname=stunnel
version=5.46 version=5.46
revision=4 revision=5
build_style=gnu-configure build_style=gnu-configure
configure_args="--enable-ipv6 --with-ssl=${XBPS_CROSS_BASE}/usr" configure_args="--enable-ipv6 --with-ssl=${XBPS_CROSS_BASE}/usr"
hostmakedepends="perl" hostmakedepends="perl"
makedepends="libressl-devel" makedepends="openssl-devel"
checkdepends="nmap procps-ng" checkdepends="nmap procps-ng"
short_desc="SSL encryption wrapper" short_desc="SSL encryption wrapper"
maintainer="Toyam Cox <Vaelatern@voidlinux.org>" maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
@ -34,7 +34,7 @@ post_install() {
# One thing OpenBSD does that we don't do here is add a _stunnel user/group and # One thing OpenBSD does that we don't do here is add a _stunnel user/group and
# modify the configuration samples to chroot and use this by default. # modify the configuration samples to chroot and use this by default.
# As of 5.38 the signature expected for the CRYPTO_set_mem_functions seems to # As of 5.38 the signature expected for the CRYPTO_set_mem_functions seems to
# be out of line with what libressl provides. # be out of line with what openssl provides.
# LibreSSL wants 'void (*)(void *)' but argument is of type 'void (*)(void *, const char *, int)' # LibreSSL wants 'void (*)(void *)' but argument is of type 'void (*)(void *, const char *, int)'
# This is probably not a security problem. EDIT: Well, it would break. Badly. # This is probably not a security problem. EDIT: Well, it would break. Badly.
# -- # --