Last-Modified: Sat, 31 Jan 2026 07:52:59 GMT Expires: Tue, 29 Jan 2036 07:52:59 GMT configure.ac - mod_log_sql - mod_log_sql
summaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: 1dd1b34a30b9ae684de3997edd16e239e842d126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
 Edward Rudd
2004-02-12 23:32:55 +0000
committerGravatar Edward Rudd 2004-02-12 23:32:55 +0000
commit8816d3b3de90cd6b1c2f14ea3aaa4827392d9933 (patch)
treef0436815149802f8303dd92be0d4a2e0b0152fec /LICENSE
parenteee7a95a0e6922e808f1b02996c688b3b1b1477e (diff)
Updated help and added check and error to make sure the user edited the file first.
Diffstat (limited to 'LICENSE')
0 files changed, 0 insertions, 0 deletions
rsion Apache was not found!]) AC_MSG_ERROR([*** You need either Apache 1.3 version $APACHE13_VERSION or greater]) AC_MSG_ERROR([*** or Apache 2.0/2.1 version $APACHE20_VERSION or greater!]) ) CHECK_MYSQL( WANT_MYSQL_MOD=1, AC_MSG_ERROR([*** Mysql client libraries not found!]) WANT_MYSQL_MOD=0 ) AC_SUBST(WANT_MYSQL_MOD) CHECK_LIBDBI(WANT_DBI_MOD=1, AC_MSG_ERROR([** libDBI client libraries not found!]) WANT_DBI_MOD=0 ) AC_SUBST(WANT_DBI_MOD) dnl to write, checking for pgsql libs WANT_PGSQL_MOD=0 AC_SUBST(WANT_PGSQL_MOD) CHECK_MOD_SSL( WANT_SSL_MOD=1, AC_MSG_ERROR([** mod_ssl.h not found or missing SSL headers!]) WANT_SSL_MOD=0 ) AC_SUBST(WANT_SSL_MOD) case "$target" in *-*-solaris* | *-*-osf* ) if test $AP_VERSION -eq 1.3; then RT_LIBS=-lrt fi ;; *) RT_LIBS="" ;; esac AC_SUBST(RT_LIBS) AC_CHECK_HEADERS(limits.h) AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h]) dnl Write config.status and the Makefile AC_OUTPUT(Makefile docs/Makefile contrib/Makefile) AC_MSG_RESULT([------------------------------------]) AC_MSG_RESULT([Apache version : $AP_VERSION]) if test $WANT_SSL_MOD -eq 1; then AC_MSG_RESULT([SSL Support : yes]) else AC_MSG_RESULT([SSL Support : no]) AC_MSG_RESULT([*** Make sure OpenSSL headers, and mod_ssl.h are installed.]) fi AC_MSG_RESULT([Enabled drivers :]) if test $WANT_MYSQL_MOD -eq 1; then AC_MSG_RESULT([ MySQL Driver]) fi if test $WANT_PGSQL_MOD -eq 1; then AC_MSG_RESULT([ PostgreSQL Driver]) fi if test $WANT_DBI_MOD -eq 1; then AC_MSG_RESULT([ libDBI Driver]) fi if test $OOO_MAINTAIN -eq 1; then AC_MSG_RESULT([Maintainer mode is on. -Werror is in effect]) fi AC_MSG_RESULT([------------------------------------])