meson: skip installation of GLVND-provided headers
Fixes: 93df862b6a
("meson: re-add incorrect pkg-config files with GLVND for backward compatibility")
Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/1846
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
@@ -22,60 +22,62 @@ inc_include = include_directories('.')
|
|||||||
inc_d3d9 = include_directories('D3D9')
|
inc_d3d9 = include_directories('D3D9')
|
||||||
inc_haikugl = include_directories('HaikuGL')
|
inc_haikugl = include_directories('HaikuGL')
|
||||||
|
|
||||||
if with_gles1 or with_gles2 or with_opengl or with_egl
|
if not glvnd_has_headers_and_pc_files
|
||||||
install_headers('KHR/khrplatform.h', subdir : 'KHR')
|
if with_gles1 or with_gles2 or with_opengl or with_egl
|
||||||
endif
|
install_headers('KHR/khrplatform.h', subdir : 'KHR')
|
||||||
|
endif
|
||||||
|
|
||||||
if with_gles1
|
if with_gles1
|
||||||
install_headers(
|
install_headers(
|
||||||
'GLES/egl.h',
|
'GLES/egl.h',
|
||||||
'GLES/gl.h',
|
'GLES/gl.h',
|
||||||
'GLES/glext.h',
|
'GLES/glext.h',
|
||||||
'GLES/glplatform.h',
|
'GLES/glplatform.h',
|
||||||
subdir : 'GLES',
|
subdir : 'GLES',
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if with_gles2
|
if with_gles2
|
||||||
install_headers(
|
install_headers(
|
||||||
'GLES2/gl2.h',
|
'GLES2/gl2.h',
|
||||||
'GLES2/gl2ext.h',
|
'GLES2/gl2ext.h',
|
||||||
'GLES2/gl2platform.h',
|
'GLES2/gl2platform.h',
|
||||||
subdir : 'GLES2',
|
subdir : 'GLES2',
|
||||||
)
|
)
|
||||||
install_headers(
|
install_headers(
|
||||||
'GLES3/gl3.h',
|
'GLES3/gl3.h',
|
||||||
'GLES3/gl31.h',
|
'GLES3/gl31.h',
|
||||||
'GLES3/gl32.h',
|
'GLES3/gl32.h',
|
||||||
'GLES3/gl3ext.h',
|
'GLES3/gl3ext.h',
|
||||||
'GLES3/gl3platform.h',
|
'GLES3/gl3platform.h',
|
||||||
subdir : 'GLES3',
|
subdir : 'GLES3',
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if with_opengl
|
if with_opengl
|
||||||
install_headers(
|
install_headers(
|
||||||
'GL/gl.h',
|
'GL/gl.h',
|
||||||
'GL/glcorearb.h',
|
'GL/glcorearb.h',
|
||||||
'GL/glext.h',
|
'GL/glext.h',
|
||||||
subdir : 'GL',
|
subdir : 'GL',
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if with_glx != 'disabled'
|
if with_glx != 'disabled'
|
||||||
install_headers(
|
install_headers(
|
||||||
'GL/glx.h',
|
'GL/glx.h',
|
||||||
'GL/glxext.h',
|
'GL/glxext.h',
|
||||||
subdir : 'GL')
|
subdir : 'GL')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if with_egl
|
if with_egl
|
||||||
install_headers(
|
install_headers(
|
||||||
'EGL/egl.h',
|
'EGL/egl.h',
|
||||||
'EGL/eglext.h',
|
'EGL/eglext.h',
|
||||||
'EGL/eglplatform.h',
|
'EGL/eglplatform.h',
|
||||||
subdir : 'EGL',
|
subdir : 'EGL',
|
||||||
)
|
)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Non-upstream headers
|
# Non-upstream headers
|
||||||
|
Reference in New Issue
Block a user