From: Gustavo Zacarias Date: Tue, 13 Jan 2015 23:17:02 +0000 (-0300) Subject: rsyslog: enable more basic features X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0e7733e90e18a87dd8248b3284242e8e736a4140;p=buildroot.git rsyslog: enable more basic features Enable all of the basic modules that don't require any dependencies. Reasoning is simple, if someone wants rsyslog over a smaller busybox logger or sysklogd it's probably looking for features. [Thomas: fix indentation.] Signed-off-by: Gustavo Zacarias Signed-off-by: Thomas Petazzoni --- diff --git a/package/rsyslog/rsyslog.mk b/package/rsyslog/rsyslog.mk index fb5249c044..a45111d085 100644 --- a/package/rsyslog/rsyslog.mk +++ b/package/rsyslog/rsyslog.mk @@ -10,7 +10,12 @@ RSYSLOG_LICENSE = GPLv3 LGPLv3 Apache-2.0 RSYSLOG_LICENSE_FILES = COPYING COPYING.LESSER COPYING.ASL20 RSYSLOG_DEPENDENCIES = zlib libestr liblogging json-c host-pkgconf RSYSLOG_CONF_ENV = ac_cv_prog_cc_c99='-std=c99' -RSYSLOG_CONF_OPTS = --disable-generate-man-pages +RSYSLOG_PLUGINS = imdiag imfile impstats imptcp \ + mmanon mmaudit mmfields mmjsonparse mmpstrucdata mmsequence mmutf8fix \ + mail omprog omruleset omstdout omuxsock \ + pmaixforwardedfrom pmciscoios pmcisconames pmlastmsg pmsnare +RSYSLOG_CONF_OPTS = --disable-generate-man-pages \ + $(foreach x,$(call qstrip,$(RSYSLOG_PLUGINS)),--enable-$(x)) # Build after BusyBox ifeq ($(BR2_PACKAGE_BUSYBOX),y)