| 1 | 1 |
dnl Process this file with autoconf to produce a configure script. |
| 2 | 2 |
|
| 3 | 3 |
dnl Version information. |
| 4 |
m4_define([lemon_version_major], [0]) |
|
| 5 |
m4_define([lemon_version_minor], [99]) |
|
| 6 |
m4_define([lemon_version_micro], []) |
|
| 7 |
m4_define([lemon_version_nano], []) |
|
| 8 |
m4_define([ |
|
| 4 |
m4_define([lemon_version_number], []) |
|
| 9 | 5 |
m4_define([lemon_hg_revision], [m4_normalize(esyscmd([hg id -i]))]) |
| 10 |
m4_define([lemon_version], [ |
|
| 6 |
m4_define([lemon_version], [ifelse(lemon_version_number(), [], [lemon_hg_revision()], [lemon_version_number()])]) |
|
| 11 | 7 |
|
| 12 | 8 |
AC_PREREQ([2.59]) |
| 13 | 9 |
AC_INIT([LEMON], [lemon_version()], [lemon-devel@lemon.cs.elte.hu], [lemon]) |
| 14 | 10 |
AC_CONFIG_AUX_DIR([build-aux]) |
| 15 | 11 |
AC_CONFIG_MACRO_DIR([m4]) |
| 16 | 12 |
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects nostdinc]) |
| 17 | 13 |
AC_CONFIG_SRCDIR([lemon/list_graph.h]) |
| 18 | 14 |
AC_CONFIG_HEADERS([config.h lemon/config.h]) |
| 19 | 15 |
|
| 20 | 16 |
lx_cmdline_cxxflags_set=${CXXFLAGS+set}
|
| 21 | 17 |
|
| 22 | 18 |
dnl Checks for programs. |
| 23 | 19 |
AC_PROG_CXX |
| 24 | 20 |
AC_PROG_CXXCPP |
| 25 | 21 |
AC_PROG_INSTALL |
| 26 | 22 |
AC_DISABLE_SHARED |
| 27 | 23 |
AC_PROG_LIBTOOL |
| 28 | 24 |
|
| 29 | 25 |
AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no]) |
| 30 | 26 |
AC_CHECK_PROG([gs_found],[gs],[yes],[no]) |
| 31 | 27 |
|
| 32 | 28 |
if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then |
| 33 | 29 |
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" |
| 34 | 30 |
fi |
| 35 | 31 |
|
| 36 | 32 |
dnl Checks for libraries. |
| 37 | 33 |
LX_CHECK_GLPK |
| 38 | 34 |
LX_CHECK_CPLEX |
| 39 | 35 |
LX_CHECK_SOPLEX |
| 40 | 36 |
|
| 41 | 37 |
dnl Disable/enable building the demo programs |
| 42 | 38 |
AC_ARG_ENABLE([demo], |
| 43 | 39 |
AS_HELP_STRING([--enable-demo], [build the demo programs]) |
| 44 | 40 |
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]), |
| 45 | 41 |
[], [enable_demo=no]) |
| 46 | 42 |
AC_MSG_CHECKING([whether to build the demo programs]) |
| 47 | 43 |
if test x"$enable_demo" != x"no"; then |
| 48 | 44 |
AC_MSG_RESULT([yes]) |
| 49 | 45 |
else |
| 50 | 46 |
AC_MSG_RESULT([no]) |
| 51 | 47 |
fi |
| 52 | 48 |
AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"]) |
| 53 | 49 |
|
| 54 | 50 |
dnl Disable/enable building the binary tools |
| 55 | 51 |
AC_ARG_ENABLE([tools], |
| 56 | 52 |
AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@]) |
| 57 | 53 |
AS_HELP_STRING([--disable-tools], [do not build additional tools]), |
| 58 | 54 |
[], [enable_tools=yes]) |
| 59 | 55 |
AC_MSG_CHECKING([whether to build the additional tools]) |
| 60 | 56 |
if test x"$enable_tools" != x"no"; then |
| 61 | 57 |
AC_MSG_RESULT([yes]) |
| 62 | 58 |
else |
| 63 | 59 |
AC_MSG_RESULT([no]) |
| 64 | 60 |
fi |
| 65 | 61 |
AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"]) |
| 66 | 62 |
|
| 67 | 63 |
dnl Disable/enable building the benchmarks |
| 68 | 64 |
AC_ARG_ENABLE([benchmark], |
| 69 | 65 |
AS_HELP_STRING([--enable-benchmark], [build the benchmarks]) |
| 70 | 66 |
AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]), |
| 71 | 67 |
[], [enable_benchmark=no]) |
| 72 | 68 |
AC_MSG_CHECKING([whether to build the benchmarks]) |
| 73 | 69 |
if test x"$enable_benchmark" != x"no"; then |
| 74 | 70 |
AC_MSG_RESULT([yes]) |
| 75 | 71 |
else |
| 76 | 72 |
AC_MSG_RESULT([no]) |
| 77 | 73 |
fi |
| 78 | 74 |
AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"]) |
| 79 | 75 |
|
| 80 | 76 |
dnl Checks for header files. |
| 81 | 77 |
AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h) |
| 82 | 78 |
|
| 83 | 79 |
dnl Checks for typedefs, structures, and compiler characteristics. |
| 84 | 80 |
AC_C_CONST |
| 85 | 81 |
AC_C_INLINE |
| 86 | 82 |
AC_TYPE_SIZE_T |
| 87 | 83 |
AC_HEADER_TIME |
| 88 | 84 |
AC_STRUCT_TM |
| 89 | 85 |
|
| 90 | 86 |
dnl Checks for library functions. |
| 91 | 87 |
AC_HEADER_STDC |
| 92 | 88 |
AC_CHECK_FUNCS(gettimeofday times ctime_r) |
| 93 | 89 |
|
| 94 | 90 |
AC_CONFIG_FILES([ |
| 95 | 91 |
Makefile |
| 96 | 92 |
doc/Doxyfile |
| 97 | 93 |
lemon/lemon.pc |
| 98 | 94 |
]) |
| 99 | 95 |
|
| 100 | 96 |
AC_OUTPUT |
| 101 | 97 |
|
| 102 | 98 |
echo |
| 103 | 99 |
echo '****************************** SUMMARY ******************************' |
| 104 | 100 |
echo |
| 105 | 101 |
echo Package version............... : $PACKAGE-$VERSION |
| 106 | 102 |
echo |
0 comments (0 inline)