diff options
author | Fabio Porcedda <fabio.porcedda@gmail.com> | 2015-02-27 10:19:23 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-03-01 22:02:15 +0100 |
commit | a74ed49f661caebd51378b9ed9840be50b20ffdd (patch) | |
tree | a85dd54161ed59ac0ab5b03209cbb65c26e4122d | |
parent | 40fa6dcdcc2c3992291e937de2e8959f55be7cfd (diff) | |
download | buildroot-a74ed49f661caebd51378b9ed9840be50b20ffdd.tar.gz buildroot-a74ed49f661caebd51378b9ed9840be50b20ffdd.zip |
package/efl/libevas: add optional dependency on libfribidi
Fix the following message when libfribidi is enabled but not already
built:
Package fribidi was not found in the pkg-config search path.
Perhaps you should add the directory containing `fribidi.pc'
No package 'fribidi' found
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.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 40a01e76a2..10c3bc3af2 100644 --- a/package/efl/libevas/libevas.mk +++ b/package/efl/libevas/libevas.mk @@ -225,6 +225,13 @@ else LIBEVAS_CONF_OPTS += --disable-fontconfig endif +ifeq ($(BR2_PACKAGE_LIBFRIBIDI),y) +LIBEVAS_CONF_OPTS += --enable-fribidi +LIBEVAS_DEPENDENCIES += libfribidi +else +LIBEVAS_CONF_OPTS += --disable-fribidi +endif + # libevas installs the source code of examples on the target, which # are generally not useful. define LIBEVAS_REMOVE_EXAMPLES |