"Fossies" - the Fresh Open Source Software Archive 
Member "utrac-0.3.2/configure.ac" (4 Jan 2009, 666 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 # Process this file with autoconf to produce a configure script.
2
3 AC_PREREQ(2.61)
4 AC_INIT(utrac, 0.3.0, http://utrac.sourceforge.net/)
5 AC_CONFIG_SRCDIR([src/utrac.c])
6 AM_INIT_AUTOMAKE([1.9 foreign])
7
8 # Checks for programs.
9 AC_PROG_CC
10 AC_PROG_LN_S
11
12 # Checks for header files.
13 AC_HEADER_STDC
14 AC_CHECK_HEADERS([fcntl.h float.h limits.h stdlib.h string.h unistd.h])
15
16 LIBS="-lm"
17
18 # Checks for typedefs, structures, and compiler characteristics.
19 AC_HEADER_STDBOOL
20 AC_C_CONST
21 AC_C_INLINE
22
23 # Checks for library functions.
24 AC_FUNC_MALLOC
25 AC_FUNC_REALLOC
26 AC_CHECK_FUNCS([floor nl_langinfo strchr strndup strstr strtoul])
27
28 AC_CONFIG_FILES([
29 Makefile
30 src/Makefile]
31 )
32 AC_OUTPUT
33