Mercurial > dnsbl
comparison configure.in @ 148:9330b8d6a56b
add documentation fixes, allow env_from target of inherit
author | carl |
---|---|
date | Tue, 30 Jan 2007 16:27:49 -0800 |
parents | 812c80305f26 |
children | 9581f6e62574 |
comparison
equal
deleted
inserted
replaced
147:812c80305f26 | 148:9330b8d6a56b |
---|---|
1 AC_INIT(configure.in) | |
2 | 1 |
3 AM_CONFIG_HEADER(config.h) | 2 AC_PREREQ(2.59) |
4 AM_INIT_AUTOMAKE(dnsbl,5.26) | 3 AC_INIT(dnsbl,5.27,carl@five-ten-sg.com) |
4 AC_CONFIG_SRCDIR([config.h.in]) | |
5 AC_CONFIG_HEADER([config.h]) | |
6 | |
7 AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION) | |
8 | |
9 # Checks for programs. | |
5 AC_PATH_PROGS(BASH, bash) | 10 AC_PATH_PROGS(BASH, bash) |
11 AC_PROG_CXX | |
12 AC_PROG_CC | |
13 AC_PROG_CPP | |
14 AC_PROG_INSTALL | |
15 AC_PROG_LN_S | |
16 AC_PROG_MAKE_SET | |
17 AC_PROG_RANLIB | |
6 | 18 |
7 AC_LANG_CPLUSPLUS | 19 # Checks for header files. |
8 AC_PROG_CXX | 20 AC_HEADER_SYS_WAIT |
9 AC_PROG_LIBTOOL | 21 AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h sys/ioctl.h sys/socket.h syslog.h unistd.h]) |
10 | 22 |
11 AC_OUTPUT( \ | 23 # Checks for typedefs, structures, and compiler characteristics. |
12 Makefile \ | 24 AC_HEADER_STDBOOL |
13 dnsbl.spec \ | 25 AC_C_CONST |
14 html/Makefile \ | 26 AC_TYPE_PID_T |
15 info/Makefile \ | 27 AC_TYPE_SIZE_T |
16 man/Makefile \ | 28 |
17 src/Makefile \ | 29 # Checks for library functions. |
18 xml/Makefile \ | 30 AC_FUNC_ERROR_AT_LINE |
19 xml/dnsbl \ | 31 AC_FUNC_FORK |
20 ) | 32 AC_FUNC_GETPGRP |
33 AC_HEADER_STDC | |
34 AC_FUNC_STAT | |
35 AC_CHECK_FUNCS([gethostbyname gethostname memmove memset socket strchr strdup strncasecmp strrchr strstr strtol]) | |
36 | |
37 AC_CONFIG_FILES([Makefile | |
38 dnsbl.spec | |
39 html/Makefile | |
40 info/Makefile | |
41 man/Makefile | |
42 src/Makefile | |
43 xml/Makefile | |
44 xml/dnsbl]) | |
45 AC_OUTPUT |