r300g: rename radeong_dri.so to r300_dri.so

acked on irc by Corbin + Marek.
This commit is contained in:
Dave Airlie 2010-08-22 17:28:20 +10:00
parent ad58f0d9e0
commit 37f0654fa5
4 changed files with 5 additions and 5 deletions

View file

@ -1488,7 +1488,7 @@ AC_ARG_ENABLE([gallium-radeon],
[enable_gallium_radeon=auto])
if test "x$enable_gallium_radeon" = xyes; then
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
gallium_check_st "radeon/drm" "dri-radeong" "xorg-radeon"
gallium_check_st "radeon/drm" "dri-r300" "xorg-radeon"
elif test "x$enable_gallium_radeon" = xauto; then
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
fi

View file

@ -1,7 +1,7 @@
TOP = ../../../..
include $(TOP)/configs/current
LIBNAME = radeong_dri.so
LIBNAME = r300_dri.so
PIPE_DRIVERS = \
$(TOP)/src/gallium/state_trackers/dri/drm/libdridrm.a \

View file

@ -1,7 +1,7 @@
Import('*')
if not 'r300' in env['drivers']:
print 'warning: r300 pipe driver not built skipping radeong_dri.so'
print 'warning: r300 pipe driver not built skipping r300_dri.so'
Return()
env = drienv.Clone()
@ -24,7 +24,7 @@ env.Prepend(LIBS = [
])
env.SharedLibrary(
target ='radeon_dri.so',
target ='r300_dri.so',
source = 'target.c',
SHLIBPREFIX = '',
)

View file

@ -23,4 +23,4 @@ create_screen(int fd)
return screen;
}
DRM_DRIVER_DESCRIPTOR("radeon", "radeon", create_screen)
DRM_DRIVER_DESCRIPTOR("r300", "radeon", create_screen)