Browse Source
qt5.7 changed the location of some of its symbols, creating a circular dependency in Qt5Core. Rather than trying to fix that up, build our own zlib rather than having it built for us.0.14
Cory Fields
8 years ago
3 changed files with 28 additions and 3 deletions
@ -0,0 +1,25 @@
@@ -0,0 +1,25 @@
|
||||
package=zlib |
||||
$(package)_version=1.2.11 |
||||
$(package)_download_path=http://www.zlib.net |
||||
$(package)_file_name=$(package)-$($(package)_version).tar.gz |
||||
$(package)_sha256_hash=c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1 |
||||
|
||||
define $(package)_set_vars |
||||
$(package)_build_opts= CC="$($(package)_cc)" |
||||
$(package)_build_opts+=CFLAGS="$($(package)_cflags) $($(package)_cppflags) -fPIC" |
||||
$(package)_build_opts+=AR="$($(package)_ar)" |
||||
$(package)_build_opts+=RANLIB="$($(package)_ranlib)" |
||||
endef |
||||
|
||||
define $(package)_config_cmds |
||||
./configure --static --prefix=$(host_prefix) |
||||
endef |
||||
|
||||
define $(package)_build_cmds |
||||
$(MAKE) $($(package)_build_opts) libz.a |
||||
endef |
||||
|
||||
define $(package)_stage_cmds |
||||
$(MAKE) DESTDIR=$($(package)_staging_dir) install $($(package)_build_opts) |
||||
endef |
||||
|
Loading…
Reference in new issue