1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT([LEMON], [svnhead], [etik-ol@cs.elte.hu], [lemon])
4 AC_CONFIG_AUX_DIR([build-aux])
5 AC_CONFIG_MACRO_DIR([m4])
6 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
7 AC_CONFIG_SRCDIR([lemon/list_graph.h])
8 AC_CONFIG_HEADERS([config.h lemon/config.h])
10 lx_cmdline_cxxflags_set=${CXXFLAGS+set}
12 dnl Checks for programs.
19 if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
20 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"
23 AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
25 dnl Checks for libraries.
30 dnl Enable/disable installing the documentation
32 AS_HELP_STRING([--enable-doc@<:@=yes|no|full@:>@], [build the documentation (full enables internal documentation too) @<:@default=yes@:>@])
33 AS_HELP_STRING([--disable-doc], [do not build the documentation]),
36 AC_MSG_CHECKING([whether to build the documention])
39 DOXYGEN_INTERNAL_DOCS=NO
43 DOXYGEN_INTERNAL_DOCS=YES
47 DOXYGEN_INTERNAL_DOCS=NO
51 AC_MSG_ERROR([bad value $enable_doc for option --enable-doc])
54 AC_SUBST(DOXYGEN_INTERNAL_DOCS)
55 AM_CONDITIONAL([WANT_DOC], [test x"$enable_doc" != x"no"])
57 dnl Disable/enable building the demo programs
59 AS_HELP_STRING([--enable-demo], [build the demo programs])
60 AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
62 AC_MSG_CHECKING([whether to build the demo programs])
63 if test x"$enable_demo" != x"no"; then
68 AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
70 dnl Disable/enable building the binary tools
71 AC_ARG_ENABLE([tools],
72 AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
73 AS_HELP_STRING([--disable-tools], [do not build additional tools]),
74 [], [enable_tools=yes])
75 AC_MSG_CHECKING([whether to build the additional tools])
76 if test x"$enable_tools" != x"no"; then
81 AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
83 dnl Disable/enable building the benchmarks
84 AC_ARG_ENABLE([benchmark],
85 AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
86 AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
87 [], [enable_benchmark=no])
88 AC_MSG_CHECKING([whether to build the benchmarks])
89 if test x"$enable_benchmark" != x"no"; then
94 AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
96 dnl Checks for header files.
97 AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
99 dnl Checks for typedefs, structures, and compiler characteristics.
106 dnl Checks for library functions.
108 AC_CHECK_FUNCS(gettimeofday times ctime_r)
113 autopackage/default.apspec
121 echo '****************************** SUMMARY ******************************'
123 echo Package version............... : $PACKAGE-$VERSION
125 echo C++ compiler.................. : $CXX
126 echo C++ compiles flags............ : $CXXFLAGS
128 echo GLPK support.................. : $lx_glpk_found
129 echo CPLEX support................. : $lx_cplex_found
130 echo SOPLEX support................ : $lx_soplex_found
132 echo build benchmarks.............. : $enable_benchmark
133 echo build demo programs........... : $enable_demo
134 echo build additional tools........ : $enable_tools
136 echo The packace will be installed in
140 echo The documentation will be installed in
142 eval echo ${datadir}/doc/$PACKAGE.
144 echo '*********************************************************************'
147 echo configure complete, now type \'make\' and then \'make install\'.