diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | TODO.in | 3 | ||||
-rw-r--r-- | configure.ac | 40 |
3 files changed, 25 insertions, 22 deletions
@@ -1,10 +1,12 @@ | |||
1 | 1.100: 2004-09-?f | 1 | 1.100: 2005-01-11 |
2 | * fixes for NULL fields (empty request_args) | 2 | * fixes for NULL fields (empty request_args) |
3 | * fixed a mysql reconnect bug | 3 | * fixed a mysql reconnect bug |
4 | * wrong hostname was logged when using mass virtual hosting | 4 | * wrong hostname was logged when using mass virtual hosting |
5 | Use, the new 'V' logformat | 5 | Use, the new 'V' logformat |
6 | * formatted massvirutalhosting tables to swap - with _. | 6 | * formatted massvirutalhosting tables to swap - with _. |
7 | * included winconfig.h in makefile | 7 | * included winconfig.h in makefile |
8 | * fixed quoting of unique_id | ||
9 | * converted documentation to OOO Docbook ( a subset of the full docbook DTD) | ||
8 | 10 | ||
9 | 1.99: 2004-07-28 | 11 | 1.99: 2004-07-28 |
10 | * Added DBI support (not completed yet) | 12 | * Added DBI support (not completed yet) |
@@ -6,7 +6,8 @@ TODO: | |||
6 | ServerAlias? | 6 | ServerAlias? |
7 | * LogSQLRotateLogs directive with daily/monthly/weekly/etc. | 7 | * LogSQLRotateLogs directive with daily/monthly/weekly/etc. |
8 | * socket-based middleman daemon with configurable conns, or connect/disconnect. | 8 | * socket-based middleman daemon with configurable conns, or connect/disconnect. |
9 | * DBI connection pool when I switch to DBI. | 9 | * DBI connection pooling. |
10 | * apr_dbd backend driver | ||
10 | * ignore by cookie | 11 | * ignore by cookie |
11 | * investigate thread safety issues | 12 | * investigate thread safety issues |
12 | Use libmysqlclient_r for threaded MPM (or always?) | 13 | Use libmysqlclient_r for threaded MPM (or always?) |
diff --git a/configure.ac b/configure.ac index 7dd9489..b8a7318 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,5 +1,5 @@ | |||
1 | dnl Required initializer | 1 | dnl Required initializer |
2 | AC_INIT(mod_log_sql, 1.99) | 2 | AC_INIT(mod_log_sql, 1.100) |
3 | OOO_CONFIG_NICE(config.nice) | 3 | OOO_CONFIG_NICE(config.nice) |
4 | AC_PREREQ(2.53) | 4 | AC_PREREQ(2.53) |
5 | AC_CONFIG_HEADERS(config.h) | 5 | AC_CONFIG_HEADERS(config.h) |
@@ -14,18 +14,18 @@ AC_PROG_CC | |||
14 | APACHE20_VERSION=2.0.40 | 14 | APACHE20_VERSION=2.0.40 |
15 | APACHE13_VERSION=1.3.20 | 15 | APACHE13_VERSION=1.3.20 |
16 | CHECK_APACHE($APACHE13_VERSION,$APACHE20_VERSION, | 16 | CHECK_APACHE($APACHE13_VERSION,$APACHE20_VERSION, |
17 | :, | 17 | :, |
18 | :, | 18 | :, |
19 | AC_MSG_ERROR([*** The correct version Apache was not found!]) | 19 | AC_MSG_ERROR([*** The correct version Apache was not found!]) |
20 | AC_MSG_ERROR([*** You need either Apache 1.3 version $APACHE13_VERSION or greater]) | 20 | AC_MSG_ERROR([*** You need either Apache 1.3 version $APACHE13_VERSION or greater]) |
21 | AC_MSG_ERROR([*** or Apache 2.0/2.1 version $APACHE20_VERSION or greater!]) | 21 | AC_MSG_ERROR([*** or Apache 2.0/2.1 version $APACHE20_VERSION or greater!]) |
22 | ) | 22 | ) |
23 | 23 | ||
24 | CHECK_MYSQL( | 24 | CHECK_MYSQL( |
25 | WANT_MYSQL_MOD=1, | 25 | WANT_MYSQL_MOD=1, |
26 | AC_MSG_WARN([*** Mysql client libraries not found!]) | 26 | AC_MSG_WARN([*** Mysql client libraries not found!]) |
27 | WANT_MYSQL_MOD=0 | 27 | WANT_MYSQL_MOD=0 |
28 | ) | 28 | ) |
29 | 29 | ||
30 | AC_SUBST(WANT_MYSQL_MOD) | 30 | AC_SUBST(WANT_MYSQL_MOD) |
31 | 31 | ||
@@ -41,22 +41,22 @@ AC_SUBST(WANT_PGSQL_MOD) | |||
41 | 41 | ||
42 | 42 | ||
43 | CHECK_MOD_SSL( | 43 | CHECK_MOD_SSL( |
44 | WANT_SSL_MOD=1, | 44 | WANT_SSL_MOD=1, |
45 | AC_MSG_WARN([** mod_ssl.h not found or missing SSL headers!]) | 45 | AC_MSG_WARN([** mod_ssl.h not found or missing SSL headers!]) |
46 | WANT_SSL_MOD=0 | 46 | WANT_SSL_MOD=0 |
47 | ) | 47 | ) |
48 | 48 | ||
49 | AC_SUBST(WANT_SSL_MOD) | 49 | AC_SUBST(WANT_SSL_MOD) |
50 | 50 | ||
51 | case "$target" in | 51 | case "$target" in |
52 | *-*-solaris* | *-*-osf* ) | 52 | *-*-solaris* | *-*-osf* ) |
53 | if test $AP_VERSION -eq 1.3; then | 53 | if test $AP_VERSION -eq 1.3; then |
54 | RT_LIBS=-lrt | 54 | RT_LIBS=-lrt |
55 | fi | 55 | fi |
56 | ;; | 56 | ;; |
57 | *) | 57 | *) |
58 | RT_LIBS="" | 58 | RT_LIBS="" |
59 | ;; | 59 | ;; |
60 | esac | 60 | esac |
61 | 61 | ||
62 | AC_SUBST(RT_LIBS) | 62 | AC_SUBST(RT_LIBS) |