diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-06 17:07:27 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 17:19:10 +0100 |
commit | 0d7015ad0de9411fde34fdf231603b4259de41f6 (patch) | |
tree | e1c5bd9709eba4ea57225ff5c301fff255d0b6fc /recipes | |
parent | 8c14e13415be9b6d79ea021b336166ff75138f03 (diff) |
Disable libtool's depencies check on windows for all projects
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/cairo.recipe | 4 | ||||
-rw-r--r-- | recipes/gdk-pixbuf.recipe | 1 | ||||
-rw-r--r-- | recipes/gtk.recipe | 4 | ||||
-rw-r--r-- | recipes/libshout.recipe | 4 |
4 files changed, 0 insertions, 13 deletions
diff --git a/recipes/cairo.recipe b/recipes/cairo.recipe index 9955006f..44f28a4d 100644 --- a/recipes/cairo.recipe +++ b/recipes/cairo.recipe @@ -5,7 +5,3 @@ class Recipe(recipe.Recipe): name = 'cairo' version = '1.10.2' deps = ['glib', 'libpng', 'zlib', 'pixman', 'fontconfig', 'freetype'] - - def prepare(self): - if self.config.target_platform == Platform.WINDOWS: - self.config_sh = './configure lt_cv_deplibs_check_method=pass_all' diff --git a/recipes/gdk-pixbuf.recipe b/recipes/gdk-pixbuf.recipe index ffe3844d..9114fa83 100644 --- a/recipes/gdk-pixbuf.recipe +++ b/recipes/gdk-pixbuf.recipe @@ -9,4 +9,3 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform == Platform.WINDOWS: self.autoreconf = True - self.config_sh = './configure lt_cv_deplibs_check_method=pass_all' diff --git a/recipes/gtk.recipe b/recipes/gtk.recipe index 40fa6843..cc88c360 100644 --- a/recipes/gtk.recipe +++ b/recipes/gtk.recipe @@ -5,7 +5,3 @@ class Recipe(recipe.Recipe): name = 'gtk+' version = '2.24.10' deps = ['glib', 'atk', 'pango', 'gdk-pixbuf', 'cairo'] - - def prepare(self): - if self.config.target_platform == Platform.WINDOWS: - self.config_sh = './configure lt_cv_deplibs_check_method=pass_all' diff --git a/recipes/libshout.recipe b/recipes/libshout.recipe index 687bc59a..a25960ec 100644 --- a/recipes/libshout.recipe +++ b/recipes/libshout.recipe @@ -5,7 +5,3 @@ class Recipe(recipe.Recipe): name = 'libshout' version = '2.2.2' deps = ['libtheora', 'libogg', 'libvorbis', 'speex'] - - def prepare(self): - if self.config.target_platform == Platform.WINDOWS: - self.config_sh = './configure lt_cv_deplibs_check_method=pass_all' |