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

This commit is contained in:
Eric Anholt 2011-10-14 14:33:00 -07:00
parent bd51e8e4f4
commit 48c9925367
1 changed files with 3 additions and 3 deletions

View File

@ -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