New class: DeliveryProperties
[qpidc-trampoline.git] / configure.in
blobd0c8d176115b06d0f4c035655e0082bb6d5ac48b
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.63])
5 AC_INIT([Qpidc trampoline], [0.1], [v.mayatskih@gmail.com])
6 AM_INIT_AUTOMAKE(Qpidc-trampoline, 0.1)
7 AC_CONFIG_SRCDIR([config.h.in])
8 AC_CONFIG_HEADERS([config.h])
9 AC_CONFIG_MACRO_DIR([m4])
11 # Checks for programs.
12 AC_PROG_CXX
13 AC_PROG_CC
14 AC_PROG_LIBTOOL
16 # Checks for header files.
17 AC_CHECK_HEADERS([stdint.h])
19 # Checks for typedefs, structures, and compiler characteristics.
20 AC_C_INLINE
21 AC_TYPE_UINT16_T
22 AC_TYPE_UINT32_T
23 AC_TYPE_UINT64_T
24 AC_TYPE_UINT8_T
26 # Checks for library functions.
28 AC_CONFIG_FILES([Makefile
29                  src/Makefile
30                  test/Makefile])
31 AC_OUTPUT