diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-03 14:45:09 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-03 14:45:09 +0200 |
commit | f54e72cec06f21f4af939c70541e8a339b7e56ff (patch) | |
tree | 12912644e7d614082ea21715367996e43df3a55d /configure.ac | |
parent | 4f742a8e32c43dc9b514ceaf80f4d17e697dfdf6 (diff) | |
download | rsyslog-f54e72cec06f21f4af939c70541e8a339b7e56ff.tar.gz rsyslog-f54e72cec06f21f4af939c70541e8a339b7e56ff.tar.xz rsyslog-f54e72cec06f21f4af939c70541e8a339b7e56ff.zip |
first proof of concept on zipped file writer
This DOES NOT work sufficiently well, I just wanted to verify that
zip writing is possible and files are readable. Will be refined
soon.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 70eea038..4a040e6a 100644 --- a/configure.ac +++ b/configure.ac @@ -186,6 +186,7 @@ AC_ARG_ENABLE(zlib, esac], [enable_zlib=yes] ) +AM_CONDITIONAL(ENABLE_ZLIB, test x$enable_zlib = xyes) if test "$enable_zlib" = "yes"; then AC_CHECK_HEADER(zlib.h, [zlib_header="yes"], [zlib_header="no" enable_zlib="false"]) if test "$zlib_header" = "yes"; then |