mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 01:40:08 +01:00
Default to --disable-gallium-r300 if not --with-driver=dri
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Signed-off-by: Marek Olšák <maraeo@gmail.com>
This commit is contained in:
parent
02b352e2ac
commit
9cb800a97c
1 changed files with 7 additions and 0 deletions
|
|
@ -1784,6 +1784,13 @@ AC_ARG_ENABLE([gallium-r300],
|
|||
[build gallium r300 @<:@default=build DRI driver only@:>@])],
|
||||
[enable_gallium_r300="$enableval"],
|
||||
[enable_gallium_r300=auto])
|
||||
|
||||
if test "$mesa_driver" != dri ; then
|
||||
if test "x$enable_gallium_r300" = xauto; then
|
||||
enable_gallium_r300=no
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "x$enable_gallium_r300" != xno; then
|
||||
if test "x$MESA_LLVM" = x0; then
|
||||
case "$host_cpu" in
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue