Module: Mesa Branch: master Commit: f2a27d72de5bf1452f187779f5a981bb89e3ae8c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f2a27d72de5bf1452f187779f5a981bb89e3ae8c
Author: Eric Anholt <[email protected]> Date: Mon Oct 19 13:46:11 2020 -0700 meson: Don't try to build GLX by default on Android. Reviewed-by: Kristian H. Kristensen <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7227> --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a4aec1745d5..2e1d4aced57 100644 --- a/meson.build +++ b/meson.build @@ -350,7 +350,9 @@ endif with_glx = get_option('glx') if with_glx == 'auto' - if with_dri + if with_platform_android + with_glx = 'disabled' + elif with_dri with_glx = 'dri' elif with_platform_haiku with_glx = 'disabled' _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
