From 05a0240e254af7b1fa4af1f522b80f3df0c38aac Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sun, 25 Jun 2023 00:33:01 -0700 Subject: [PATCH] glfw: ensure macOS 11 system SDK applies to all 11 versions Signed-off-by: Stephen Gutekanst --- libs/glfw/system_sdk.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/glfw/system_sdk.zig b/libs/glfw/system_sdk.zig index 7b8023bf..8d299ed1 100644 --- a/libs/glfw/system_sdk.zig +++ b/libs/glfw/system_sdk.zig @@ -78,7 +78,7 @@ pub const Options = struct { .os_tag = .macos, .os_version = .{ .semver = .{ - .min = .{ .major = 11, .minor = 3, .patch = std.math.maxInt(u32) }, + .min = .{ .major = 11, .minor = 0, .patch = std.math.maxInt(u32) }, .max = .{ .major = 11, .minor = std.math.maxInt(u32), .patch = std.math.maxInt(u32) }, }, },