1 AC_DEFUN([LX_CHECK_CLP],
4 AS_HELP_STRING([--with-clp@<:@=PREFIX@:>@], [search for CLP under PREFIX or under the default search paths if PREFIX is not given @<:@default@:>@])
5 AS_HELP_STRING([--without-clp], [disable checking for CLP]),
8 AC_ARG_WITH([clp-includedir],
9 AS_HELP_STRING([--with-clp-includedir=DIR], [search for CLP headers in DIR]),
10 [], [with_clp_includedir=no])
12 AC_ARG_WITH([clp-libdir],
13 AS_HELP_STRING([--with-clp-libdir=DIR], [search for CLP libraries in DIR]),
14 [], [with_clp_libdir=no])
17 if test x"$with_clp" != x"no"; then
18 AC_MSG_CHECKING([for CLP])
20 if test x"$with_clp_includedir" != x"no"; then
21 CLP_CXXFLAGS="-I$with_clp_includedir"
22 elif test x"$with_clp" != x"yes"; then
23 CLP_CXXFLAGS="-I$with_clp/include"
26 if test x"$with_clp_libdir" != x"no"; then
27 CLP_LDFLAGS="-L$with_clp_libdir"
28 elif test x"$with_clp" != x"yes"; then
29 CLP_LDFLAGS="-L$with_clp/lib"
31 CLP_LIBS="-lClp -lCoinUtils -lm"
33 lx_save_cxxflags="$CXXFLAGS"
34 lx_save_ldflags="$LDFLAGS"
36 CXXFLAGS="$CLP_CXXFLAGS"
37 LDFLAGS="$CLP_LDFLAGS"
41 #include <coin/ClpModel.hpp>
43 int main(int argc, char** argv)
50 AC_LINK_IFELSE([$lx_clp_test_prog], [lx_clp_found=yes], [lx_clp_found=no])
53 CXXFLAGS="$lx_save_cxxflags"
54 LDFLAGS="$lx_save_ldflags"
57 if test x"$lx_clp_found" = x"yes"; then
58 AC_DEFINE([HAVE_CLP], [1], [Define to 1 if you have CLP.])
60 AC_DEFINE([HAVE_LP], [1], [Define to 1 if you have any LP solver.])
69 CLP_LIBS="$CLP_LDFLAGS $CLP_LIBS"
70 AC_SUBST(CLP_CXXFLAGS)
72 AM_CONDITIONAL([HAVE_CLP], [test x"$lx_clp_found" = x"yes"])