Modified the command line encoder and decoder to accept input from stdin and
[schroedinger-tools.git] / configure.ac
blob2f7a6d2a68a190447fcb09dcefd2f12893884f02
1 AC_PREREQ(2.61)
2 AC_INIT([schroedinger-tools],[1.0])
3 AC_CONFIG_HEADERS(config.h)
5 AM_INIT_AUTOMAKE(1.6)
7 AC_PROG_CXX
9 ACLOCAL_AMFLAGS="-I m4 $ACLOCAL_AMFLAGS"
10 AC_SUBST(ACLOCAL_AMFLAGS)
12 AX_BOOST_BASE([1.33])
13 AX_BOOST_PROGRAM_OPTIONS
15 ############################
16 # Schroedinger library
17 ############################
18 SCHRO_VER="1.0"
19 PKG_CHECK_MODULES(SCHROEDINGER, schroedinger-1.0 >= $SCHRO_VER, HAVE_SCHRO=yes, HAVE_SCHRO=no)
20 if test "x${HAVE_SCHRO}" != xyes ; then
21         AC_MSG_ERROR([schroedinger-1.0 >= $SCHRO_VER is required])
24 AC_SUBST(SCHROEDINGER_CFLAGS)
25 AC_SUBST(SCHROEDINGER_LIBS)
27 AC_CONFIG_FILES([
28 Makefile
29 src/Makefile
31 AC_OUTPUT