summaryrefslogtreecommitdiffstatsabout
path: root/Makefile.in
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2004-03-22 20:32:16 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2004-03-22 20:32:16 (GMT)
commit0c653076dbc735757b84b2bc2ff9ee173c246b46 (patch)
treef434360da3eb27d5e3c6fab72473d3d19cf7d0d9 /Makefile.in
parent9ac4be0b0c329de114fecf299284e79ea7bab8c9 (diff)
Fixed issue with different include directories for APR and APU.
updated help screen after make install
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in18
1 files changed, 16 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 65a0823..e45968b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -16,7 +16,7 @@ CFLAGS = -Wc,-Wall -Wc,-Werror -Wc,-fno-strict-aliasing
16 16
17INCLUDES = @MYSQL_CFLAGS@ 17INCLUDES = @MYSQL_CFLAGS@
18 18
19LDADD = @MYSQL_LDFLAGS@ @MYSQL_LIBS@ 19LDADD = @MYSQL_LDFLAGS@ @MYSQL_LIBS@ @RT_LIBS
20 20
21EXTRA_DIST = AUTHORS INSTALL TODO LICENSE CHANGELOG 21EXTRA_DIST = AUTHORS INSTALL TODO LICENSE CHANGELOG
22 22
@@ -90,7 +90,21 @@ install: $(TARGETS) install-subdirs
90 @@APXS_BIN@ -i $(TARGET); \ 90 @@APXS_BIN@ -i $(TARGET); \
91 if test @WANT_SSL_MOD@ -eq 1; then \ 91 if test @WANT_SSL_MOD@ -eq 1; then \
92 @APXS_BIN@ -i $(sslTARGET); \ 92 @APXS_BIN@ -i $(sslTARGET); \
93 fi 93 fi; \
94 echo "*************************************************************************"; \
95 echo "*** The mod_log_sql modules have been installed."; \
96 echo "*** Please edit your Apache configuration files and"; \
97 echo "*** add the appropriate LoadModule directives per the documentation"; \
98 echo "*** in docs/manual.html"; \
99 echo "*** If you have previously used 1.18 or lower then update you must change"; \
100 echo "*** >LoadModule sql_log_module modules/mod_log_sql.so"; \
101 echo "*** to"; \
102 echo "*** >LoadModule log_sql_module modules/mod_log_sql.so"; \
103 echo "*** in your httpd.conf as the internal name of the module has changed."; \
104 echo "*** "; \
105 echo "*** Also read the documentation about using SSL support and new "; \
106 echo "*** configuration directives."; \
107 echo "*************************************************************************";
94 108
95activate: activate-subdirs 109activate: activate-subdirs
96 @@APXS_BIN@ -i -a $(TARGET); \ 110 @@APXS_BIN@ -i -a $(TARGET); \