Skip to content

Commit

Permalink
MAC OS (M1, aarch64): fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
7phs committed Feb 2, 2025
1 parent 19c3835 commit de0bdb5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ pub fn build(b: *std.Build) void {
.HAVE_NANOSLEEP = true,
.HAVE_PEEKNAMEDPIPE = false,
.HAVE_POSIX_MEMALIGN = true,
.HAVE_PRCTL = true,
.HAVE_PRCTL = t.os.tag != .macos,
.HAVE_PTHREAD_CANCEL = true,
.HAVE_PTHREAD_SET_NAME_NP = false,
.HAVE_PTHREAD_SETNAME_NP = false,
Expand Down
4 changes: 2 additions & 2 deletions build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

.dependencies = .{
.libz = .{
.url = "https://github.com/allyourcodebase/zlib/archive/refs/tags/1.3.1-3.tar.gz",
.hash = "1220138f4aba0c01e66b68ed9e1e1e74614c06e4743d88bc58af4f1c3dd0aae5fea7",
.url = "https://github.com/allyourcodebase/zlib/archive/refs/tags/1.3.1.tar.gz",
.hash = "122034ab2a12adf8016ffa76e48b4be3245ffd305193edba4d83058adbcfa749c107",
},
.mbedtls = .{
.url = "git+https://github.com/allyourcodebase/mbedtls#40a2c1126b45f87d19b256229620bc2995637e5a",
Expand Down

0 comments on commit de0bdb5

Please sign in to comment.