mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 20:20:18 +01:00
r300g: Build driver by default
Do the auto trick that is used for both i915, i965 and svga.
This commit is contained in:
parent
b01ffb12ed
commit
877cadb655
2 changed files with 4 additions and 2 deletions
|
|
@ -98,7 +98,7 @@ EGL_DRIVERS_DIRS = demo
|
||||||
# Gallium directories and
|
# Gallium directories and
|
||||||
GALLIUM_DIRS = auxiliary drivers state_trackers
|
GALLIUM_DIRS = auxiliary drivers state_trackers
|
||||||
GALLIUM_AUXILIARIES = $(TOP)/src/gallium/auxiliary/libgallium.a
|
GALLIUM_AUXILIARIES = $(TOP)/src/gallium/auxiliary/libgallium.a
|
||||||
GALLIUM_DRIVERS_DIRS = softpipe failover svga i915 i965 trace identity
|
GALLIUM_DRIVERS_DIRS = softpipe failover svga i915 i965 r300 trace identity
|
||||||
GALLIUM_DRIVERS = $(foreach DIR,$(GALLIUM_DRIVERS_DIRS),$(TOP)/src/gallium/drivers/$(DIR)/lib$(DIR).a)
|
GALLIUM_DRIVERS = $(foreach DIR,$(GALLIUM_DRIVERS_DIRS),$(TOP)/src/gallium/drivers/$(DIR)/lib$(DIR).a)
|
||||||
GALLIUM_WINSYS_DIRS = xlib egl_xlib
|
GALLIUM_WINSYS_DIRS = xlib egl_xlib
|
||||||
GALLIUM_WINSYS_DRM_DIRS =
|
GALLIUM_WINSYS_DRM_DIRS =
|
||||||
|
|
|
||||||
|
|
@ -1279,10 +1279,12 @@ AC_ARG_ENABLE([gallium-radeon],
|
||||||
[AS_HELP_STRING([--enable-gallium-radeon],
|
[AS_HELP_STRING([--enable-gallium-radeon],
|
||||||
[build gallium radeon @<:@default=disabled@:>@])],
|
[build gallium radeon @<:@default=disabled@:>@])],
|
||||||
[enable_gallium_radeon="$enableval"],
|
[enable_gallium_radeon="$enableval"],
|
||||||
[enable_gallium_radeon=no])
|
[enable_gallium_radeon=auto])
|
||||||
if test "x$enable_gallium_radeon" = xyes; then
|
if test "x$enable_gallium_radeon" = xyes; then
|
||||||
GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS radeon"
|
GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS radeon"
|
||||||
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
|
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
|
||||||
|
elif test "x$enable_gallium_radeon" = xauto; then
|
||||||
|
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue