summaryrefslogtreecommitdiffstatsabout
path: root/configure.ac
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2004-06-03 04:32:08 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2004-06-03 04:32:08 (GMT)
commit21122f1bb734aa00fc14564d801ea9dc4804c793 (patch)
tree3d4920b9a47a3528de8c4ac80c402853e9d14719 /configure.ac
parentf73dc64cd6dba290a7e062520a421de2b02f82a4 (diff)
moved quoting of fields to DB driver
fixed segfault in the mysql escape string function DBi driver working with postgresql.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 42e2bde..d10ad4f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1dnl Required initializer 1dnl Required initializer
2AC_INIT(mod_log_sql, 1.98) 2AC_INIT(mod_log_sql, 1.99)
3OOO_CONFIG_NICE(config.nice) 3OOO_CONFIG_NICE(config.nice)
4AC_PREREQ(2.53) 4AC_PREREQ(2.53)
5AC_CONFIG_HEADERS(config.h) 5AC_CONFIG_HEADERS(config.h)
@@ -35,7 +35,13 @@ WANT_MYSQL_MOD=1
35AC_SUBST(WANT_MYSQL_MOD) 35AC_SUBST(WANT_MYSQL_MOD)
36WANT_PGSQL_MOD=0 36WANT_PGSQL_MOD=0
37AC_SUBST(WANT_PGSQL_MOD) 37AC_SUBST(WANT_PGSQL_MOD)
38WANT_DBI_MOD=0 38WANT_DBI_MOD=1
39DBI_LDFLAGS=""
40DBI_LIBS="-ldbi"
41DBI_CFLAGS=""
42AC_SUBST(DBI_LDFLAGS)
43AC_SUBST(DBI_LIBS)
44AC_SUBST(DBI_CFLAGS)
39AC_SUBST(WANT_DBI_MOD) 45AC_SUBST(WANT_DBI_MOD)
40 46
41case "$target" in 47case "$target" in