dnl Process this file with autoconf to produce a configure script.
m4_define([lemon_version_major], [0])
m4_define([lemon_version_minor], [6])
m4_define([lemon_version_micro], [90])
m4_define([lemon_version_nano], [])
m4_define([lemon_version_tag], [hg])
m4_define([lemon_hg_revision], [m4_normalize(esyscmd([hg tip --template '{node|short}']))])
m4_define([lemon_version], [lemon_version_major().lemon_version_minor()ifelse(lemon_version_micro(), [], [], [.lemon_version_micro()])ifelse(lemon_version_nano(), [], [], [.lemon_version_nano()])ifelse(lemon_version_tag(), [], [], lemon_version_tag(), [hg], [[_]lemon_version_tag()[_]lemon_hg_revision()], [[_]lemon_version_tag()])])
AC_INIT([LEMON], [lemon_version()], [etik-ol@cs.elte.hu], [lemon])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_CONFIG_SRCDIR([lemon/list_graph.h])
AC_CONFIG_HEADERS([config.h lemon/config.h])
lx_cmdline_cxxflags_set=${CXXFLAGS+set}
if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
dnl Checks for libraries.
dnl Enable/disable installing the documentation
AS_HELP_STRING([--enable-doc@<:@=yes|no|full@:>@], [build the documentation (full enables internal documentation too) @<:@default=yes@:>@])
AS_HELP_STRING([--disable-doc], [do not build the documentation]),
AC_MSG_CHECKING([whether to build the documention])
DOXYGEN_INTERNAL_DOCS=YES
AC_MSG_ERROR([bad value $enable_doc for option --enable-doc])
AC_SUBST(DOXYGEN_INTERNAL_DOCS)
AM_CONDITIONAL([WANT_DOC], [test x"$enable_doc" != x"no"])
dnl Disable/enable building the demo programs
AS_HELP_STRING([--enable-demo], [build the demo programs])
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
AC_MSG_CHECKING([whether to build the demo programs])
if test x"$enable_demo" != x"no"; then
AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
dnl Disable/enable building the binary tools
AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
AS_HELP_STRING([--disable-tools], [do not build additional tools]),
AC_MSG_CHECKING([whether to build the additional tools])
if test x"$enable_tools" != x"no"; then
AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
dnl Disable/enable building the benchmarks
AC_ARG_ENABLE([benchmark],
AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
[], [enable_benchmark=no])
AC_MSG_CHECKING([whether to build the benchmarks])
if test x"$enable_benchmark" != x"no"; then
AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
dnl Checks for header files.
AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for library functions.
AC_CHECK_FUNCS(gettimeofday times ctime_r)
echo '****************************** SUMMARY ******************************'
echo Package version............... : $PACKAGE-$VERSION
echo C++ compiler.................. : $CXX
echo C++ compiles flags............ : $CXXFLAGS
echo GLPK support.................. : $lx_glpk_found
echo CPLEX support................. : $lx_cplex_found
echo SOPLEX support................ : $lx_soplex_found
echo build benchmarks.............. : $enable_benchmark
echo build demo programs........... : $enable_demo
echo build additional tools........ : $enable_tools
echo The packace will be installed in
echo The documentation will be installed in
eval echo ${datadir}/doc/$PACKAGE.
echo '*********************************************************************'
echo configure complete, now type \'make\' and then \'make install\'.