mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-05 13:24:43 +00:00
pkg/macos: clean up for Zig 0.14, consolidate C imports into one decl
Fixes #6727 The major change in this commit is to consolidate all the C imports in a single decl in main.zig. This is required for Zig 0.14. Without it, the problem in #6727 will happen. I was never able to minimize why this happens in order to open a Zig bug. Beyond this, I fixed the build.zig and build.zig.zon to work with Zig 0.14 so that we can test building `pkg/macos` in isolation. There are no downstream impacting changes in the build.zig files.
This commit is contained in:
@@ -1,3 +1 @@
|
||||
pub const c = @cImport({
|
||||
@cInclude("dispatch/dispatch.h");
|
||||
});
|
||||
pub const c = @import("../main.zig").c;
|
||||
|
||||
Reference in New Issue
Block a user