diff options
| author | Haibo Huang <hhb@google.com> | 2019-09-11 13:35:04 -0700 |
|---|---|---|
| committer | Haibo Huang <hhb@google.com> | 2019-09-13 23:51:35 +0000 |
| commit | b51a87e3132ac8ab291f12e0b510b3491398afcf (patch) | |
| tree | d97183c3280b99ee60ef74424c2dc8587620aa03 | |
| parent | 49fce7a189703fc22a7d1fdacb4908360f5853b4 (diff) | |
| parent | af38a466caf9c2ae49b8acda4ff842ae44d57f78 (diff) | |
| download | platform_external_libepoxy-ndk-sysroot-r21.tar.gz platform_external_libepoxy-ndk-sysroot-r21.tar.bz2 platform_external_libepoxy-ndk-sysroot-r21.zip | |
Upgrade libepoxy to af38a466caf9c2ae49b8acda4ff842ae44d57f78ndk-sysroot-r21
Exempt-From-Owner-Approval: upgrade lib
Test: None
Change-Id: Ide166c7bd11bba5e9902efa25f794b497dfc0b8f
| -rw-r--r-- | METADATA | 12 | ||||
| -rw-r--r-- | test/egl_epoxy_api.c | 4 | ||||
| -rw-r--r-- | test/egl_has_extension_nocontext.c | 4 | ||||
| -rw-r--r-- | test/meson.build | 2 |
4 files changed, 16 insertions, 6 deletions
@@ -1,13 +1,15 @@ name: "libepoxy" -description: - "Epoxy is a library for handling OpenGL function pointers" - +description: "Epoxy is a library for handling OpenGL function pointers" third_party { url { type: GIT value: "https://github.com/anholt/libepoxy.git" } - version: "707f50e680ab4f1861b1e54ca6e2907aaca56c12" - last_upgrade_date { year: 2019 month: 3 day: 26 } + version: "af38a466caf9c2ae49b8acda4ff842ae44d57f78" license_type: NOTICE + last_upgrade_date { + year: 2019 + month: 9 + day: 11 + } } diff --git a/test/egl_epoxy_api.c b/test/egl_epoxy_api.c index a840525..252b535 100644 --- a/test/egl_epoxy_api.c +++ b/test/egl_epoxy_api.c @@ -27,7 +27,11 @@ * Tests the Epoxy API using EGL. */ +#ifdef __sun +#define __EXTENSIONS__ +#else #define _GNU_SOURCE +#endif #include <stdio.h> #include <string.h> #include <stdlib.h> diff --git a/test/egl_has_extension_nocontext.c b/test/egl_has_extension_nocontext.c index a95860a..4fa5f60 100644 --- a/test/egl_has_extension_nocontext.c +++ b/test/egl_has_extension_nocontext.c @@ -28,7 +28,11 @@ * no context bound would fail out in dispatch. */ +#ifdef __sun +#define __EXTENSIONS__ +#else #define _GNU_SOURCE +#endif #include <stdio.h> #include <string.h> #include <stdlib.h> diff --git a/test/meson.build b/test/meson.build index c73bf5d..862d57a 100644 --- a/test/meson.build +++ b/test/meson.build @@ -80,7 +80,7 @@ if build_egl and build_x11_tests endforeach endif -if build_glx +if build_glx and build_x11_tests glx_common_sources = [ 'glx_common.h', 'glx_common.c', ] glx_common_lib = static_library('glx_common', sources: glx_common_sources, |
