diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-14 07:57:15 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-14 07:57:15 +0000 |
commit | 4884ef844c8f5c4c6e61fca17a3edeca95cdb03c (patch) | |
tree | ef78b2ea8e93ee4022377c0871d7108d414d30dc /configure.ac | |
parent | 602ef197d3f54f360cf44fb7b95e2d45f42606b1 (diff) | |
download | rsyslog-4884ef844c8f5c4c6e61fca17a3edeca95cdb03c.tar.gz rsyslog-4884ef844c8f5c4c6e61fca17a3edeca95cdb03c.tar.xz rsyslog-4884ef844c8f5c4c6e61fca17a3edeca95cdb03c.zip |
- integrated patch from varmojfekoj to make the mysql module a loadable one
many thanks for the patch, MUCH appreciated
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 7af89391..c6675c98 100644 --- a/configure.ac +++ b/configure.ac @@ -13,6 +13,7 @@ AM_PROG_CC_C_O if test "$GCC" = "yes" then CFLAGS="$CFLAGS -W -Wall -Wformat-security -Wshadow -Wcast-align -Wpointer-arith -Wmissing-format-attribute -g" fi +AC_PROG_LIBTOOL AC_CANONICAL_HOST case "${host}" in @@ -90,7 +91,7 @@ AC_ARG_ENABLE(mysql, no) enable_mysql="no" ;; *) AC_MSG_ERROR(bad value ${enableval} for --enable-mysql) ;; esac], - [enable_mysql=no] + [enable_mysql=yes] ) AS_IF([test "x$enable_mysql" != "xno"], [AC_CHECK_HEADERS( |