mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 07:30:22 +01:00
autotools: 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
b01524fff0
commit
9cf85d3b78
1 changed files with 8 additions and 2 deletions
|
|
@ -175,6 +175,8 @@ glapi_test_LDADD = \
|
|||
endif
|
||||
endif
|
||||
|
||||
if USE_LIBGLVND
|
||||
else
|
||||
if HAVE_OPENGL_ES1
|
||||
TESTS += es1api/ABI-check
|
||||
|
||||
|
|
@ -207,12 +209,15 @@ es1api_libGLESv1_CM_la_LDFLAGS = \
|
|||
$(LD_NO_UNDEFINED)
|
||||
|
||||
es1api_libGLESv1_CM_la_LIBADD += shared-glapi/libglapi.la
|
||||
endif
|
||||
endif # HAVE_OPENGL_ES1
|
||||
endif # USE_LIBGLVND
|
||||
|
||||
es1api/glapi_mapi_tmp.h: $(glapi_gen_mapi_deps)
|
||||
$(MKDIR_GEN)
|
||||
$(glapi_gen_mapi) glesv1 $(glapi_gen_gl_xml) > $@
|
||||
|
||||
if USE_LIBGLVND
|
||||
else
|
||||
if HAVE_OPENGL_ES2
|
||||
TESTS += es2api/ABI-check
|
||||
|
||||
|
|
@ -251,7 +256,8 @@ es2api_libGLESv2_la_LDFLAGS = \
|
|||
$(LD_NO_UNDEFINED)
|
||||
|
||||
es2api_libGLESv2_la_LIBADD += shared-glapi/libglapi.la
|
||||
endif
|
||||
endif # HAVE_OPENGL_ES2
|
||||
endif # USE_LIBGLVND
|
||||
|
||||
es2api/glapi_mapi_tmp.h: $(glapi_gen_mapi_deps)
|
||||
$(MKDIR_GEN)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue