Mesa (master): configure.ac: Fix equality checks in gallium st setup.

Eric Anholt anholt at kemper.freedesktop.org
Fri Oct 28 18:39:38 UTC 2011


Module: Mesa
Branch: master
Commit: 48c9925367034b6fac506f1f32d445c5bd825a49
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=48c9925367034b6fac506f1f32d445c5bd825a49

Author: Eric Anholt <eric at anholt.net>
Date:   Fri Oct 14 14:33:00 2011 -0700

configure.ac: Fix equality checks in gallium st setup.

---

 configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 11d81bc..ab3ba25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1878,9 +1878,9 @@ if test "x$with_gallium_drivers" != x; then
             if test "x$HAVE_ST_VA" = xyes; then
                 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS va-softpipe"
             fi
-            if test "x$HAVE_ST_VDPAU" == xyes ||
-               test "x$HAVE_ST_XVMC" == xyes ||
-               test "x$HAVE_ST_VA" == xyes; then
+            if test "x$HAVE_ST_VDPAU" = xyes ||
+               test "x$HAVE_ST_XVMC" = xyes ||
+               test "x$HAVE_ST_VA" = xyes; then
                if test "x$HAVE_WINSYS_XLIB" != xyes; then
                   GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
                fi




More information about the mesa-commit mailing list