I can’t tell why this setup doesn’t compile test/veracity/veracity.c. What am I missing? I freely admit I suck at autotools.
(veracity there is not much like the version which will end up being merged at all– it’s just the bones.)
I can’t tell why this setup doesn’t compile test/veracity/veracity.c. What am I missing? I freely admit I suck at autotools.
(veracity there is not much like the version which will end up being merged at all– it’s just the bones.)
Comments are closed.
apply the following patch and run ./configure –enable-veracity
Index: configure.in
===================================================================
— configure.in (revision 4083)
+++ configure.in (working copy)
@@ -252,7 +252,7 @@
else
use_veracity=no
fi
-AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xyes)
+AM_CONDITIONAL(BUILD_TESTS, test x$enable_veracity = xyes)
## if no compositor, still possibly enable render
if test x$have_xcomposite = xno; then
In configure.in replace:
AM_CONDITIONAL(BUILD_TESTS, test x$build_tests = xyes)
with:
AM_CONDITIONAL(BUILD_TESTS, test x$enable_veracity = xyes)
and run ./configure –enable-veracity