diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-07-15 14:14:40 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-07-17 21:37:28 +0100 |
commit | 13bfc81098d10c5d93f18aa5ab6040709752fda4 (patch) | |
tree | 3f7ef58828a78bf738dda311a0a3a0cf35ce10d7 | |
parent | 9f6575042d8692d789ebe7b5a4adaa21693f134a (diff) |
recipes: update zlib to 1.2.11
https://bugzilla.gnome.org/show_bug.cgi?id=784362
-rw-r--r-- | recipes/zlib.recipe | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/zlib.recipe b/recipes/zlib.recipe index 8406d9d2..020ef47b 100644 --- a/recipes/zlib.recipe +++ b/recipes/zlib.recipe @@ -4,10 +4,10 @@ from cerbero.tools.libtool import LibtoolLibrary class Recipe(recipe.Recipe): name = 'zlib' - version = '1.2.10' + version = '1.2.11' stype = SourceType.TARBALL btype = BuildType.MAKEFILE - url = 'http://zlib.net/fossils/zlib-1.2.10.tar.gz' + url = 'http://zlib.net/fossils/zlib-1.2.11.tar.gz' licenses = [License.BSD_like] add_host_build_target = False can_use_configure_cache = False @@ -39,7 +39,7 @@ class Recipe(recipe.Recipe): self.configure_options += " --uname=" + self.config.host def post_install(self): - libtool_la = LibtoolLibrary('z', 1, 2, 8, self.config.libdir, + libtool_la = LibtoolLibrary('z', 1, 2, 11, self.config.libdir, self.config.target_platform) libtool_la.save() # FIXME This is to workaround a build issue trying to ld to libz.so |