-Support for the SeekHead element for quicker loading.
[libmkv.git] / configure.in
bloba0e0cab438f939e8223fa693e0a640107b34a5ed
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ(2.61)
5 AC_INIT(libmkv, 55, saintdev@gmail.com)
6 AC_CONFIG_SRCDIR([include/libmkv.h])
7 AC_CONFIG_HEADER([config.h])
8 AM_INIT_AUTOMAKE(libmkv, 55)
10 # Checks for programs.
11 AC_PROG_CC
12 AC_PROG_LIBTOOL
14 # Checks for libraries.
16 # Checks for header files.
17 AC_HEADER_STDC
18 AC_CHECK_HEADERS([inttypes.h stdint.h stdlib.h string.h])
20 # Checks for typedefs, structures, and compiler characteristics.
21 AC_C_CONST
22 AC_TYPE_INT64_T
23 AC_TYPE_SIZE_T
24 AC_TYPE_UINT32_T
25 AC_TYPE_UINT64_T
26 AC_TYPE_UINT8_T
28 # Checks for library functions.
29 AC_FUNC_MALLOC
30 AC_FUNC_REALLOC
31 AC_CHECK_FUNCS([memset strdup])
33 AC_CONFIG_FILES([Makefile
34                  include/Makefile
35                  src/Makefile
36                  test/Makefile])
37 AC_OUTPUT