diff options
author | Eric Anholt <[email protected]> | 2013-09-27 17:03:58 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-10-24 14:13:09 -0700 |
commit | dde9260fdc1fb6792df24a4790ea1c255ad9284a (patch) | |
tree | 5bf4d42130d1f2290647d70e93a0078ced395d92 /src/mesa/drivers | |
parent | bdcee13ca374e4dd72c46951cb137b4f60a6303f (diff) |
mesa: Remove dricore from the build.
No driver uses it any more, and it's been replaced by megadrivers.
v2: Remove always-on conditional for NEED_LIBPROGRAM (review by Emil)
Reviewed-by: Matt Turner <[email protected]> (v1)
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/Makefile.am | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/Makefile.am b/src/mesa/drivers/dri/Makefile.am index aee6990c439..a85a5aa91ee 100644 --- a/src/mesa/drivers/dri/Makefile.am +++ b/src/mesa/drivers/dri/Makefile.am @@ -59,7 +59,7 @@ mesa_dri_drivers_la_LIBADD = \ common/libmegadriver_stub.la \ common/libdricommon.la \ $(MEGADRIVERS_DEPS) \ - $(MEGADRIVER_DRI_LIB_DEPS) \ + $(DRI_LIB_DEPS) \ $() if NEED_MEGADRIVER diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index 589a0742b1a..8c0f9a324e3 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -46,7 +46,7 @@ TEST_LIBS = \ libi965_dri.la \ ../common/libdricommon.la \ ../common/libmegadriver_stub.la \ - $(MEGADRIVER_DRI_LIB_DEPS) \ + $(DRI_LIB_DEPS) \ ../../../libmesa.la \ -lrt \ ../common/libdri_test_stubs.la |