diff options
author | Edward Rudd | 2004-04-17 15:14:12 +0000 |
---|---|---|
committer | Edward Rudd | 2004-04-17 15:14:12 +0000 |
commit | 0eb391e9f9e44f15c03f1d8d5414c806413f50fb (patch) | |
tree | 256ecb77d74fa09b716f4497b6893a3f6f851284 /Makefile.in | |
parent | 8ee3532f8b6c454f2600e6c3b47362d22b7cf536 (diff) |
beginnings of postgresql driver integrated into autoconf
removed log_error from apache20.h (aliased to ap_log_rerror)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 93acec9..b6391e1 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -31,12 +31,22 @@ mysqlLDADD = @MYSQL_LDFLAGS@ @MYSQL_LIBS@ | |||
31 | mysqlCFLAGS = @MYSQL_CFLAGS@ | 31 | mysqlCFLAGS = @MYSQL_CFLAGS@ |
32 | mysqlNAME = log_sql_mysql | 32 | mysqlNAME = log_sql_mysql |
33 | 33 | ||
34 | pgsqlSOURCES = @PACKAGE_NAME@_pgsql.c | ||
35 | pgsqlTARGET = @PACKAGE_NAME@_pgsql@APXS_EXTENSION@ | ||
36 | pgsqlLDADD = @PGSQL_LDFLAGS@ @PGSQL_LIBS@ | ||
37 | pgsqlCFLAGS = @PGSQL_CFLAGS@ | ||
38 | pgsqlNAME = log_sql_pgsql | ||
39 | |||
40 | TARGETS = $(TARGET) | ||
41 | |||
34 | ifeq (@WANT_SSL_MOD@,1) | 42 | ifeq (@WANT_SSL_MOD@,1) |
35 | TARGETS = $(TARGET) $(mysqlTARGET) $(sslTARGET) | 43 | TARGETS += $(sslTARGET) |
36 | else | ||
37 | TARGETS = $(TARGET) $(mysqlTARGET) | ||
38 | endif | 44 | endif |
39 | 45 | ||
46 | TARGETS += $(mysqlTARGET) | ||
47 | |||
48 | TARGETS += $(pgsqlTARGET) | ||
49 | |||
40 | #Don't modify anything below here | 50 | #Don't modify anything below here |
41 | 51 | ||
42 | PROVIDERS_SUBDIRS = @subdirs@ | 52 | PROVIDERS_SUBDIRS = @subdirs@ |
@@ -85,7 +95,7 @@ TODO: TODO.in | |||
85 | 95 | ||
86 | $(TARGET): $(SOURCES) $(HEADERS) | 96 | $(TARGET): $(SOURCES) $(HEADERS) |
87 | @@APXS_BIN@ -c -o $(TARGET) $(CFLAGS) \ | 97 | @@APXS_BIN@ -c -o $(TARGET) $(CFLAGS) \ |
88 | $(LDADD) @DEFS@ @APACHE_DEFS@ $(SOURCES) | 98 | @DEFS@ @APACHE_DEFS@ $(LDADD) $(SOURCES) |
89 | 99 | ||
90 | $(sslTARGET): $(sslSOURCES) $(HEADERS) | 100 | $(sslTARGET): $(sslSOURCES) $(HEADERS) |
91 | @@APXS_BIN@ -c -o $(sslTARGET) $(sslCFLAGS) $(CFLAGS) \ | 101 | @@APXS_BIN@ -c -o $(sslTARGET) $(sslCFLAGS) $(CFLAGS) \ |
@@ -95,6 +105,10 @@ $(mysqlTARGET): $(mysqlSOURCES) $(HEADERS) | |||
95 | @@APXS_BIN@ -c -o $(mysqlTARGET) $(mysqlCFLAGS) $(CFLAGS) \ | 105 | @@APXS_BIN@ -c -o $(mysqlTARGET) $(mysqlCFLAGS) $(CFLAGS) \ |
96 | @DEFS@ @APACHE_DEFS@ $(mysqlLDADD) $(mysqlSOURCES) | 106 | @DEFS@ @APACHE_DEFS@ $(mysqlLDADD) $(mysqlSOURCES) |
97 | 107 | ||
108 | $(pgsqlTARGET): $(pgsqlSOURCES) $(HEADERS) | ||
109 | @@APXS_BIN@ -c -o $(pgsqlTARGET) $(pgsqlCFLAGS) $(CFLAGS) \ | ||
110 | @DEFS@ @APACHE_DEFS@ $(pgsqlLDADD) $(pgsqlSOURCES) | ||
111 | |||
98 | include: | 112 | include: |
99 | rm -rf include | 113 | rm -rf include |
100 | ln -s @APACHE_INCDIR@ include | 114 | ln -s @APACHE_INCDIR@ include |