mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Changelog:
===========
* Security bugfixes
- OpenSSL DLLs updated to version 3.5.5.
* Bugfixes
- Avoid attempting to fetch OCSP stapling for PSK-only
configuration sections.
* Features
- Merged applicable patches from Fedora and Debian:
- Use SOURCE_DATE_EPOCH for reproducible builds.
- Skip the OpenSSL version check when AUTOPKGTEST_TMP is set.
- Enable PrivateTmp in the stunnel.service template.
- Clarify the manual page for the "curves" option.
- Log client IP addresses on TLS errors.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
1.2 KiB
BlitzBasic
33 lines
1.2 KiB
BlitzBasic
SUMMARY = "Program for providing universal TLS/SSL tunneling service"
|
|
DESCRIPTION = "SSL encryption wrapper between remote client and local (inetd-startable) or remote server."
|
|
HOMEPAGE = "https://www.stunnel.org/"
|
|
SECTION = "net"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING.md;md5=1e4388407e163ad0cde171362f9a7b94"
|
|
|
|
DEPENDS = "autoconf-archive libnsl2 openssl"
|
|
|
|
SRC_URI = "https://stunnel.org/archive/5.x/${BP}.tar.gz \
|
|
file://fix-openssl-no-des.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "ec026f4fae4e0d25b940cc7a9451d925e359e7fd59e9edad20baea66ce45f263"
|
|
|
|
inherit autotools bash-completion pkgconfig
|
|
|
|
PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6 systemd', d)}"
|
|
|
|
PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
|
|
PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd"
|
|
|
|
EXTRA_OECONF += "--with-ssl='${STAGING_EXECPREFIXDIR}' --disable-fips"
|
|
|
|
# When cross compiling, configure defaults to nobody, but provides no option to change it.
|
|
EXTRA_OEMAKE += "DEFAULT_GROUP='nogroup'"
|
|
|
|
# stunnel3 is a Perl wrapper to allow use of the legacy stunnel 3.x commandline
|
|
# syntax with stunnel >= 4.05
|
|
PACKAGES =+ "stunnel3"
|
|
FILES:stunnel3 = "${bindir}/stunnel3"
|
|
RDEPENDS:stunnel3 += "${PN} perl"
|