diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-10-04 18:42:52 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-10-04 18:42:52 +0200 |
commit | 80466e20d19a5fcf7b9d8798b3d7afb42f7e98d7 (patch) | |
tree | 800c151b18002cd599ca983ca92f0f6b4677f523 /configure.ac | |
parent | d855b1df7b8c4a11a9c6cc801526fafb9ce1aec6 (diff) | |
download | rsyslog-80466e20d19a5fcf7b9d8798b3d7afb42f7e98d7.tar.gz rsyslog-80466e20d19a5fcf7b9d8798b3d7afb42f7e98d7.tar.bz2 rsyslog-80466e20d19a5fcf7b9d8798b3d7afb42f7e98d7.zip |
remove cust1 dummy plugin from build system
Thanks to Michael Biebl for identifying this as the culprit for
several build-related issues. The plugin is a placeholder, and was
not used for quite some while. It is definitely not worth the effort
to keep it along. If needed, can be quickly created.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac index cf8a205e..1069db7c 100644 --- a/configure.ac +++ b/configure.ac @@ -1119,21 +1119,6 @@ AC_ARG_ENABLE(omuxsock, AM_CONDITIONAL(ENABLE_OMUXSOCK, test x$enable_omuxsock = xyes) -# This provides a vehicle to integrate custom modules, that are not -# part of rsyslog, into the build process. It is named cust1, so that -# additional such modules can easily be added. -AC_ARG_ENABLE(cust1, - [AS_HELP_STRING([--enable-cust1],[Compiles cust1 module @<:@default=no@:>@])], - [case "${enableval}" in - yes) enable_cust1="yes" ;; - no) enable_cust1="no" ;; - *) AC_MSG_ERROR(bad value ${enableval} for --enable-cust1) ;; - esac], - [enable_cust1=no] -) -AM_CONDITIONAL(ENABLE_CUST1, test x$enable_cust1 = xyes) - - # A custom strgen that also serves as a sample of how to do # SQL-generating strgen's AC_ARG_ENABLE(smcustbindcdr, @@ -1261,7 +1246,6 @@ AC_CONFIG_FILES([Makefile \ plugins/omelasticsearch/Makefile \ plugins/sm_cust_bindcdr/Makefile \ plugins/mmsnmptrapd/Makefile \ - plugins/cust1/Makefile \ java/Makefile \ tests/Makefile]) AC_OUTPUT @@ -1276,7 +1260,6 @@ echo " Zlib compression support enabled: $enable_zlib" echo " rsyslog runtime will be built: $enable_rsyslogrt" echo " rsyslogd will be built: $enable_rsyslogd" echo " GUI components will be built: $enable_gui" -echo " custom module 1 will be built: $enable_cust1" echo " Unlimited select() support enabled: $enable_unlimited_select" echo echo "---{ input plugins }---" |