Fix for internal bug.
[profile/ivi/ico-uxf-homescreen-sample-apps.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-uxf-HomeScreen-sample-app], [0.0.1], [https://BUG-REPORT-ADDRESS])
6 AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror foreign silent-rules])
7 AC_CONFIG_SRCDIR([ico-app-vicsample/src/vicsample.c])
8 AC_CONFIG_HEADERS([config.h])
9
10 # Checks for programs.
11 AC_PROG_CXX
12 AC_PROG_CC
13 AC_PROG_INSTALL
14
15 # Checks for libraries.
16
17 # Checks for header files.
18 AC_CHECK_HEADERS([stddef.h stdlib.h string.h unistd.h])
19
20 # Checks for typedefs, structures, and compiler characteristics.
21 AC_HEADER_STDBOOL
22 AC_TYPE_PID_T
23 AC_TYPE_SIZE_T
24 AC_TYPE_UINT8_T
25
26 # Checks for library functions.
27 AC_FUNC_FORK
28 AC_FUNC_MALLOC
29 AC_CHECK_FUNCS([gettimeofday memset sqrt strcasecmp strncasecmp strtol tzset])
30 AC_CONFIG_FILES([Makefile
31                  ico-app-samplenavi/src/Makefile
32                  ico-app-soundsample/src/Makefile
33                  ico-app-vicsample/src/Makefile])
34
35 AC_OUTPUT