diff options
author | Demo <rger@debian5-demo.demo.example.net> | 2009-03-31 22:10:37 +0200 |
---|---|---|
committer | Demo <rger@debian5-demo.demo.example.net> | 2009-03-31 22:10:37 +0200 |
commit | e3f21521cd6ae237fd9b362281fe188380210fb5 (patch) | |
tree | f1a497b19ff3be69538cce910519df53df3fcf90 /configure.ac | |
parent | d27edc7587dba7b850759d151d90cdad1cb34a35 (diff) | |
download | rsyslog-e3f21521cd6ae237fd9b362281fe188380210fb5.tar.gz rsyslog-e3f21521cd6ae237fd9b362281fe188380210fb5.tar.xz rsyslog-e3f21521cd6ae237fd9b362281fe188380210fb5.zip |
fixed some problems with "make check"
interestingly, they manifested on Debian, only, but potentially
existed on other platforms, too.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2db856cd..de328f83 100644 --- a/configure.ac +++ b/configure.ac @@ -689,8 +689,10 @@ AM_CONDITIONAL(ENABLE_OMTEMPLATE, test x$enable_omtemplate = xyes) # settings for omstdout +# note that "make check" fails, if omstdout is not enabled (thus we enable +# it by default). AC_ARG_ENABLE(omstdout, - [AS_HELP_STRING([--enable-omstdout],[Compiles stdout template module @<:@default=no@:>@])], + [AS_HELP_STRING([--enable-omstdout],[Compiles stdout template module @<:@default=yes@:>@])], [case "${enableval}" in yes) enable_omstdout="yes" ;; no) enable_omstdout="no" ;; |