prepare the 20090129 release
[hdapsd.git] / configure.ac
blobaae253f613c3df3f0a4b6abadffdcacd36c3c8f7
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ(2.61)
5 AC_INIT(hdapsd, 20090129, hdaps-devel@lists.sourceforge.net)
6 AM_INIT_AUTOMAKE([foreign])
7 AC_CONFIG_SRCDIR([src/hdapsd.c])
8 AC_CONFIG_HEADERS([src/config.h])
9 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile misc/Makefile])
11 # Checks for programs.
12 AC_PROG_CC
14 # Checks for libraries.
16 # Checks for header files.
17 AC_HEADER_STDC
18 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h syslog.h])
20 # Checks for typedefs, structures, and compiler characteristics.
21 AC_C_CONST
22 AC_HEADER_TIME
24 # Checks for library functions.
25 AC_TYPE_SIGNAL
26 AC_CHECK_FUNCS([gettimeofday strerror uname])
28 AC_OUTPUT