diff options
author | Tobias Droste <[email protected]> | 2012-02-07 16:27:11 +0100 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2012-02-07 11:12:09 -0500 |
commit | d048ab5558cf47edda5a383266dc451db8425d9f (patch) | |
tree | 63cd08dad70ecb2219f74a62c1f964e0a630e5a2 /src/gallium/targets | |
parent | 7335cf1c326c7815164c242e19ba0c0b2b19f0f6 (diff) |
gallium/gbm: r300 and r600 now depend on libdrm
fixes undefined references in libradeonwinsys.a when linking
Signed-off-by: Tobias Droste <[email protected]>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/gbm/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/targets/gbm/Makefile b/src/gallium/targets/gbm/Makefile index ce56f934972..2737b7986cb 100644 --- a/src/gallium/targets/gbm/Makefile +++ b/src/gallium/targets/gbm/Makefile @@ -72,11 +72,13 @@ nouveau_SYS = -ldrm_nouveau r300_LIBS = \ $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \ $(TOP)/src/gallium/drivers/r300/libr300.a +r300_SYS += -ldrm_radeon # r600 pipe driver r600_LIBS = \ $(TOP)/src/gallium/winsys/radeon/drm/libradeonwinsys.a \ $(TOP)/src/gallium/drivers/r600/libr600.a +r600_SYS += -ldrm_radeon # vmwgfx pipe driver vmwgfx_LIBS = \ |