summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2015-09-29 15:58:22 +0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-09-29 19:36:38 +0200
commit6397f7aa2bc52b395e5a1eb35ba780a5ecbd73a6 (patch)
treed1f14ea8381f482a17ad6134b346091e00e66f3c /package
parentf355849c9ec11bee978f712328f33f97342c2ebb (diff)
libbluray: add optional fontconfig dependency
Fixes: http://autobuild.buildroot.net/results/dbf/dbfbf09f48e7ec09be34a3a40d3c859b74379eaf/ http://autobuild.buildroot.net/results/3fb/3fb9c077d4fe772774f53c7611b4dcbaad361312/ http://autobuild.buildroot.net/results/f9c/f9c1f3cf8bfa9eeacb7719459c22bdf7dea26ddb/ and more. Cc: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r--package/libbluray/libbluray.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/package/libbluray/libbluray.mk b/package/libbluray/libbluray.mk
index e10f7dbc8..f6a501a10 100644
--- a/package/libbluray/libbluray.mk
+++ b/package/libbluray/libbluray.mk
@@ -24,6 +24,12 @@ else
LIBBLURAY_CONF_OPTS += --without-freetype
endif
+ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
+LIBBLURAY_DEPENDENCIES += fontconfig
+else
+LIBBLURAY_CONF_OPTS += --without-fontconfig
+endif
+
ifeq ($(BR2_PACKAGE_LIBXML2),y)
LIBBLURAY_DEPENDENCIES += libxml2
else