diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-05 17:32:46 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-09 21:57:46 +0200 |
commit | 44fb920e5cd26adb53a2bce2351efbab36b8d02a (patch) | |
tree | 67b0e4918a8df09e6c9aa097da056b141f4a7633 /recipes | |
parent | 5aca584c8635a0914b236c8324d6e389d97cb100 (diff) |
Build with included modules to make it easier relocations
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gdk-pixbuf.recipe | 3 | ||||
-rw-r--r-- | recipes/gtk.recipe | 3 | ||||
-rw-r--r-- | recipes/pango.recipe | 3 |
3 files changed, 5 insertions, 4 deletions
diff --git a/recipes/gdk-pixbuf.recipe b/recipes/gdk-pixbuf.recipe index 7c8303f8..2d460892 100644 --- a/recipes/gdk-pixbuf.recipe +++ b/recipes/gdk-pixbuf.recipe @@ -5,6 +5,7 @@ class Recipe(recipe.Recipe): name = 'gdk-pixbuf' version = '2.24.1' license = 'LGPLv2.1' + configure_options = '--with-included-loaders ' deps = ['jpeg', 'glib', 'libpng', 'tiff', 'zlib' ] files_libs = ['libgdk_pixbuf-2.0'] @@ -18,7 +19,7 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform == Platform.WINDOWS: self.autoreconf = True - self.configure_options += '--without-gdiplus --with-included-loaders' + self.configure_options += '--without-gdiplus ' if self.config.target_platform == Platform.DARWIN: self.autoreconf = True self.configure_options += '--without-x11 ' diff --git a/recipes/gtk.recipe b/recipes/gtk.recipe index 843f3a35..c8c64370 100644 --- a/recipes/gtk.recipe +++ b/recipes/gtk.recipe @@ -5,6 +5,7 @@ class Recipe(recipe.Recipe): name = 'gtk+' version = '2.24.10' license = 'LGPLv2' + configure_options = '--with-included-immodules ' deps = ['glib', 'atk', 'pango', 'gdk-pixbuf', 'cairo'] files_libs = ['libgailutil'] @@ -38,7 +39,7 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform == Platform.WINDOWS: - self.configure_options += '--disable-papi --disable-cups --with-included-immodules' + self.configure_options += '--disable-papi --disable-cups ' if self.config.target_platform == Platform.DARWIN: self.configure_options += '--with-gdktarget=quartz ' diff --git a/recipes/pango.recipe b/recipes/pango.recipe index d9ff8b64..d8ab6eff 100644 --- a/recipes/pango.recipe +++ b/recipes/pango.recipe @@ -6,6 +6,7 @@ class Recipe(recipe.Recipe): version = '1.28.4' autoreconf = True license = 'LGPLv2.1' + configure_options = '--with-included-modules ' deps = ['cairo', 'fontconfig', 'freetype'] files_libs = ['libpangocairo-1.0', 'libpango-1.0', 'libpangoft2-1.0'] @@ -28,7 +29,5 @@ class Recipe(recipe.Recipe): Platform.DARWIN: ['lib/pango']} def prepare(self): - if self.config.target_platform == Platform.WINDOWS: - self.configure_options += '--with-included-modules' if self.config.target_platform == Platform.DARWIN: self.configure_options += ' --without-x ' |