File: configure.ac

package info (click to toggle)
libapreq2-perl 2.04-dev-1sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,700 kB
  • ctags: 1,508
  • sloc: sh: 8,103; ansic: 5,557; perl: 2,842; cpp: 1,052; makefile: 234
file content (38 lines) | stat: -rw-r--r-- 1,126 bytes parent folder | download
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
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ(2.53)
AC_INIT(Apache HTTP Server Request Library, 2.04-dev, apreq-dev@httpd.apache.org, libapreq2)
dnl Generate config.nice script- macro must be here at the top
dnl to avoid corruption of $0 and $@.
APR_CONFIG_NICE(config.nice)

dnl this:
dnl AC_CONFIG_AUX_DIR(build)
dnl causes problems on certain platforms
dnl aclocal.m4:817: required file `build/ltmain.sh' not found

dnl debian woody's archaic auto* tools don't set PACKAGE/VERSION correctly via 
dnl AC_INIT above, so we do it again here.
AM_INIT_AUTOMAKE(libapreq2, 2.04-dev)

AC_PROG_MAKE_SET

dnl Checks for programs.
AC_PROG_CC
AM_PROG_LIBTOOL
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_PROG_LN_S

AM_MAINTAINER_MODE

dnl Checks for header files.
AM_CONFIG_HEADER(src/apreq_config.h)
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.

AC_APREQ
AC_CONFIG_FILES([Makefile src/Makefile env/Makefile glue/Makefile t/Makefile])
AC_CONFIG_FILES([build/doxygen.conf src/groups.dox])
AC_CONFIG_FILES([apreq2-config], [chmod +x apreq2-config])
AC_OUTPUT