package/ngircd: add optional support for gnutls
openssl and gnutls can not be enabled at the same time: https://github.com/ngircd/ngircd/blob/master/configure.ng#L449 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
8bda664765
commit
9131507795
@ -16,6 +16,12 @@ NGIRCD_CONF_OPTS += --with-openssl=$(STAGING_DIR)/usr
|
||||
NGIRCD_DEPENDENCIES += 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
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
Loading…
Reference in New Issue
Block a user