From: Eric Anholt Date: Fri, 14 Oct 2011 21:33:00 +0000 (-0700) Subject: configure.ac: Fix equality checks in gallium st setup. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48c9925367034b6fac506f1f32d445c5bd825a49;p=mesa.git configure.ac: Fix equality checks in gallium st setup. --- diff --git a/configure.ac b/configure.ac index 11d81bca28a..ab3ba25e937 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