diff options
author | Dylan Baker <[email protected]> | 2017-10-30 11:31:45 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-31 10:41:19 -0700 |
commit | 1c591193689869a62f1a4b2cfc625aa22411ca6e (patch) | |
tree | 2cb9c606e2edb8c49c6469dd5a13cb2c7f9f5ba1 /src/gbm | |
parent | c16486f5dba0f8316219650f5e31b44a6e46e370 (diff) |
meson: set visibility flags on gbm
This is done in autotools, and is an oversight in the meson build.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Tested-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/gbm')
-rw-r--r-- | src/gbm/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gbm/meson.build b/src/gbm/meson.build index fc1816cc17a..2fad2a2a8e3 100644 --- a/src/gbm/meson.build +++ b/src/gbm/meson.build @@ -50,7 +50,7 @@ libgbm = shared_library( include_directories : [ include_directories('main'), inc_include, inc_src, inc_loader, include_directories('../egl/wayland/wayland-drm')], - c_args : args_gbm, + c_args : [c_vis_args, args_gbm], link_args : [ld_args_gc_sections], link_with : [links_gbm, libloader, libmesa_util, libxmlconfig], dependencies : [deps_gbm, dep_dl], |