Mercurial > syslog2iptables
comparison configure.in @ 31:601bc0e075e1
gpl3
author | carl |
---|---|
date | Sun, 09 Sep 2007 10:59:15 -0700 |
parents | 28fec0c67646 |
children | 3eb867c9beb2 |
comparison
equal
deleted
inserted
replaced
30:718e94b6b049 | 31:601bc0e075e1 |
---|---|
1 AC_INIT(configure.in) | |
2 | 1 |
3 AM_CONFIG_HEADER(config.h) | 2 AC_PREREQ(2.59) |
4 AM_INIT_AUTOMAKE(syslog2iptables,1.3) | 3 AC_INIT(syslog2iptables,1.6,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_AWK | |
15 AC_PROG_INSTALL | |
16 AC_PROG_LN_S | |
17 AC_PROG_MAKE_SET | |
18 AC_PROG_RANLIB | |
6 | 19 |
7 AC_LANG_CPLUSPLUS | 20 # Checks for libraries. |
8 AC_PROG_CXX | |
9 AM_PROG_LIBTOOL | |
10 | 21 |
11 AC_OUTPUT( \ | 22 # Checks for header files. |
12 Makefile \ | 23 AC_HEADER_SYS_WAIT |
13 syslog2iptables.spec \ | 24 AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netdb.h netinet/in.h sys/socket.h syslog.h unistd.h]) |
14 html/Makefile \ | 25 |
15 info/Makefile \ | 26 # Checks for typedefs, structures, and compiler characteristics. |
16 man/Makefile \ | 27 AC_HEADER_STDBOOL |
17 src/Makefile \ | 28 AC_C_CONST |
18 xml/Makefile \ | 29 |
19 xml/syslog2iptables \ | 30 # Checks for library functions. |
20 ) | 31 AC_FUNC_FORK |
32 AC_FUNC_GETPGRP | |
33 AC_HEADER_STDC | |
34 AC_FUNC_STAT | |
35 AC_CHECK_FUNCS([gethostbyname inet_ntoa memchr memmove memset regcomp strdup strtol]) | |
36 | |
37 AC_CONFIG_FILES([Makefile | |
38 syslog2iptables.spec | |
39 html/Makefile | |
40 info/Makefile | |
41 man/Makefile | |
42 src/Makefile | |
43 xml/Makefile | |
44 xml/syslog2iptables]) | |
45 | |
46 AC_OUTPUT |