diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-01 07:18:46 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-01 07:18:46 +0000 |
commit | 2c2f1022b0d4bed360f41f67a9fb9edf8fe91c2f (patch) | |
tree | fa2b48f3dae5099fed403a56e103f207994814b9 /configure.ac | |
parent | ca77f716a3f0acefecee24a4283b351f0832151d (diff) | |
download | rsyslog-2c2f1022b0d4bed360f41f67a9fb9edf8fe91c2f.tar.gz rsyslog-2c2f1022b0d4bed360f41f67a9fb9edf8fe91c2f.tar.xz rsyslog-2c2f1022b0d4bed360f41f67a9fb9edf8fe91c2f.zip |
- bugfix: rsyslogd was no longer build by default; man pages are only
installed if corresponding option is selected. Thanks to Michael Biebl
for pointing these problems out.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d09ee302..c45ba862 100644 --- a/configure.ac +++ b/configure.ac @@ -486,7 +486,7 @@ AC_ARG_ENABLE(rsyslogd, no) enable_rsyslogd="no" ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-rsyslogd) ;; esac], - [enable_rsyslogd=no] + [enable_rsyslogd=yes] ) AM_CONDITIONAL(ENABLE_RSYSLOGD, test x$enable_rsyslogd = xyes) |