Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig
@ 2015-02-14 22:28 Romain Naour
  2015-02-14 22:28 ` [Buildroot] [RFC 2/3] package/efl/libevas: explicitly disable GL/GLES2 support Romain Naour
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Romain Naour @ 2015-02-14 22:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
---
 package/efl/libevas/libevas.mk | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk
index b5a2d72..30d9f7c 100644
--- a/package/efl/libevas/libevas.mk
+++ b/package/efl/libevas/libevas.mk
@@ -205,6 +205,13 @@ else
 LIBEVAS_CONF_OPTS += --disable-font-loader-eet
 endif
 
+ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
+LIBEVAS_CONF_OPTS += --enable-fontconfig
+LIBEVAS_DEPENDENCIES += fontconfig
+else
+LIBEVAS_CONF_OPTS += --disable-fontconfig
+endif
+
 # libevas installs the source code of examples on the target, which
 # are generally not useful.
 define LIBEVAS_REMOVE_EXAMPLES
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [RFC 2/3] package/efl/libevas: explicitly disable GL/GLES2 support
  2015-02-14 22:28 [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig Romain Naour
@ 2015-02-14 22:28 ` Romain Naour
  2015-02-14 22:28 ` [Buildroot] [RFC 3/3] package/efl/libevas: explicitly disable xlib support Romain Naour
  2015-02-21 15:56 ` [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Romain Naour @ 2015-02-14 22:28 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
---
 package/efl/libevas/libevas.mk | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk
index 30d9f7c..4868050 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
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [RFC 3/3] package/efl/libevas: explicitly disable xlib support
  2015-02-14 22:28 [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig Romain Naour
  2015-02-14 22:28 ` [Buildroot] [RFC 2/3] package/efl/libevas: explicitly disable GL/GLES2 support Romain Naour
@ 2015-02-14 22:28 ` Romain Naour
  2015-02-21 15:56 ` [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Romain Naour @ 2015-02-14 22:28 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/d69/d69a324434f370b490a53e6191d38a204ac28371

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
---
 package/efl/libevas/libevas.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk
index 4868050..f327c02 100644
--- a/package/efl/libevas/libevas.mk
+++ b/package/efl/libevas/libevas.mk
@@ -72,6 +72,8 @@ LIBEVAS_CONF_OPTS += --enable-gl-xlib
 LIBEVAS_DEPENDENCIES += \
 	xproto_glproto xlib_libX11 xlib_libXrender \
 	xlib_libXext libeet
+else
+LIBEVAS_CONF_OPTS += --disable-gl-xlib
 endif
 
 ifeq ($(BR2_PACKAGE_LIBEVAS_XCB),y)
-- 
1.9.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig
  2015-02-14 22:28 [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig Romain Naour
  2015-02-14 22:28 ` [Buildroot] [RFC 2/3] package/efl/libevas: explicitly disable GL/GLES2 support Romain Naour
  2015-02-14 22:28 ` [Buildroot] [RFC 3/3] package/efl/libevas: explicitly disable xlib support Romain Naour
@ 2015-02-21 15:56 ` Thomas Petazzoni
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-02-21 15:56 UTC (permalink / raw)
  To: buildroot

Dear Romain Naour,

On Sat, 14 Feb 2015 23:28:42 +0100, Romain Naour wrote:
> Signed-off-by: Romain Naour <romain.naour@openwide.fr>
> ---
>  package/efl/libevas/libevas.mk | 7 +++++++
>  1 file changed, 7 insertions(+)

All three patches applied to master, since they fix some real or
potential build issues. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-02-21 15:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-14 22:28 [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig Romain Naour
2015-02-14 22:28 ` [Buildroot] [RFC 2/3] package/efl/libevas: explicitly disable GL/GLES2 support Romain Naour
2015-02-14 22:28 ` [Buildroot] [RFC 3/3] package/efl/libevas: explicitly disable xlib support Romain Naour
2015-02-21 15:56 ` [Buildroot] [RFC 1/3] package/efl/libevas: add missing dependency on fontconfig Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox