Prevent Spot from using an installed BuDDy version that does not

have the latest function we added.  Reported by Kristin Rozier.

* m4/buddy.m4 (AX_CHECK_BUDDY): Check for bdd_setxor.
This commit is contained in:
Alexandre Duret-Lutz 2011-02-04 21:28:17 +01:00
parent 30727074fd
commit 067a1a0b24
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2011-02-04 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Prevent Spot from using an installed BuDDy version that does not
have the latest function we added. Reported by Kristin Rozier.
* m4/buddy.m4 (AX_CHECK_BUDDY): Check for bdd_setxor.
2011-02-04 Alexandre Duret-Lutz <adl@lrde.epita.fr> 2011-02-04 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Add a way to count the number of sub-transitions. Add a way to count the number of sub-transitions.

View file

@ -2,7 +2,7 @@ AC_DEFUN([AX_CHECK_BUDDY], [
AC_ARG_WITH([included-buddy], AC_ARG_WITH([included-buddy],
[AC_HELP_STRING([--with-included-buddy], [AC_HELP_STRING([--with-included-buddy],
[use the BuDDy library inclued here])]) [use the BuDDy library inclued here])])
AC_CHECK_LIB([bdd], [bdd_satprefix], AC_CHECK_LIB([bdd], [bdd_setxor],
[need_included_buddy=no], [need_included_buddy=no],
[need_included_buddy=yes]) [need_included_buddy=yes])