mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Fix the download site, which seems to be changed after a new release. Use the more permanent /archive. Fixes: - https://autobuild.buildroot.net/results/a1a/a1a88bea6fdf5ae28d813f0a12d08e504b2fad06/ - https://autobuild.buildroot.net/results/b3d/b3d0588fbc02ede6d5f82fb5d2fefcf610a69299/ Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Julien Olivain <ju.o@free.fr>
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# stunnel
|
|
#
|
|
################################################################################
|
|
|
|
STUNNEL_VERSION = 5.78
|
|
STUNNEL_SITE = https://www.stunnel.org/archive/5.x
|
|
STUNNEL_DEPENDENCIES = host-pkgconf openssl
|
|
STUNNEL_CONF_OPTS = --with-ssl=$(STAGING_DIR)/usr --with-threads=fork \
|
|
--disable-libwrap
|
|
STUNNEL_CONF_ENV = \
|
|
ax_cv_check_cflags___fstack_protector=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no) \
|
|
LIBS=`$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
|
STUNNEL_LICENSE = GPL-2.0+
|
|
STUNNEL_LICENSE_FILES = COPYING.md COPYRIGHT.md
|
|
STUNNEL_CPE_ID_VENDOR = stunnel
|
|
STUNNEL_SELINUX_MODULES = stunnel
|
|
|
|
ifeq ($(BR2_INIT_SYSTEMD),y)
|
|
STUNNEL_DEPENDENCIES += systemd
|
|
else
|
|
STUNNEL_CONF_OPTS += --disable-systemd
|
|
endif
|
|
|
|
define STUNNEL_INSTALL_CONF
|
|
$(INSTALL) -m 0644 -D $(@D)/tools/stunnel.conf \
|
|
$(TARGET_DIR)/etc/stunnel/stunnel.conf
|
|
rm -f $(TARGET_DIR)/etc/stunnel/stunnel.conf-sample
|
|
endef
|
|
|
|
STUNNEL_POST_INSTALL_TARGET_HOOKS += STUNNEL_INSTALL_CONF
|
|
|
|
define STUNNEL_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/stunnel/S50stunnel $(TARGET_DIR)/etc/init.d/S50stunnel
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|