53f92e65ed
- Fix CVE-2020-14148: The Server-Server protocol implementation in
ngIRCd before 26~rc2 allows an out-of-bounds access, as demonstrated
by the IRC_NJOIN() function.
- Fix a static build failure with openssl thanks to
ad86a41eee
- Update indentation in hash file (two spaces)
Fixes:
- http://autobuild.buildroot.org/results/078a7afc432786316a1d2ea03f96444ff741b942
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
41 lines
1022 B
Makefile
41 lines
1022 B
Makefile
################################################################################
|
|
#
|
|
# ngircd
|
|
#
|
|
################################################################################
|
|
|
|
NGIRCD_VERSION = 26
|
|
NGIRCD_SOURCE = ngircd-$(NGIRCD_VERSION).tar.xz
|
|
NGIRCD_SITE = https://arthur.barton.de/pub/ngircd
|
|
NGIRCD_LICENSE = GPL-2.0+
|
|
NGIRCD_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
|
NGIRCD_CONF_OPTS += --with-pam=$(STAGING_DIR)/usr
|
|
NGIRCD_DEPENDENCIES += linux-pam
|
|
else
|
|
NGIRCD_CONF_OPTS += --without-pam
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
NGIRCD_CONF_OPTS += --with-openssl
|
|
NGIRCD_DEPENDENCIES += host-pkgconf openssl
|
|
else
|
|
NGIRCD_CONF_OPTS += --without-openssl
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
NGIRCD_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr
|
|
NGIRCD_DEPENDENCIES += gnutls
|
|
else
|
|
NGIRCD_CONF_OPTS += --without-gnutls
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
NGIRCD_CONF_OPTS += --with-zlib=$(STAGING_DIR)/usr
|
|
NGIRCD_DEPENDENCIES += zlib
|
|
else
|
|
NGIRCD_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|