OSDN Git Service

TS分離用テストコードの削除など
[tsparser/tsparser.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.65])
5 AC_INIT([tsparser], [20110219], [koukou@users.sourceforge.jp])
6 AM_INIT_AUTOMAKE([foreign])
7 AC_CONFIG_SRCDIR([src/tsparser.cpp])
8 AC_CONFIG_HEADERS([config.h])
9
10 # Checks for programs.
11 AC_PROG_CXX
12 AC_PROG_CC
13 AC_PROG_RANLIB
14
15 # Checks for libraries.
16
17 # Checks for header files.
18 AC_CHECK_HEADERS([fcntl.h inttypes.h stdlib.h string.h unistd.h])
19
20 # Checks for typedefs, structures, and compiler characteristics.
21 AC_HEADER_STDBOOL
22 AC_C_INLINE
23 AC_TYPE_INT16_T
24 AC_TYPE_INT32_T
25 AC_TYPE_SIZE_T
26 AC_TYPE_SSIZE_T
27 AC_TYPE_UINT16_T
28 AC_TYPE_UINT32_T
29 AC_TYPE_UINT8_T
30
31 # Checks for library functions.
32 AC_FUNC_MKTIME
33 AC_CHECK_FUNCS([memmove memset])
34
35 AC_CONFIG_FILES([Makefile
36                  src/ARIB/Makefile
37                  src/Makefile
38                  src/TS/Makefile])
39 AC_OUTPUT