From: Adrien Decostre Date: Wed, 15 Jun 2016 13:17:48 +0000 (+0200) Subject: rsyslog: add optional gnutls support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3984a4e306acdeeba9bc2c326003852eeb1ed295;p=buildroot.git rsyslog: add optional gnutls support [Peter: drop explicit option and handle like other dependencies] Signed-off-by: Adrien Decostre Signed-off-by: Peter Korsgaard Signed-off-by: Thomas Petazzoni --- diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk index 40e3b33825..18a57372fd 100644 --- a/package/rsyslog/rsyslog.mk +++ b/package/rsyslog/rsyslog.mk @@ -22,6 +22,13 @@ ifeq ($(BR2_PACKAGE_BUSYBOX),y) RSYSLOG_DEPENDENCIES += busybox endif +ifeq ($(BR2_PACKAGE_GNUTLS),y) +RSYSLOG_DEPENDENCIES += gnutls +RSYSLOG_CONF_OPTS += --enable-gnutls +else +RSYSLOG_CONF_OPTS += --disable-gnutls +endif + ifeq ($(BR2_PACKAGE_LIBEE),y) RSYSLOG_DEPENDENCIES += libee endif