summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-12-17 18:56:19 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-12-17 18:56:19 -0500
commitaa1f9cc31014bfc916134e14a008fb5463348324 (patch)
treea7e7ea76e0c83e08e126631b177d4755ecff815b /configure.ac
parent464bbe3b057bde32b9e0e1aa1f989818dba585db (diff)
configure --with-portfolio disables CLN.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 80174b299..48ba71670 100644
--- a/configure.ac
+++ b/configure.ac
@@ -283,9 +283,11 @@ fi
# versions of CVC4
AC_CHECK_LIB(gmp, __gmpz_init, , [AC_MSG_ERROR([GNU MP (libgmp) not found, see http://gmplib.org/])])
-if test $cvc4_use_cln = 2 -a -n "$CVC4_BSD_LICENSED_CODE_ONLY"; then
- cvc4_use_cln=0
- cvc4_use_gmp=1
+if test $cvc4_use_cln = 2; then
+ if test -n "$CVC4_BSD_LICENSED_CODE_ONLY" -o "$with_portfolio" = yes; then
+ cvc4_use_cln=0
+ cvc4_use_gmp=1
+ fi
fi
if test $cvc4_use_cln != 0; then
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback