From f230d2468cdc8ee3d290d34a36593b154f51aee1 Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Thu, 22 Jan 2004 05:26:56 +0000 Subject: SSL support working under 1.3 and 2.0 as a separate module preparsing of logformat completed. updated configure scripts to detect mod_ssl.h for 1.3 (mostly) --- (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 808d1fc..7e9ccb8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Required initializer -AC_INIT(mod_log_sql, 1.93) +AC_INIT(mod_log_sql, 1.94) AC_PREREQ(2.53) AC_CONFIG_HEADERS(config.h) @@ -24,10 +24,12 @@ CHECK_PATH_MYSQL(:, CHECK_PATH_MOD_SSL( AC_DEFINE(WANT_SSL_LOGGING,,[Define if we want to compile in SSL support.]) - conf_SSL=1, - conf_SSL=0 + WANT_SSL_MOD=1, + WANT_SSL_MOD=0 ) +AC_SUBST(WANT_SSL_MOD) + AC_CHECK_HEADERS(limits.h) AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h]) @@ -38,7 +40,7 @@ AC_OUTPUT(Makefile Documentation/Makefile) AC_MSG_RESULT([------------------------------------]) AC_MSG_RESULT([Apache version : $APACHE_VERSION]) -if test $conf_SSL -eq 1; then +if test $WANT_SSL_MOD -eq 1; then AC_MSG_RESULT([SSL Support : yes]) else AC_MSG_RESULT([SSL Support : no]) -- cgit v0.9.2