summaryrefslogtreecommitdiffstatsabout
path: root/configure.ac
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2003-12-23 19:49:56 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2003-12-23 19:49:56 (GMT)
commitab1ac8ba7570005c169e7aa772762b55d354e07d (patch)
treea4e8d712b5dbf4b5edbb7bd89edc1fa08e40a332 /configure.ac
parentf89b2cced3608b248cb02b2e48907dcae07e8bbe (diff)
update autoconf scripts to check MySQL..1.91
moved autoconf DEFUN macros to m4 subdirectory autogen.sh calls aclocal to include m4 directory. merged in changes from 1.19b1 fixed log_sql_merge_config bug in 1.19b1 release 1.91
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4fa277a..56f648c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1dnl Required initializer 1dnl Required initializer
2AC_INIT(mod_log_sql, 1.90) 2AC_INIT(mod_log_sql, 1.91)
3AC_PREREQ(2.53) 3AC_PREREQ(2.53)
4AC_CONFIG_HEADERS(config.h) 4AC_CONFIG_HEADERS(config.h)
5 5
@@ -14,6 +14,11 @@ CHECK_PATH_APACHE($APACHE_VERSION,
14 AC_MSG_ERROR([*** Apache version $APACHE_VERSION not found!]) 14 AC_MSG_ERROR([*** Apache version $APACHE_VERSION not found!])
15 ) 15 )
16 16
17CHECK_PATH_MYSQL(:,
18 AC_MSG_ERROR([*** Mysql client libraries not found!])
19 )
20
21
17AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h]) 22AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h])
18 23
19dnl Write config.status and the Makefile 24dnl Write config.status and the Makefile