Annotation of embedaddon/bmon/src/configure.scan, revision 1.1.1.1
1.1 misho 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([in_null.c])
7: AC_CONFIG_HEADER([config.h])
8:
9: # Checks for programs.
10: AC_PROG_CC
11: AC_PROG_INSTALL
12:
13: # Checks for libraries.
14:
15: # Checks for header files.
16: AC_HEADER_DIRENT
17: AC_CHECK_HEADERS([fcntl.h inttypes.h netdb.h netinet/in.h sys/ioctl.h sys/param.h sys/socket.h])
18:
19: # Checks for typedefs, structures, and compiler characteristics.
20: AC_C_CONST
21: AC_C_INLINE
22: AC_TYPE_PID_T
23: AC_TYPE_SIZE_T
24: AC_HEADER_TIME
25:
26: # Checks for library functions.
27: AC_FUNC_CLOSEDIR_VOID
28: AC_FUNC_FORK
29: AC_PROG_GCC_TRADITIONAL
30: AC_HEADER_STDC
31: AC_FUNC_REALLOC
32: AC_TYPE_SIGNAL
33: AC_FUNC_STRTOD
34: AC_FUNC_VPRINTF
35: AC_CHECK_FUNCS([atexit gettimeofday memset pow socket strcasecmp strchr strdup strerror strncasecmp strstr strtol uname])
36:
37: AC_CONFIG_FILES([GNUmakefile])
38: AC_OUTPUT
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>