aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index ad5cdaf20..b5b957212 100644
--- a/configure.ac
+++ b/configure.ac
@@ -257,10 +257,9 @@ AC_CHECK_HEADERS(glpk.h, ,[a=false])
257AC_CHECK_LIB([glpk],[glp_create_prob], , [a=false]) 257AC_CHECK_LIB([glpk],[glp_create_prob], , [a=false])
258if test $a == false 258if test $a == false
259then 259then
260 AC_MSG_NOTICE([Feature b0rk is missing.])
261 AM_CONDITIONAL(HAVE_GLPK, [test x$a = xtrue]) 260 AM_CONDITIONAL(HAVE_GLPK, [test x$a = xtrue])
261 AM_CONDITIONAL(HAVE_LIBGLPK, [test x$a != x$a])
262else 262else
263 AC_MSG_NOTICE([Feature b0rk is present.])
264 AM_CONDITIONAL(HAVE_GLPK, [test x$a = xtrue]) 263 AM_CONDITIONAL(HAVE_GLPK, [test x$a = xtrue])
265 AM_CONDITIONAL(HAVE_LIBGLPK, [test x$a = x$a]) 264 AM_CONDITIONAL(HAVE_LIBGLPK, [test x$a = x$a])
266fi 265fi