root/trunk/configure.scan @ 12

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
4AC_PREREQ(2.59)
5AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
6AC_CONFIG_SRCDIR([src/dataFlowSet.c])
7AC_CONFIG_HEADER([config.h])
8
9# Checks for programs.
10AC_PROG_CC
11
12# Checks for libraries.
13
14# Checks for header files.
15AC_HEADER_STDC
16AC_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.
19AC_C_CONST
20AC_TYPE_SIZE_T
21AC_STRUCT_TM
22AC_C_VOLATILE
23
24# Checks for library functions.
25AC_FUNC_MALLOC
26AC_CHECK_FUNCS([getpass inet_ntoa mempcpy memset socket strerror strspn])
27AC_OUTPUT
Note: See TracBrowser for help on using the browser.