summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-03-06 09:50:43 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-03-06 09:50:43 +0000
commit08b2347039b80b7362c517459723c0c4fdebfd37 (patch)
treea543a8e0af334360ec10f4db692d4d389c28fa10
parent15e8b33eedce5985701f0b8c949125999fcf789b (diff)
downloadrsyslog-08b2347039b80b7362c517459723c0c4fdebfd37.tar.gz
rsyslog-08b2347039b80b7362c517459723c0c4fdebfd37.tar.xz
rsyslog-08b2347039b80b7362c517459723c0c4fdebfd37.zip
changed --enable-klogd to --enable-klog as suggested by Michael Biebl
-rw-r--r--configure.ac18
1 files changed, 9 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index bbb0ff44..4bf03aff 100644
--- a/configure.ac
+++ b/configure.ac
@@ -190,17 +190,17 @@ if test "x$enable_pthreads" != "xno"; then
)
fi
-# klogd
-AC_ARG_ENABLE(klogd,
- [AS_HELP_STRING([--enable-klogd],[Integrated klogd functionality @<:@default=yes@:>@])],
+# klog
+AC_ARG_ENABLE(klog,
+ [AS_HELP_STRING([--enable-klog],[Integrated klog functionality @<:@default=yes@:>@])],
[case "${enableval}" in
- yes) enable_klogd="yes" ;;
- no) enable_klogd="no" ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --enable-klogd) ;;
+ yes) enable_klog="yes" ;;
+ no) enable_klog="no" ;;
+ *) AC_MSG_ERROR(bad value ${enableval} for --enable-klog) ;;
esac],
- [enable_klogd="yes"]
+ [enable_klog="yes"]
)
-AM_CONDITIONAL(ENABLE_IMKLOGD, test x$enable_klogd = xyes)
+AM_CONDITIONAL(ENABLE_IMKLOGD, test x$enable_klog = xyes)
#
# SYSLOG_UNIXAF
@@ -500,7 +500,7 @@ echo "****************************************************"
echo "rsyslog will be compiled with the following settings:"
echo
echo "Multithreading support enabled: $enable_pthreads"
-echo "Klogd functionality enabled: $enable_klogd"
+echo "Klog functionality enabled: $enable_klog"
echo "Regular expressions support enabled: $enable_regexp"
echo "Zlib compression support enabled: $enable_zlib"
echo "MySql support enabled: $enable_mysql"