diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-04-18 11:31:31 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-04-26 10:47:13 -0700 |
commit | 63a7314c61220db353457c5e46ddbe4f915e70e0 (patch) | |
tree | a769f1a87ee9f1d1b74cd7711cf1672a9c314675 | |
parent | 9e88042cfd4c189711d8d7b7409cbca033397353 (diff) |
meson: fix graw-xlib after auxiliary consolidation
This one's completely my fault, I didn't do good enough testing after
rebasing and this got missed.
Fixes: d28c24650110c130008be3d3fe584520ff00ceb1
("meson: build graw tests")
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
(cherry picked from commit 1546f76a39f0539821dd9bb4706576730e864fd2)
-rw-r--r-- | src/gallium/targets/graw-xlib/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/targets/graw-xlib/meson.build b/src/gallium/targets/graw-xlib/meson.build index 4716c543cb..aab99ba64c 100644 --- a/src/gallium/targets/graw-xlib/meson.build +++ b/src/gallium/targets/graw-xlib/meson.build @@ -21,10 +21,9 @@ libgraw_xlib = shared_library( 'graw_xlib', ['graw_xlib.c'], - c_args : ['-DGALLIUM_TRACE', '-DGALLIUM_RBUG'], include_directories : [inc_common, inc_gallium_drivers, inc_gallium_winsys], link_with : [ - libgraw_util, libtrace, librbug, libmesa_util, libgallium, libws_xlib + libgraw_util, libmesa_util, libgallium, libws_xlib ], dependencies : [dep_thread, driver_swrast], version : '1.0', |