Revision 5, 0.7 KB
(checked in by andreu, 17 years ago)
|
first add
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | # -*- Autoconf -*- |
---|
2 | # Process this file with autoconf to produce a configure script. |
---|
3 | |
---|
4 | AC_PREREQ(2.59) |
---|
5 | AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS) |
---|
6 | AC_CONFIG_SRCDIR([src/dataFlowSet.c]) |
---|
7 | AC_CONFIG_HEADER([config.h]) |
---|
8 | |
---|
9 | # Checks for programs. |
---|
10 | AC_PROG_CC |
---|
11 | |
---|
12 | # Checks for libraries. |
---|
13 | |
---|
14 | # Checks for header files. |
---|
15 | AC_HEADER_STDC |
---|
16 | AC_CHECK_HEADERS([arpa/inet.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h syslog.h unistd.h]) |
---|
17 | |
---|
18 | # Checks for typedefs, structures, and compiler characteristics. |
---|
19 | AC_C_CONST |
---|
20 | AC_TYPE_SIZE_T |
---|
21 | AC_STRUCT_TM |
---|
22 | AC_C_VOLATILE |
---|
23 | |
---|
24 | # Checks for library functions. |
---|
25 | AC_FUNC_MALLOC |
---|
26 | AC_CHECK_FUNCS([getpass inet_ntoa mempcpy memset socket strerror strspn]) |
---|
27 | AC_OUTPUT |
---|