Removed unnecessary build dependencies.
[profile/ivi/ico-vic-carsimulator.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.68])
5 AC_INIT([ico-vic-carsim], [0.9.06], [shibata@mac.tec.toyota.co.jp])
6 AM_INIT_AUTOMAKE([1.11 foreign])
7 AC_CONFIG_SRCDIR([config.h.in])
8 AC_CONFIG_HEADERS([config.h])
9
10 # Checks for programs.
11 AC_PROG_CXX
12 AC_PROG_CC
13
14 # Checks for libraries.
15
16 # Checks for header files.
17 AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h unistd.h])
18
19 # Checks for typedefs, structures, and compiler characteristics.
20 AC_HEADER_STDBOOL
21 AC_TYPE_SIZE_T
22 AC_TYPE_UINT16_T
23
24 # Checks for library functions.
25 AC_FUNC_MALLOC
26 AC_FUNC_STRTOD
27 AC_CHECK_FUNCS([gettimeofday memset select socket strerror strncasecmp strrchr strtol])
28
29 AC_CONFIG_FILES([Makefile
30                  src/Makefile ])
31 AC_PROG_RANLIB
32 AC_OUTPUT