configure.ac: Fix (unused) AM_CONDITIONAL tests.

Original commit message from CVS:
* configure.ac:
Fix (unused) AM_CONDITIONAL tests.
This commit is contained in:
Tim-Philipp Müller 2005-10-02 18:30:27 +00:00
parent 5b5e1702fe
commit cfd31847d7
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-10-02 Tim-Philipp Müller <tim at centricular dot net>
* configure.ac:
Fix (unused) AM_CONDITIONAL tests.
2005-10-01 Alessandro Decina <alessandro at nnva dot org>
Reviewed by: Tim-Philipp Müller <tim at centricular dot net>

View file

@ -496,8 +496,8 @@ dnl #############################
dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
dnl HAVE_ and it is likely to be easier to stick with the old name
AM_CONDITIONAL(EXPERIMENTAL, test "x$EXPERIMENTAL" = "yes")
AM_CONDITIONAL(BROKEN, test "x$BROKEN" = "yes")
AM_CONDITIONAL(EXPERIMENTAL, test "x$EXPERIMENTAL" = "xyes")
AM_CONDITIONAL(BROKEN, test "x$BROKEN" = "xyes")
AM_CONDITIONAL(PLUGINS_USE_BUILDDIR, test "x$PLUGINS_USE_BUILDDIR" = "xyes")