Skip to content

Commit

Permalink
zlib-ng: update to 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bgilbert authored and jpakkane committed Feb 11, 2025
1 parent deed408 commit b45f5e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -4032,6 +4032,7 @@
"zlib-ng"
],
"versions": [
"2.2.4-1",
"2.2.3-1",
"2.2.2-1"
]
Expand Down
5 changes: 2 additions & 3 deletions subprojects/packagefiles/zlib-ng/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ if cpu_family in ['arm', 'aarch64']
endif
endif
want_neon = get_option('neon')
have_neon = want_neon.allowed() and cc.compiles(
# avoid Alpine armv7 CI failure: https://github.com/zlib-ng/zlib-ng/issues/1844
have_neon = want_neon.allowed() and not (cc_id == 'clang' and cpu_family == 'arm') and cc.compiles(
'''#if defined(_M_ARM64) || defined(_M_ARM64EC)
# include <arm64_neon.h>
#else
Expand Down Expand Up @@ -932,7 +933,6 @@ elif cpu_family in ['x86', 'x86_64']

else
summary('Architecture', 'generic', section: arch_section)
archdir = 'arch/generic'
endif

zlib_ng = library(
Expand All @@ -941,7 +941,6 @@ zlib_ng = library(
c_args: compile_args,
link_args: link_args,
vs_module_defs: def,
include_directories: [archdir, 'arch/generic'],
link_with: arch_libs,
install: true,
version: lib_version,
Expand Down
8 changes: 4 additions & 4 deletions subprojects/zlib-ng.wrap
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[wrap-file]
directory = zlib-ng-2.2.3
source_url = https://github.com/zlib-ng/zlib-ng/archive/refs/tags/2.2.3.tar.gz
source_filename = zlib-ng-2.2.3.tar.gz
source_hash = f2fb245c35082fe9ea7a22b332730f63cf1d42f04d84fe48294207d033cba4dd
directory = zlib-ng-2.2.4
source_url = https://github.com/zlib-ng/zlib-ng/archive/refs/tags/2.2.4.tar.gz
source_filename = zlib-ng-2.2.4.tar.gz
source_hash = a73343c3093e5cdc50d9377997c3815b878fd110bf6511c2c7759f2afb90f5a3
patch_directory = zlib-ng

[provide]
Expand Down

0 comments on commit b45f5e9

Please sign in to comment.