diff options
author | Edward Rudd | 2004-02-29 23:36:18 +0000 |
---|---|---|
committer | Edward Rudd | 2004-02-29 23:36:18 +0000 |
commit | 53acb181ef04ae70a7dcfed849f7c02850781c20 (patch) | |
tree | 3df5086ba326284771f9cb6492e975f1713b3e40 /Makefile.in | |
parent | b16bc88ccee527a7a9ea107c93f36264dbf82ed5 (diff) |
separated out most mysql specific code to mod_log_sql_mysql.c
beginnings of separation of core SQL logging logic
moved DB connection paramters to a table (for cutoms params for DB drivers)
added new configuration directive to handle any DB parameter
renamed all log_sql_* vars and type to logsql_*
Added enums for opendb return codes.
organized config directives and commented for easier reading of source
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 1ad7562..139a715 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | # Modify these top variables. | 3 | # Modify these top variables. |
4 | SUBDIRS = Documentation contrib | 4 | SUBDIRS = Documentation contrib |
5 | SOURCES = \ | 5 | SOURCES = @PACKAGE_NAME@.c \ |
6 | @PACKAGE_NAME@.c | 6 | @PACKAGE_NAME@_mysql.c |
7 | 7 | ||
8 | HEADERS = mod_log_sql.h \ | 8 | HEADERS = mod_log_sql.h \ |
9 | functions.h \ | 9 | functions.h \ |
@@ -22,7 +22,7 @@ EXTRA_DIST = AUTHORS INSTALL TODO LICENSE CHANGELOG make_combined_log.pl | |||
22 | 22 | ||
23 | TARGET = @PACKAGE_NAME@@APXS_EXTENSION@ | 23 | TARGET = @PACKAGE_NAME@@APXS_EXTENSION@ |
24 | 24 | ||
25 | sslSOURCES = mod_log_sql_ssl.c | 25 | sslSOURCES = @PACKAGE_NAME@_ssl.c |
26 | 26 | ||
27 | sslTARGET = @PACKAGE_NAME@_ssl@APXS_EXTENSION@ | 27 | sslTARGET = @PACKAGE_NAME@_ssl@APXS_EXTENSION@ |
28 | 28 | ||