mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 06:50:11 +01:00
meson: don't build libGLES*.so with GLVND
GLVND already provides these, so distro packagers have been deleting them all along. Let's save ourselves the trouble and not build them in the first place. Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
2c387819f4
commit
b01524fff0
1 changed files with 7 additions and 5 deletions
|
|
@ -33,9 +33,11 @@ subdir('glapi')
|
||||||
if with_shared_glapi
|
if with_shared_glapi
|
||||||
subdir('shared-glapi')
|
subdir('shared-glapi')
|
||||||
endif
|
endif
|
||||||
if with_gles1
|
if not with_glvnd
|
||||||
subdir('es1api')
|
if with_gles1
|
||||||
endif
|
subdir('es1api')
|
||||||
if with_gles2
|
endif
|
||||||
subdir('es2api')
|
if with_gles2
|
||||||
|
subdir('es2api')
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue