1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
AC_DEFUN([LX_CHECK_COIN],
[
AC_ARG_WITH([coin],
AS_HELP_STRING([--with-coin@<:@=PREFIX@:>@], [search for CLP under PREFIX or under the default search paths if PREFIX is not given @<:@default@:>@])
AS_HELP_STRING([--without-coin], [disable checking for CLP]),
[], [with_coin=yes])
AC_ARG_WITH([coin-includedir],
AS_HELP_STRING([--with-coin-includedir=DIR], [search for CLP headers in DIR]),
[], [with_coin_includedir=no])
AC_ARG_WITH([coin-libdir],
AS_HELP_STRING([--with-coin-libdir=DIR], [search for CLP libraries in DIR]),
[], [with_coin_libdir=no])
lx_clp_found=no
if test x"$with_coin" != x"no"; then
AC_MSG_CHECKING([for CLP])
if test x"$with_coin_includedir" != x"no"; then
CLP_CXXFLAGS="-I$with_coin_includedir"
elif test x"$with_coin" != x"yes"; then
CLP_CXXFLAGS="-I$with_coin/include"
fi
if test x"$with_coin_libdir" != x"no"; then
CLP_LDFLAGS="-L$with_coin_libdir"
elif test x"$with_coin" != x"yes"; then
CLP_LDFLAGS="-L$with_coin/lib"
fi
CLP_LIBS="-lClp -lCoinUtils -lm"
lx_save_cxxflags="$CXXFLAGS"
lx_save_ldflags="$LDFLAGS"
lx_save_libs="$LIBS"
CXXFLAGS="$CLP_CXXFLAGS"
LDFLAGS="$CLP_LDFLAGS"
LIBS="$CLP_LIBS"
lx_clp_test_prog='
#include <coin/ClpModel.hpp>
int main(int argc, char** argv)
{
ClpModel clp;
return 0;
}'
AC_LANG_PUSH(C++)
AC_LINK_IFELSE([$lx_clp_test_prog], [lx_clp_found=yes], [lx_clp_found=no])
AC_LANG_POP(C++)
CXXFLAGS="$lx_save_cxxflags"
LDFLAGS="$lx_save_ldflags"
LIBS="$lx_save_libs"
if test x"$lx_clp_found" = x"yes"; then
AC_DEFINE([LEMON_HAVE_CLP], [1], [Define to 1 if you have CLP.])
lx_lp_found=yes
AC_DEFINE([LEMON_HAVE_LP], [1], [Define to 1 if you have any LP solver.])
AC_MSG_RESULT([yes])
else
CLP_CXXFLAGS=""
CLP_LDFLAGS=""
CLP_LIBS=""
AC_MSG_RESULT([no])
fi
fi
CLP_LIBS="$CLP_LDFLAGS $CLP_LIBS"
AC_SUBST(CLP_CXXFLAGS)
AC_SUBST(CLP_LIBS)
AM_CONDITIONAL([HAVE_CLP], [test x"$lx_clp_found" = x"yes"])
lx_cbc_found=no
if test x"$lx_clp_found" = x"yes"; then
if test x"$with_coin" != x"no"; then
AC_MSG_CHECKING([for CBC])
if test x"$with_coin_includedir" != x"no"; then
CBC_CXXFLAGS="-I$with_coin_includedir"
elif test x"$with_coin" != x"yes"; then
CBC_CXXFLAGS="-I$with_coin/include"
fi
if test x"$with_coin_libdir" != x"no"; then
CBC_LDFLAGS="-L$with_coin_libdir"
elif test x"$with_coin" != x"yes"; then
CBC_LDFLAGS="-L$with_coin/lib"
fi
CBC_LIBS="-lOsi -lCbc -lCbcSolver -lClp -lOsiClp -lCoinUtils -lVol -lOsiVol -lCgl -lm -llapack -lblas"
lx_save_cxxflags="$CXXFLAGS"
lx_save_ldflags="$LDFLAGS"
lx_save_libs="$LIBS"
CXXFLAGS="$CBC_CXXFLAGS"
LDFLAGS="$CBC_LDFLAGS"
LIBS="$CBC_LIBS"
lx_cbc_test_prog='
#include <coin/CbcModel.hpp>
int main(int argc, char** argv)
{
CbcModel cbc;
return 0;
}'
AC_LANG_PUSH(C++)
AC_LINK_IFELSE([$lx_cbc_test_prog], [lx_cbc_found=yes], [lx_cbc_found=no])
AC_LANG_POP(C++)
CXXFLAGS="$lx_save_cxxflags"
LDFLAGS="$lx_save_ldflags"
LIBS="$lx_save_libs"
if test x"$lx_cbc_found" = x"yes"; then
AC_DEFINE([LEMON_HAVE_CBC], [1], [Define to 1 if you have CBC.])
lx_lp_found=yes
AC_DEFINE([LEMON_HAVE_LP], [1], [Define to 1 if you have any LP solver.])
lx_mip_found=yes
AC_DEFINE([LEMON_HAVE_MIP], [1], [Define to 1 if you have any MIP solver.])
AC_MSG_RESULT([yes])
else
CBC_CXXFLAGS=""
CBC_LDFLAGS=""
CBC_LIBS=""
AC_MSG_RESULT([no])
fi
fi
fi
CBC_LIBS="$CBC_LDFLAGS $CBC_LIBS"
AC_SUBST(CBC_CXXFLAGS)
AC_SUBST(CBC_LIBS)
AM_CONDITIONAL([HAVE_CBC], [test x"$lx_cbc_found" = x"yes"])
])
|