diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-01 17:36:16 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 17:19:07 +0100 |
commit | b49042e679f28ebd166e9eae79955512af42597c (patch) | |
tree | abed0cf46c6769777faae391772537d95d0b4d5c /recipes/gdk-pixbuf.recipe | |
parent | 57565a9870fcaed185a05cec9fceaef89f92e27c (diff) |
gdk-pixbuf: disable libtool's deps checks on windows
Diffstat (limited to 'recipes/gdk-pixbuf.recipe')
-rw-r--r-- | recipes/gdk-pixbuf.recipe | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes/gdk-pixbuf.recipe b/recipes/gdk-pixbuf.recipe index 777d0c15..d7f6cec1 100644 --- a/recipes/gdk-pixbuf.recipe +++ b/recipes/gdk-pixbuf.recipe @@ -5,3 +5,9 @@ class Recipe(recipe.Recipe): name = 'gdk-pixbuf' version = '2.24.1' deps = ['jpeg', 'glib', 'libpng', 'tiff'] + + def prepare(self): + from cerbero.config import Platform + if self.config.target_platform == Platform.WINDOWS: + self.autoreconf = True + self.config_sh = './configure lt_cv_deplibs_check_method=pass_all' |