Any autotools geniuses out there?

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.)

Published by

Thomas Thurman

Mostly themes, triaging, and patch review.

2 thoughts on “Any autotools geniuses out there?”

  1. 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

  2. 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

Leave a Reply

Your email address will not be published. Required fields are marked *

Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported.