Update ZeroMQ to 4.3.5
This commit is contained in:
+6
-6
@@ -99,11 +99,11 @@ install-prefix: $(packages)
|
||||
exit 1; \
|
||||
fi; \
|
||||
if (( $${#artifacts[@]} > 1 )); then \
|
||||
echo "WARN: multiple built artifacts for $$p; using newest by name"; \
|
||||
echo "WARN: multiple built artifacts for $$p; using newest by modification time"; \
|
||||
fi; \
|
||||
IFS=$$'\n' sorted=( $$(printf '%s\n' "$${artifacts[@]}" | sort) ); \
|
||||
IFS=$$'\n' sorted=( $$(ls -t "$${artifacts[@]}") ); \
|
||||
unset IFS; \
|
||||
f="$${sorted[$$(($${#sorted[@]} - 1))]}"; \
|
||||
f="$${sorted[0]}"; \
|
||||
echo " - $$p: $$f"; \
|
||||
tar --no-same-owner -xzf "$$f" -C "$(host_prefix)"; \
|
||||
done
|
||||
@@ -120,11 +120,11 @@ ifneq ($(native_packages),)
|
||||
exit 1; \
|
||||
fi; \
|
||||
if (( $${#artifacts[@]} > 1 )); then \
|
||||
echo "WARN: multiple built artifacts for $$p; using newest by name"; \
|
||||
echo "WARN: multiple built artifacts for $$p; using newest by modification time"; \
|
||||
fi; \
|
||||
IFS=$$'\n' sorted=( $$(printf '%s\n' "$${artifacts[@]}" | sort) ); \
|
||||
IFS=$$'\n' sorted=( $$(ls -t "$${artifacts[@]}") ); \
|
||||
unset IFS; \
|
||||
f="$${sorted[$$(($${#sorted[@]} - 1))]}"; \
|
||||
f="$${sorted[0]}"; \
|
||||
echo " - $$p: $$f"; \
|
||||
tar --no-same-owner -xzf "$$f" -C "$(build_prefix)"; \
|
||||
done
|
||||
|
||||
+1
-1
@@ -94,7 +94,7 @@ The following can be set when running make: make FOO=bar
|
||||
SDK_PATH: Path where sdk's can be found (used by macOS)
|
||||
FALLBACK_DOWNLOAD_PATH: If a source file can't be fetched, try here before giving up
|
||||
NO_QT: Don't download/build/cache qt and its dependencies
|
||||
NO_ZMQ: Don't download/build/cache packages needed for enabling zeromq
|
||||
USE_ZMQ: Build and cache ZeroMQ for optional ZMQ notification support
|
||||
NO_WALLET: Don't download/build/cache libs needed to enable the wallet
|
||||
NO_UPNP: Don't download/build/cache packages needed for enabling upnp
|
||||
DEBUG: disable some optimizations and enable more runtime checking
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
package=zeromq
|
||||
$(package)_version=4.3.1
|
||||
$(package)_version=4.3.5
|
||||
$(package)_download_path=https://github.com/zeromq/libzmq/releases/download/v$($(package)_version)/
|
||||
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
||||
$(package)_sha256_hash=bcbabe1e2c7d0eec4ed612e10b94b112dd5f06fcefa994a0c79a45d835cd21eb
|
||||
$(package)_patches=0001-fix-build-with-older-mingw64.patch 0002-disable-pthread_set_name_np.patch
|
||||
$(package)_sha256_hash=6653ef5910f17954861fe72332e68b03ca6e4d9c7160eb3a8de5a5a913bfab43
|
||||
|
||||
define $(package)_set_vars
|
||||
$(package)_config_opts=--without-docs --disable-shared --without-libsodium --disable-curve --disable-curve-keygen --disable-perf --disable-Werror
|
||||
@@ -12,8 +11,6 @@ define $(package)_set_vars
|
||||
endef
|
||||
|
||||
define $(package)_preprocess_cmds
|
||||
patch -p1 < $($(package)_patch_dir)/0001-fix-build-with-older-mingw64.patch && \
|
||||
patch -p1 < $($(package)_patch_dir)/0002-disable-pthread_set_name_np.patch && \
|
||||
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub config
|
||||
endef
|
||||
|
||||
|
||||
Reference in New Issue
Block a user