mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
configure.ac: Fix equality checks in gallium st setup.
This commit is contained in:
parent
bd51e8e4f4
commit
48c9925367
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue