diff options
author | Eric Engestrom <[email protected]> | 2019-05-02 12:42:48 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-05-18 11:15:04 +0100 |
commit | ccb8ea7acfb710c6c5298f3ffcadbe3d79b9b913 (patch) | |
tree | c5d386d77fef7fb0534566d43a116653c5bfa294 /src/gallium/targets | |
parent | 28c2ce71053e33ba23d0d0da3b26f7c4cf27af12 (diff) |
meson: expose glapi through osmesa
Suggested-by: Pierre Guillou <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109659
Fixes: f121a669c7d94d2ff672 "meson: build gallium based osmesa"
Fixes: cbbd5bb889a2c271a504 "meson: build classic osmesa"
Cc: Brian Paul <[email protected]>
Cc: Dylan Baker <[email protected]>
Signed-off-by: Eric Engestrom <[email protected]>
Tested-by: Chuck Atkins <[email protected]>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/osmesa/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/osmesa/meson.build b/src/gallium/targets/osmesa/meson.build index b4ae8f4b6ec..e873e311aa0 100644 --- a/src/gallium/targets/osmesa/meson.build +++ b/src/gallium/targets/osmesa/meson.build @@ -43,9 +43,9 @@ libosmesa = shared_library( inc_gallium_drivers, ], link_depends : osmesa_link_deps, - link_whole : [libosmesa_st], + link_whole : [libosmesa_st, libglapi_static], link_with : [ - libmesa_gallium, libgallium, libglapi_static, libws_null, osmesa_link_with, + libmesa_gallium, libgallium, libws_null, osmesa_link_with, ], dependencies : [ dep_selinux, dep_thread, dep_clock, dep_unwind, |