]> git.pld-linux.org Git - packages/comgt.git/blob - comgt-configure.ac
- added
[packages/comgt.git] / comgt-configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.62)
5 AC_INIT([comgt], [0.32])
6 AM_INIT_AUTOMAKE
7 AC_CONFIG_SRCDIR([comgt.h])
8 AC_CONFIG_HEADERS([config.h])
9
10 # Checks for programs.
11 AC_PROG_CC
12
13 # Checks for libraries.
14
15 # Checks for header files.
16 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/ioctl.h sys/time.h termio.h unistd.h])
17
18 # Checks for typedefs, structures, and compiler characteristics.
19
20 # Checks for library functions.
21 AC_FUNC_FORK
22 AC_FUNC_MALLOC
23 AC_FUNC_REALLOC
24 AC_CHECK_FUNCS([getcwd gettimeofday putenv select setenv])
25
26 AC_CONFIG_FILES([Makefile])
27 AC_OUTPUT
This page took 0.053864 seconds and 3 git commands to generate.