From 125a5f41eeb638ab4b24c84c103bf535614e63d3 Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Fri, 4 Sep 2026 15:41:31 -0600 Subject: [PATCH 1/2] Remove redundant SDL version from vendor info string SDL version is already included in the Zig wrapper package's version. --- build.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.zig b/build.zig index ada7df979..937f995b3 100644 --- a/build.zig +++ b/build.zig @@ -59,10 +59,9 @@ pub fn build(b: *std.Build) !void { }, .static => lib.root_module.addCMacro("SDL_STATIC_LIB", "1"), } - lib.root_module.addCMacro("SDL_VENDOR_INFO", std.fmt.comptimePrint("\"{s} {s} (SDL {s})\"", .{ + lib.root_module.addCMacro("SDL_VENDOR_INFO", std.fmt.comptimePrint("\"{s} {s}\"", .{ "https://github.com/allyourcodebase/SDL", build_zon.version, - build_zon.dependencies.sdl.version, })); lib.installHeadersDirectory(upstream.path("include/SDL3"), "SDL3", .{}); b.installArtifact(lib); From 8f78b10e1c100c5d48039616e5b7dbb6e2d25bd9 Mon Sep 17 00:00:00 2001 From: Jay Petacat Date: Fri, 4 Sep 2026 15:44:55 -0600 Subject: [PATCH 2/2] Upgrade to SDL 3.4.16 --- build.zig.zon | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index eb3000c16..e4b15e118 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,13 +1,13 @@ .{ .name = .sdl, .fingerprint = 0xec638ccbd103848b, - .version = "1.0.2+3.4.14", + .version = "1.0.2+3.4.16", .minimum_zig_version = "0.16.0", .dependencies = .{ .sdl = .{ - .url = "https://github.com/libsdl-org/SDL/archive/refs/tags/release-3.4.14.tar.gz", - .hash = "N-V-__8AAAHL9wLH-k89zUdJesNpvVC3lHMzF3jnhXfuclqx", - .version = "3.4.14", + .url = "https://github.com/libsdl-org/SDL/archive/refs/tags/release-3.4.16.tar.gz", + .hash = "N-V-__8AABHq9wIiTHGY4qR6mw45F_TX8FSvqsQQ-Wtq1tzY", + .version = "3.4.16", }, .dbus = .{ .version = "1.16.2",