mizzy / mod_rewrite_mapfunc_custom

This URL has Read+Write access

mod_rewrite_mapfunc_custom / configure.ac
100644 30 lines (20 sloc) 0.734 kb
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
 
VERSION="`cat VERSION`"
AC_PREREQ(2.59)
AC_INIT(mod_rewrite_mapfunc_custom)
AC_CONFIG_SRCDIR([mod_rewrite_mapfunc_custom.c])
 
# Checks for programs.
AC_PROG_CC
 
AC_ARG_WITH(apxs, AC_HELP_STRING([--with-apxs=NAME],
        [name of the apxs executable [[apxs]]]),
        [APXS="$with_apxs"])
 
if test -z "${APXS}"; then
        AC_PATH_PROGS(APXS, apxs2 apxs, [apxs], [$PATH:/usr/local/apache/bin:/usr/sbin])
fi
 
# Checks for libraries.
 
# Checks for header files.
 
# Checks for typedefs, structures, and compiler characteristics.
 
# Checks for library functions.
 
AC_CONFIG_FILES([Makefile])
AC_OUTPUT