Annotation of froggix/configure.ac, revision 1.1.1.1
1.1 nick 1: # -*- Autoconf -*-
2: # Process this file with autoconf to produce a configure script.
3:
4: AC_PREREQ(2.61)
5: AC_INIT(froggix, 0.5, nick@declario.com)
6: AM_INIT_AUTOMAKE(froggix, 0.5)
7: AC_CONFIG_SRCDIR([froggix.c])
8: AC_CONFIG_HEADER([config.h])
9:
10: # Checks for programs.
11: AC_PROG_CC
12:
13: # Checks for libraries.
14:
15: # Checks for header files.
16: AC_HEADER_STDC
17: AC_CHECK_HEADERS([stdlib.h unistd.h])
18:
19: # Checks for typedefs, structures, and compiler characteristics.
20:
21: # Checks for library functions.
22:
23: AC_OUTPUT(Makefile)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>