mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 10:40:11 +01:00
mesa: Remove build infrastructure for r300c and r600c.
These drivers have been superseded by the gallium equivalents.
This commit is contained in:
parent
9171bfe5f6
commit
2f4c7ebea6
7 changed files with 12 additions and 12 deletions
|
|
@ -47,5 +47,5 @@ DRIVER_DIRS = dri
|
|||
|
||||
DRM_SOURCE_PATH=$(TOP)/../drm
|
||||
|
||||
DRI_DIRS = i915 i965 r200 r300 radeon
|
||||
DRI_DIRS = i915 i965 r200 radeon
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ GALLIUM_WINSYS_DIRS = sw sw/xlib drm/vmware drm/intel drm/i965 svga/drm
|
|||
GALLIUM_TARGET_DIRS = dri-vmwgfx
|
||||
GALLIUM_STATE_TRACKERS_DIRS = egl dri
|
||||
|
||||
DRI_DIRS = i915 i965 nouveau r200 r300 r600 radeon swrast
|
||||
DRI_DIRS = i915 i965 nouveau r200 radeon swrast
|
||||
|
||||
INTEL_LIBS = $(shell $(PKG_CONFIG) --libs libdrm_intel)
|
||||
INTEL_CFLAGS = $(shell $(PKG_CONFIG) --cflags libdrm_intel)
|
||||
|
|
|
|||
|
|
@ -10,5 +10,5 @@ ARCH_FLAGS = -DDEBUG
|
|||
# Helpful to reduce the amount of stuff that gets built sometimes:
|
||||
#DRI_DIRS = i915tex i915
|
||||
#DRI_DIRS = i965
|
||||
#DRI_DIRS = radeon r200 r300
|
||||
#DRI_DIRS = radeon r200
|
||||
|
||||
|
|
|
|||
|
|
@ -13,5 +13,5 @@ MESA_ASM_SOURCES = $(PPC_SOURCES)
|
|||
|
||||
# Build only the drivers for cards that exist on PowerPC. At some point MGA
|
||||
# will be added, but not yet.
|
||||
DRI_DIRS = r200 r300 radeon
|
||||
DRI_DIRS = r200 radeon
|
||||
|
||||
|
|
|
|||
|
|
@ -16,5 +16,5 @@ LIB_DIR = lib64
|
|||
# Library/program dependencies
|
||||
EXTRA_LIB_PATH=-L/usr/X11R6/lib64
|
||||
|
||||
DRI_DIRS = i915 i965 r200 r300 radeon
|
||||
DRI_DIRS = i915 i965 r200 radeon
|
||||
|
||||
|
|
|
|||
|
|
@ -52,4 +52,4 @@ GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lXxf86vm -lm -lpthread -ldl \
|
|||
SRC_DIRS = glx gallium mesa glu
|
||||
|
||||
DRIVER_DIRS = dri
|
||||
DRI_DIRS = i915 r200 r300 radeon
|
||||
DRI_DIRS = i915 r200 radeon
|
||||
|
|
|
|||
12
configure.ac
12
configure.ac
|
|
@ -1185,19 +1185,19 @@ if test "x$enable_dri" = xyes; then
|
|||
case "$host_cpu" in
|
||||
x86_64)
|
||||
if test "x$DRI_DIRS" = "xyes"; then
|
||||
DRI_DIRS="i915 i965 nouveau r200 r300 r600 radeon swrast"
|
||||
DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
|
||||
fi
|
||||
;;
|
||||
powerpc*)
|
||||
# Build only the drivers for cards that exist on PowerPC.
|
||||
if test "x$DRI_DIRS" = "xyes"; then
|
||||
DRI_DIRS="r200 r300 r600 radeon swrast"
|
||||
DRI_DIRS="r200 radeon swrast"
|
||||
fi
|
||||
;;
|
||||
sparc*)
|
||||
# Build only the drivers for cards that exist on sparc
|
||||
if test "x$DRI_DIRS" = "xyes"; then
|
||||
DRI_DIRS="r200 r300 r600 radeon swrast"
|
||||
DRI_DIRS="r200 radeon swrast"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
|
@ -1207,7 +1207,7 @@ if test "x$enable_dri" = xyes; then
|
|||
DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
|
||||
|
||||
if test "x$DRI_DIRS" = "xyes"; then
|
||||
DRI_DIRS="i915 i965 nouveau r200 r300 r600 radeon swrast"
|
||||
DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
|
||||
fi
|
||||
;;
|
||||
gnu*)
|
||||
|
|
@ -1227,7 +1227,7 @@ if test "x$enable_dri" = xyes; then
|
|||
|
||||
# default drivers
|
||||
if test "x$DRI_DIRS" = "xyes"; then
|
||||
DRI_DIRS="i915 i965 nouveau r200 r300 r600 radeon swrast"
|
||||
DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
|
||||
fi
|
||||
|
||||
DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
|
||||
|
|
@ -1276,7 +1276,7 @@ case $DRI_DIRS in
|
|||
esac
|
||||
|
||||
case $DRI_DIRS in
|
||||
*radeon*|*r200*|*r300*|*r600*)
|
||||
*radeon*|*r200*)
|
||||
PKG_CHECK_MODULES([LIBDRM_RADEON],
|
||||
[libdrm_radeon >= $LIBDRM_RADEON_REQUIRED],
|
||||
HAVE_LIBDRM_RADEON=yes,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue