Remove status_ member
[Arachnida.git] / project / gnu / configure.ac.in
blob37fffb9b5b98363ea4492256290fca3a7697fea4
1 # Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.53)
3 AC_INIT([$$__PACKAGE__$$],[$$__VERSION__$$],[ronald (at) landheer-cieslak (dot) com])
4 AC_CONFIG_SRCDIR([project/gnu/configure.ac.in])
6 # Checks for programs.
7 AC_PROG_CXX
8 AC_PROG_MAKE_SET
9 AC_DISABLE_STATIC
10 AC_PROG_LIBTOOL
12 # Checks for libraries.
13 AC_ARG_WITH([boost-headers], [Tell configury where the Boost headers are], [
14         if test X"no" = X"$withval"; then
15                 echo "You must have Boost"
16                 exit 1;
17         else
18                 AC_SUBST(BOOST_INCLUDE, ${withval})
19                 AC_LANG_PUSH(C++)
20                 CPPFLAGS="$CPPFLAGS -I${withval}"
21                 AC_CHECK_HEADERS([boost/version.hpp], [], [
22                         echo "Couldn't find Boost headers"
23                         exit 1;
24                 ])
25                 AC_LANG_POP(C++)
26         fi
27 ], [
28         echo "Boost headers should be in the default search path"
29         AC_SUBST(BOOST_INCLUDE, "")
30         AC_LANG_PUSH(C++)
31         CPPFLAGS="$CPPFLAGS -I${withval}"
32         AC_CHECK_HEADERS([boost/version.hpp], [], [
33                 echo "Couldn't find Boost headers"
34                 exit 1;
35         ])
36         AC_LANG_POP(C++)
39 AC_CONFIG_FILES([Makefile])
40 AC_OUTPUT