| ... |
... |
@@ -10,26 +10,24 @@
|
| 10 |
10 |
[],
|
| 11 |
11 |
[lemon_hg_path().lemon_hg_revision()],
|
| 12 |
12 |
[lemon_version_number()])])
|
| 13 |
13 |
|
| 14 |
14 |
AC_PREREQ([2.59])
|
| 15 |
15 |
AC_INIT([LEMON], [lemon_version()], [lemon-user@lemon.cs.elte.hu], [lemon])
|
| 16 |
16 |
AC_CONFIG_AUX_DIR([build-aux])
|
| 17 |
17 |
AC_CONFIG_MACRO_DIR([m4])
|
| 18 |
18 |
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects nostdinc])
|
| 19 |
19 |
AC_CONFIG_SRCDIR([lemon/list_graph.h])
|
| 20 |
20 |
AC_CONFIG_HEADERS([config.h lemon/config.h])
|
| 21 |
21 |
|
| 22 |
|
lx_cmdline_cxxflags_set=${CXXFLAGS+set}
|
| 23 |
|
|
| 24 |
22 |
dnl Do compilation tests using the C++ compiler.
|
| 25 |
23 |
AC_LANG([C++])
|
| 26 |
24 |
|
| 27 |
25 |
dnl Checks for programs.
|
| 28 |
26 |
AC_PROG_CXX
|
| 29 |
27 |
AC_PROG_CXXCPP
|
| 30 |
28 |
AC_PROG_INSTALL
|
| 31 |
29 |
AC_DISABLE_SHARED
|
| 32 |
30 |
AC_PROG_LIBTOOL
|
| 33 |
31 |
|
| 34 |
32 |
AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
|
| 35 |
33 |
AC_CHECK_PROG([gs_found],[gs],[yes],[no])
|
| ... |
... |
@@ -37,27 +35,28 @@
|
| 37 |
35 |
dnl Detect Intel compiler.
|
| 38 |
36 |
AC_MSG_CHECKING([whether we are using the Intel C++ compiler])
|
| 39 |
37 |
AC_COMPILE_IFELSE([#ifndef __INTEL_COMPILER
|
| 40 |
38 |
choke me
|
| 41 |
39 |
#endif], [ICC=[yes]], [ICC=[no]])
|
| 42 |
40 |
if test x"$ICC" = x"yes"; then
|
| 43 |
41 |
AC_MSG_RESULT([yes])
|
| 44 |
42 |
else
|
| 45 |
43 |
AC_MSG_RESULT([no])
|
| 46 |
44 |
fi
|
| 47 |
45 |
|
| 48 |
46 |
dnl Set custom compiler flags when using g++.
|
| 49 |
|
if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes -a "$ICC" = no; then
|
| 50 |
|
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"
|
|
47 |
if test "$GXX" = yes -a "$ICC" = no; then
|
|
48 |
WARNINGCXXFLAGS="-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 -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
|
| 51 |
49 |
fi
|
|
50 |
AC_SUBST([WARNINGCXXFLAGS])
|
| 52 |
51 |
|
| 53 |
52 |
dnl Checks for libraries.
|
| 54 |
53 |
#LX_CHECK_GLPK
|
| 55 |
54 |
#LX_CHECK_CPLEX
|
| 56 |
55 |
#LX_CHECK_SOPLEX
|
| 57 |
56 |
|
| 58 |
57 |
dnl Disable/enable building the demo programs.
|
| 59 |
58 |
AC_ARG_ENABLE([demo],
|
| 60 |
59 |
AS_HELP_STRING([--enable-demo], [build the demo programs])
|
| 61 |
60 |
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
|
| 62 |
61 |
[], [enable_demo=no])
|
| 63 |
62 |
AC_MSG_CHECKING([whether to build the demo programs])
|
| ... |
... |
@@ -104,25 +103,25 @@
|
| 104 |
103 |
doc/Doxyfile
|
| 105 |
104 |
lemon/lemon.pc
|
| 106 |
105 |
])
|
| 107 |
106 |
|
| 108 |
107 |
AC_OUTPUT
|
| 109 |
108 |
|
| 110 |
109 |
echo
|
| 111 |
110 |
echo '****************************** SUMMARY ******************************'
|
| 112 |
111 |
echo
|
| 113 |
112 |
echo Package version............... : $PACKAGE-$VERSION
|
| 114 |
113 |
echo
|
| 115 |
114 |
echo C++ compiler.................. : $CXX
|
| 116 |
|
echo C++ compiles flags............ : $CXXFLAGS
|
|
115 |
echo C++ compiles flags............ : $WARNINGCXXFLAGS $CXXFLAGS
|
| 117 |
116 |
echo
|
| 118 |
117 |
#echo GLPK support.................. : $lx_glpk_found
|
| 119 |
118 |
#echo CPLEX support................. : $lx_cplex_found
|
| 120 |
119 |
#echo SOPLEX support................ : $lx_soplex_found
|
| 121 |
120 |
#echo
|
| 122 |
121 |
echo Build demo programs........... : $enable_demo
|
| 123 |
122 |
echo Build additional tools........ : $enable_tools
|
| 124 |
123 |
echo
|
| 125 |
124 |
echo The packace will be installed in
|
| 126 |
125 |
echo -n ' '
|
| 127 |
126 |
echo $prefix.
|
| 128 |
127 |
echo
|