configure.ac: Build dricommon for DRI gallium drivers
authorMatt Turner <mattst88@gmail.com>
Tue, 5 Mar 2013 18:25:55 +0000 (10:25 -0800)
committerMatt Turner <mattst88@gmail.com>
Sat, 9 Mar 2013 05:21:46 +0000 (21:21 -0800)
commit07f2dee7319b084e00288d74b29b07b62d888948
tree18c39610f9034e9f05ab89ab209688dd48dac686
parent7de78ce5e5f5dc635846a3d935aaf2f4407e2dfa
configure.ac: Build dricommon for DRI gallium drivers

Commit 67ef7559 added an || test "x$enable_dri" check in an attempt to
get the DRI common bits built in some necessary cases. That change was
inappropriate as it made these common DRI pieces be built
unconditionally, so some builds were broken.

Subsequently, commit 998d975e3 change the "|| test" to a "-a"
conjunction within the existing test invocation. This made the '-a
"x$enable_dri" = xyes' clause have no effect, (as it was inside an
enclosing test for the same condition). So the new breakage from
commit 67ef7559 was addressed, but the original problems were
regressed.

The immediately preceding commit removed the redundant condition.

Now, finally this commit fixes the original problem as described in
the commit message of 67ef7559: this code should be compiled when
using the DRI state tracker. In order to do so, the HAVE_*_DRI
conditionals must be moved after the last assignment of HAVE_COMMON_DRI.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=61821
Tested-by: Stéphane Marchesin <marcheu@chromium.org>
configure.ac