mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://github.com/libevent/libevent/releases/tag/release-2.1.13-stable https://seclists.org/oss-sec/2026/q3/7 "[None of the GHSA's list CVE id's at this time. -alan-]" Switched to sha256 tarball hash provided by Github, drop sha1 hash. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# libevent
|
|
#
|
|
################################################################################
|
|
|
|
LIBEVENT_VERSION = 2.1.13
|
|
LIBEVENT_SITE = https://github.com/libevent/libevent/releases/download/release-$(LIBEVENT_VERSION)-stable
|
|
LIBEVENT_SOURCE = libevent-$(LIBEVENT_VERSION)-stable.tar.gz
|
|
LIBEVENT_INSTALL_STAGING = YES
|
|
LIBEVENT_LICENSE = BSD-3-Clause, OpenBSD
|
|
LIBEVENT_LICENSE_FILES = LICENSE
|
|
LIBEVENT_CPE_ID_VALID = YES
|
|
LIBEVENT_CONF_OPTS = \
|
|
--disable-libevent-regress \
|
|
--disable-samples
|
|
HOST_LIBEVENT_CONF_OPTS = \
|
|
--disable-libevent-regress \
|
|
--disable-samples \
|
|
--disable-openssl
|
|
|
|
define LIBEVENT_REMOVE_PYSCRIPT
|
|
rm $(TARGET_DIR)/usr/bin/event_rpcgen.py
|
|
endef
|
|
|
|
# libevent installs a python script to target - get rid of it if we
|
|
# don't have python support enabled
|
|
ifneq ($(BR2_PACKAGE_PYTHON3),y)
|
|
LIBEVENT_POST_INSTALL_TARGET_HOOKS += LIBEVENT_REMOVE_PYSCRIPT
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LIBEVENT_DEPENDENCIES += host-pkgconf openssl
|
|
LIBEVENT_CONF_OPTS += --enable-openssl
|
|
else
|
|
LIBEVENT_CONF_OPTS += --disable-openssl
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|