diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2017-06-06 10:39:07 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-06-06 10:39:07 +0100 |
commit | 21feea047e2d0af75a02454a06139afc485ebba7 (patch) | |
tree | 452836a25c61bdbfc38d3519aafa0dad90f21549 | |
parent | 9c8b65a2338d6fe94293a50cf84caea157215322 (diff) | |
download | libepoxy-21feea047e2d0af75a02454a06139afc485ebba7.tar.gz |
build: Enable EGL on Android
It's the only platform specific API it has.
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 2dbecd9..4d6c294 100644 --- a/configure.ac +++ b/configure.ac @@ -98,7 +98,6 @@ AS_CASE([$enable_egl], AS_CASE([$host_os], [mingw*], [build_egl=no], [darwin*], [build_egl=no], - [android*], [build_egl=no], [build_egl=yes]) ], diff --git a/meson.build b/meson.build index ab4c05e..b115dc0 100644 --- a/meson.build +++ b/meson.build @@ -60,7 +60,7 @@ if enable_egl == 'auto' elif host_system == 'darwin' build_egl = false elif host_system == 'android' - build_egl = false + build_egl = true else build_egl = true endif |