Module: Mesa Branch: master Commit: 1a7e9652c499340a4f269cae147a68ed553a9a6c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1a7e9652c499340a4f269cae147a68ed553a9a6c
Author: Eric Engestrom <[email protected]> Date: Mon Sep 30 14:06:07 2019 +0100 meson: split Mesa headers as a separate installation Fixes: 93df862b6affb6b8507e ("meson: re-add incorrect pkg-config files with GLVND for backward compatibility") Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]> --- include/meson.build | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/meson.build b/include/meson.build index 082d8d66876..149b122236b 100644 --- a/include/meson.build +++ b/include/meson.build @@ -74,6 +74,13 @@ if with_egl 'EGL/egl.h', 'EGL/eglext.h', 'EGL/eglplatform.h', + subdir : 'EGL', + ) +endif + +# Non-upstream headers +if with_egl + install_headers( 'EGL/eglmesaext.h', 'EGL/eglextchromium.h', subdir : 'EGL', _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
