summaryrefslogtreecommitdiff
path: root/recipes/cairo.recipe
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2012-03-05 11:05:01 +0100
committerAndoni Morales Alastruey <ylatuya@gmail.com>2012-03-20 17:19:08 +0100
commit5dae84de29c3b4b239f3071d1f856ed2c9a4f9d7 (patch)
tree94cb6cd25050be44ae27f917c5425bcf68e236b3 /recipes/cairo.recipe
parent8ee9d65994af098e7f300229171e6e4d000f36ae (diff)
cairo: ignore libtool's deps checks in windows
Diffstat (limited to 'recipes/cairo.recipe')
-rw-r--r--recipes/cairo.recipe5
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes/cairo.recipe b/recipes/cairo.recipe
index 44f28a4d..dc0cd130 100644
--- a/recipes/cairo.recipe
+++ b/recipes/cairo.recipe
@@ -5,3 +5,8 @@ class Recipe(recipe.Recipe):
name = 'cairo'
version = '1.10.2'
deps = ['glib', 'libpng', 'zlib', 'pixman', 'fontconfig', 'freetype']
+
+ def prepare(self):
+ from cerbero.config import Platform
+ if self.config.target_platform == Platform.WINDOWS:
+ self.config_sh = './configure lt_cv_deplibs_check_method=pass_all'