From 5cb9f046f73eac046353385798cfff3c4f4eccdb Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Wed, 11 Feb 2015 12:53:41 +0100 Subject: [PATCH] freetype: don't include png/bzip2 support, as we don't have libpng/libbz2 available --- recipes/freetype/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes/freetype/__init__.py b/recipes/freetype/__init__.py index e813e2b..98cb259 100644 --- a/recipes/freetype/__init__.py +++ b/recipes/freetype/__init__.py @@ -21,6 +21,10 @@ class FreetypeRecipe(Recipe): "LDFLAGS={}".format(build_env["LDFLAGS"]), "--prefix=/", "--host={}".format(arch.triple), + "--without-png", + "--without-bzip2", + "--without-fsspec", + "--without-old-mac-fonts", "--enable-static=yes", "--enable-shared=no") shprint(sh.make, "clean")