[Rt-commit] r12949 - rt/branches/3.8-TESTING
sartak at bestpractical.com
sartak at bestpractical.com
Thu Jun 5 19:28:21 EDT 2008
Author: sartak
Date: Thu Jun 5 19:28:20 2008
New Revision: 12949
Modified:
rt/branches/3.8-TESTING/ (props changed)
rt/branches/3.8-TESTING/configure.ac
Log:
r61752 at onn: sartak | 2008-06-05 19:28:12 -0400
Force some ./configure variables to be 1 or 0. GraphViz was empty for me which screwed up test-dependencies
Modified: rt/branches/3.8-TESTING/configure.ac
==============================================================================
--- rt/branches/3.8-TESTING/configure.ac (original)
+++ rt/branches/3.8-TESTING/configure.ac Thu Jun 5 19:28:20 2008
@@ -275,7 +275,7 @@
RT_GRAPHVIZ=$enableval)
if test "$RT_GRAPHVIZ" = yes; then
RT_GRAPHVIZ="1"
-elif test "$RT_GRAPHVIZ" = no; then
+else
RT_GRAPHVIZ="0"
fi
AC_SUBST(RT_GRAPHVIZ)
@@ -289,7 +289,7 @@
RT_GD=$enableval)
if test "$RT_GD" = yes; then
RT_GD="1"
-elif test "$RT_GD" = no; then
+else
RT_GD="0"
fi
AC_SUBST(RT_GD)
@@ -302,7 +302,7 @@
RT_GPG=$enableval)
if test "$RT_GPG" = yes; then
RT_GPG="1"
-elif test "$RT_GPG" = no; then
+else
RT_GPG="0"
fi
AC_SUBST(RT_GPG)
More information about the Rt-commit
mailing list