Merged jcorgan/ezdop into trunk.
[debian/gnuradio] / ezdop / src / host / hunter / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.59)
5 AC_INIT(hunter, 0.1svn, jcorgan@aeinet.com)
6 AM_INIT_AUTOMAKE
7
8 AC_CONFIG_SRCDIR([src/hunter.cc])
9 AC_CONFIG_HEADER([config.h])
10
11 # Checks for programs.
12 AC_PROG_CXX
13 AC_PROG_CC
14
15 # Checks for libraries.
16
17 # Checks for header files.
18 AC_CHECK_HEADERS([fcntl.h sys/ioctl.h termios.h unistd.h])
19
20 # Checks for typedefs, structures, and compiler characteristics.
21 AC_HEADER_STDBOOL
22 AC_C_CONST
23 AC_C_INLINE
24 AC_TYPE_SIZE_T
25 AC_STRUCT_TM
26
27 # Checks for library functions.
28 AC_PROG_GCC_TRADITIONAL
29 AC_HEADER_STDC
30 AC_FUNC_MKTIME
31 AC_CHECK_FUNCS([modf sqrt])
32
33 # Application specific checks
34 HUNTER_WX
35 HUNTER_FTDI
36
37 AC_CONFIG_FILES([ \
38     Makefile
39     src/Makefile
40 ])
41
42 AC_OUTPUT