diff options
author | Romain Naour <romain.naour@openwide.fr> | 2015-02-14 23:28:42 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-21 16:50:38 +0100 |
commit | 3f79f5e76ad08d350c655a1baf06180b0d890822 (patch) | |
tree | 5c63d43dc5dd2cef3e1d7c043e8f0eb7767cf593 | |
parent | 59abbae847f2caddc00e9f7d4c97a8fe184035a4 (diff) | |
download | buildroot-3f79f5e76ad08d350c655a1baf06180b0d890822.tar.gz buildroot-3f79f5e76ad08d350c655a1baf06180b0d890822.zip |
package/efl/libevas: add missing dependency on fontconfig
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 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/efl/libevas/libevas.mk b/package/efl/libevas/libevas.mk index b5a2d72d68..30d9f7c74a 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 |