Link fewer common objects into Gallium winsys layers.

These are useless or even harmful due to referencing symbols no longer
available in the Gallium build.
This commit is contained in:
Michel Dänzer 2007-12-10 16:34:25 +01:00
parent f7195b3232
commit 41ce1f8fb3
2 changed files with 8 additions and 6 deletions

View file

@ -2,13 +2,15 @@
MESA_MODULES = $(TOP)/src/mesa/libmesa.a MESA_MODULES = $(TOP)/src/mesa/libmesa.a
COMMON_SOURCES = \ COMMON_GALLIUM_SOURCES = \
../../common/driverfuncs.c \
../common/utils.c \ ../common/utils.c \
../common/texmem.c \
../common/vblank.c \ ../common/vblank.c \
../common/dri_util.c \ ../common/dri_util.c \
../common/xmlconfig.c \ ../common/xmlconfig.c
COMMON_SOURCES = $(COMMON_GALLIUM_SOURCES) \
../../common/driverfuncs.c \
../common/texmem.c \
../common/drirenderbuffer.c ../common/drirenderbuffer.c
COMMON_BM_SOURCES = \ COMMON_BM_SOURCES = \

View file

@ -22,7 +22,7 @@ DRIVER_SOURCES = \
intel_batchpool.c intel_batchpool.c
C_SOURCES = \ C_SOURCES = \
$(COMMON_SOURCES) \ $(COMMON_GALLIUM_SOURCES) \
$(COMMON_BM_SOURCES) \ $(COMMON_BM_SOURCES) \
$(DRIVER_SOURCES) $(DRIVER_SOURCES)