Close the current Cluster after no more than 2 sec.
[libmkv.git] / configure.in
blob795cd8f01ab3f8639241eca69847a6b56d14b5a8
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ(2.61)
5 AC_INIT(libmkv, 0.6.1, saintdev@gmail.com)
6 AC_CONFIG_SRCDIR([include/libmkv.h])
7 AC_CONFIG_HEADER([config.h])
8 AM_INIT_AUTOMAKE(libmkv, 0.6.1)
10 # Checks for programs.
11 AC_PROG_CC
12 AC_PROG_LIBTOOL
13 AC_PROG_INSTALL
15 # Checks for libraries.
17 # Checks for header files.
18 AC_HEADER_STDC
19 AC_CHECK_HEADERS([inttypes.h stdint.h stdlib.h string.h])
21 # Checks for typedefs, structures, and compiler characteristics.
22 AC_C_CONST
23 AC_TYPE_INT64_T
24 AC_TYPE_SIZE_T
25 AC_TYPE_INT8_T
26 AC_TYPE_OFF_T
27 AC_TYPE_UINT32_T
28 AC_TYPE_UINT64_T
29 AC_TYPE_UINT8_T
31 # Checks for library functions.
32 AC_FUNC_MALLOC
33 AC_FUNC_REALLOC
34 AC_CHECK_FUNCS([memset strdup])
36 AC_CONFIG_FILES([Makefile
37                  include/Makefile
38                  src/Makefile
39                  test/Makefile])
40 AC_OUTPUT