diff options
| author | Romain Naour <romain.naour@openwide.fr> | 2015-02-14 23:28:43 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-21 16:50:59 +0100 |
| commit | cc42daf98a1fd56814c5c90851e76829d975edb1 (patch) | |
| tree | 2b37de198e8e18ade2ff6fc0808a13b4f7218856 | |
| parent | 3f79f5e76ad08d350c655a1baf06180b0d890822 (diff) | |
| download | buildroot-cc42daf98a1fd56814c5c90851e76829d975edb1.tar.gz buildroot-cc42daf98a1fd56814c5c90851e76829d975edb1.zip | |
package/efl/libevas: explicitly disable GL/GLES2 support
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/efl/libevas/libevas.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk index 30d9f7c74a..486805089e 100644 --- a/package/efl/libevas/libevas.mk +++ b/package/efl/libevas/libevas.mk @@ -107,16 +107,25 @@ LIBEVAS_CONF_ENV += \ GL_EET_LIBS='-leet' endif +# libevas OpenGL flavor ifeq ($(BR2_PACKAGE_LIBEVAS_GL),y) LIBEVAS_DEPENDENCIES += mesa3d libeet endif ifeq ($(BR2_PACKAGE_LIBEVAS_GLES_SGX),y) LIBEVAS_CONF_OPTS += --enable-gl-flavor-gles --enable-gles-variety-sgx +else +LIBEVAS_CONF_OPTS += --disable-gles-variety-sgx endif ifeq ($(BR2_PACKAGE_LIBEVAS_GLES_S3C6410),y) LIBEVAS_CONF_OPTS += --enable-gl-flavor-gles --enable-gles-variety-s3c6410 +else +LIBEVAS_CONF_OPTS += --disable-gles-variety-s3c6410 +endif + +ifeq ($(BR2_PACKAGE_LIBEVAS_GLES_SGX)$(BR2_PACKAGE_LIBEVAS_GLES_S3C6410),) +LIBEVAS_CONF_OPTS += --disable-gl-flavor-gles endif # code options |

