summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-01-13 09:16:50 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2011-01-13 09:16:50 +0100
commit64a740a86162b19b3f57bcf221ce49aa6e57523a (patch)
treed787216988bfc673f8db23e19107bd21045cf5bb
parent31125de72f3d787efb5b6ae8ba3117541b331bbc (diff)
downloadrsyslog-64a740a86162b19b3f57bcf221ce49aa6e57523a.tar.gz
rsyslog-64a740a86162b19b3f57bcf221ce49aa6e57523a.tar.xz
rsyslog-64a740a86162b19b3f57bcf221ce49aa6e57523a.zip
integrated pmciscomsg into the build system
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac15
2 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 680a819e..39b24f8a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -123,6 +123,10 @@ if ENABLE_OMSTDOUT
SUBDIRS += plugins/omstdout
endif
+if ENABLE_PMCISCONAMES
+SUBDIRS += plugins/pmcisconames
+endif
+
if ENABLE_PMLASTMSG
SUBDIRS += plugins/pmlastmsg
endif
diff --git a/configure.ac b/configure.ac
index e66e6a4c..32c43aa1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -937,6 +937,19 @@ AC_ARG_ENABLE(pmlastmsg,
AM_CONDITIONAL(ENABLE_PMLASTMSG, test x$enable_pmlastmsg = xyes)
+# settings for pmcisconames
+AC_ARG_ENABLE(pmcisconames,
+ [AS_HELP_STRING([--enable-pmcisconames],[Compiles cisconames parser module @<:@default=no@:>@])],
+ [case "${enableval}" in
+ yes) enable_pmcisconames="yes" ;;
+ no) enable_pmcisconames="no" ;;
+ *) AC_MSG_ERROR(bad value ${enableval} for --enable-pmcisconames) ;;
+ esac],
+ [enable_pmcisconames=no]
+)
+AM_CONDITIONAL(ENABLE_PMCISCONAMES, test x$enable_pmcisconames = xyes)
+
+
# settings for pmrfc3164sd
AC_ARG_ENABLE(pmrfc3164sd,
[AS_HELP_STRING([--enable-pmrfc3164sd],[Compiles rfc3164sd parser module @<:@default=no@:>@])],
@@ -1101,6 +1114,7 @@ AC_CONFIG_FILES([Makefile \
plugins/omstdout/Makefile \
plugins/pmrfc3164sd/Makefile \
plugins/pmlastmsg/Makefile \
+ plugins/pmcisconames/Makefile \
plugins/omruleset/Makefile \
plugins/omdbalerting/Makefile \
plugins/omuxsock/Makefile \
@@ -1161,6 +1175,7 @@ echo
echo "---{ parser modules }---"
echo " pmrfc3164sd module will be compiled: $enable_pmrfc3164sd"
echo " pmlastmsg module will be compiled: $enable_pmlastmsg"
+echo " pmcisconames module will be compiled: $enable_pmcisconames"
echo
echo "---{ database support }---"
echo " MySql support enabled: $enable_mysql"