"Fossies" - the Fresh Open Source Software Archive 
Member "utrac-0.3.2/configure.scan" (17 Feb 2007, 801 Bytes) of package /linux/privat/old/utrac-0.3.2.tgz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
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([debug.h])
7 AC_CONFIG_HEADER([config.h])
8
9 # Checks for programs.
10 AC_PROG_CC
11 AC_PROG_LN_S
12
13 # Checks for libraries.
14 # FIXME: Replace `main' with a function in `-lm':
15 AC_CHECK_LIB([m], [main])
16
17 # Checks for header files.
18 AC_HEADER_STDC
19 AC_CHECK_HEADERS([fcntl.h float.h limits.h stdlib.h string.h unistd.h])
20
21 # Checks for typedefs, structures, and compiler characteristics.
22 AC_HEADER_STDBOOL
23 AC_C_CONST
24 AC_C_INLINE
25
26 # Checks for library functions.
27 AC_FUNC_MALLOC
28 AC_FUNC_REALLOC
29 AC_CHECK_FUNCS([floor nl_langinfo strchr strerror strstr strtoul])
30
31 AC_CONFIG_FILES([Makefile])
32 AC_OUTPUT