1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.69])
5AC_INIT([UnitTest++], [1.4.1], [[email protected]])
6AC_CONFIG_SRCDIR([UnitTest++/TestDetails.cpp])
7AC_CONFIG_MACRO_DIR([m4])
8AC_CONFIG_HEADERS([config.h])
9
10AM_INIT_AUTOMAKE([foreign])
11LT_INIT()
12
13AC_SUBST([LIBUNITTEST_SO_VERSION], [1:4:1])
14
15# Checks for programs.
16AC_PROG_CXX
17AC_PROG_CC
18
19# Checks for libraries.
20
21# Checks for header files.
22AC_CHECK_HEADERS([sys/time.h unistd.h setjmp.h signal.h cassert cstddef cstdio cstring exception iosfwd iostream sstream string vector])
23
24# Checks for typedefs, structures, and compiler characteristics.
25AC_CHECK_HEADER_STDBOOL
26AC_C_INLINE
27AC_TYPE_SIZE_T
28
29# Checks for library functions.
30AC_CHECK_FUNCS([gettimeofday strstr])
31
32AC_CONFIG_FILES([Makefile
33		 UnitTest++/Makefile])
34AC_OUTPUT
35