diff options
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | omfwd.c | 3 | ||||
-rw-r--r-- | plugins/ommysql/.cvsignore | 4 | ||||
-rw-r--r-- | syslogd.c | 1 | ||||
-rw-r--r-- | syslogd.h | 2 |
5 files changed, 9 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 173d4e8a..d057318e 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ(2.61) AC_INIT([rsyslog],[2.0.0],[rsyslog@lists.adiscon.com.]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([syslogd.c]) -AC_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CC @@ -145,7 +145,7 @@ AC_ARG_ENABLE(gssapi_krb5, if test $want_gssapi_krb5 = yes; then AC_CHECK_LIB(gssapi_krb5, gss_acquire_cred, [ AC_CHECK_HEADER(gssapi/gssapi.h, [ - AC_MSG_ERROR(GSS-API not ready for primt time yet -- wait for next release); + AC_MSG_ERROR(GSS-API not ready for prime time yet -- wait for next release); AC_DEFINE(USE_GSSAPI,, Define if you want to use GSSAPI) gss_libs="-lgssapi_krb5" @@ -43,6 +43,9 @@ #include <errno.h> #include <ctype.h> #include <unistd.h> +#ifdef USE_NETZIP +#include <zlib.h> +#endif #ifdef USE_PTHREADS #include <pthread.h> #else diff --git a/plugins/ommysql/.cvsignore b/plugins/ommysql/.cvsignore index 1281f785..9730646f 100644 --- a/plugins/ommysql/.cvsignore +++ b/plugins/ommysql/.cvsignore @@ -2,5 +2,5 @@ .libs Makefile Makefile.in -ommysql.la -ommysql_la-ommysql.lo +*.la +*.lo @@ -197,7 +197,6 @@ #endif #ifdef USE_NETZIP -#include <unistd.h> #include <zlib.h> #endif @@ -24,6 +24,8 @@ #include "objomsr.h" #ifdef USE_NETZIP +#include <unistd.h> +#include <zlib.h> /* config param: minimum message size to try compression. The smaller * the message, the less likely is any compression gain. We check for * gain before we submit the message. But to do so we still need to |