X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=configure.in;h=6e8b944fac52890a0b8da56db0f42e7272423e88;hp=a27fa39477a7ed8f1d7816fa5775b6b716c9f6c8;hb=d184c64894e6c4f3adb9467078acfc9e7446664a;hpb=ac7fdc22899c0c493fda5fdb3a4cb67e77504a6b diff --git a/configure.in b/configure.in index a27fa39..6e8b944 100644 --- a/configure.in +++ b/configure.in @@ -7,4 +7,17 @@ AC_LANG_CPLUSPLUS AC_PROG_CXX AM_PROG_LIBTOOL -AC_OUTPUT(Makefile src/Makefile) +dnl check for doxygen +AC_PATH_PROG(DOXYGEN, doxygen, $PATH) +AM_CONDITIONAL(HAVE_DOXYGEN, test -n $DOXYGEN); + +AM_CONDITIONAL(AUTOCHECK, test "$enable_autocheck" = yes) +AM_PATH_CPPUNIT(1.8.0) + +AX_BOOST([1.33]) +if test "x$BOOST_SERIALIZATION_LIB" = "x"; then + echo "Sorry, we need the Serialization-Lib from Boost." + exit 1 +fi + +AC_OUTPUT(Makefile doc/Doxyfile doc/Makefile src/Makefile libt2n.pc libt2n.spec test/Makefile)