diff options
author | Edward Rudd | 2003-12-20 07:48:29 +0000 |
---|---|---|
committer | Edward Rudd | 2003-12-20 07:48:29 +0000 |
commit | 47f10cbf0f6425405d66323da56315ea5d1e8108 (patch) | |
tree | a51238415be53c7b67506bd09de9778b6c99a440 /configure.ac | |
parent | 4f4926ce12f15fc65df8fa1bfbfef1dfce61dbd9 (diff) |
added autoconfig files
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..2011793 --- /dev/null +++ b/configure.ac | |||
@@ -0,0 +1,21 @@ | |||
1 | dnl Required initializer | ||
2 | AC_INIT(mod_log_sql, 1.99) | ||
3 | AC_PREREQ(2.53) | ||
4 | AC_CONFIG_HEADERS(config.h) | ||
5 | |||
6 | AC_CONFIG_SRCDIR(mod_log_sql.c) | ||
7 | |||
8 | dnl Add a test for a compiler. | ||
9 | AC_PROG_CC | ||
10 | |||
11 | APACHE_VERSION=2.0.44 | ||
12 | CHECK_PATH_APACHE($APACHE_VERSION, | ||
13 | :, | ||
14 | AC_MSG_ERROR([*** Apache version $APACHE_VERSION not found!]) | ||
15 | ) | ||
16 | |||
17 | AC_CONFIG_FILES([stamp-h], [echo timestamp > stamp-h]) | ||
18 | |||
19 | dnl Write config.status and the Makefile | ||
20 | |||
21 | AC_OUTPUT(Makefile) | ||