Skip to content

Commit c83a13f

Browse files
committed
fix api changes of zig nightly
nothing
1 parent e048b21 commit c83a13f

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

build.zig.zon

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
.minimum_zig_version = "0.11.0",
55
.dependencies = .{
66
.webui = .{
7-
.url = "https://github.com/webui-dev/webui/archive/c56260ff0de8f13a49559ca592009093a5279e25.tar.gz",
8-
.hash = "1220b7199d576b0aa86449975518dfd7c694c12ea348b8c13223332e265216497c3b",
7+
.url = "https://github.com/webui-dev/webui/archive/e108e4b231fc6c3c431091638718b18aac8a78d6.tar.gz",
8+
.hash = "1220607529b67bcdc63413b3ad6af6d9bb7c907304417ff6d6acecce197a78d4ec82",
99
},
1010
},
1111
.paths = .{

build_12.zig

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub fn build_12(b: *Build) void {
2525
log.info("enable TLS support", .{});
2626
if (!target.query.isNative()) {
2727
log.info("when enable tls, not support cross compile", .{});
28-
std.os.exit(1);
28+
std.posix.exit(1);
2929
}
3030
}
3131

@@ -109,7 +109,7 @@ fn build_examples_12(b: *Build, optimize: OptimizeMode, target: Build.ResolvedTa
109109
var iter_dir =
110110
std.fs.openDirAbsolute(examples_path, .{ .iterate = true }) catch |err| {
111111
log.err("open examples_path failed, err is {}", .{err});
112-
std.os.exit(1);
112+
std.posix.exit(1);
113113
};
114114
defer iter_dir.close();
115115

@@ -121,7 +121,7 @@ fn build_examples_12(b: *Build, optimize: OptimizeMode, target: Build.ResolvedTa
121121
const example_name = entry.name;
122122
const path = std.fmt.allocPrint(b.allocator, "src/examples/{s}/main.zig", .{example_name}) catch |err| {
123123
log.err("fmt path for examples failed, err is {}", .{err});
124-
std.os.exit(1);
124+
std.posix.exit(1);
125125
};
126126

127127
const exe = b.addExecutable(.{
@@ -143,20 +143,20 @@ fn build_examples_12(b: *Build, optimize: OptimizeMode, target: Build.ResolvedTa
143143

144144
const cwd = std.fmt.allocPrint(b.allocator, "src/examples/{s}", .{example_name}) catch |err| {
145145
log.err("fmt path for examples failed, err is {}", .{err});
146-
std.os.exit(1);
146+
std.posix.exit(1);
147147
};
148148
exe_run.setCwd(.{
149149
.path = cwd,
150150
});
151151

152152
const step_name = std.fmt.allocPrint(b.allocator, "run_{s}", .{example_name}) catch |err| {
153153
log.err("fmt step_name for examples failed, err is {}", .{err});
154-
std.os.exit(1);
154+
std.posix.exit(1);
155155
};
156156

157157
const step_desc = std.fmt.allocPrint(b.allocator, "run_{s}", .{example_name}) catch |err| {
158158
log.err("fmt step_desc for examples failed, err is {}", .{err});
159-
std.os.exit(1);
159+
std.posix.exit(1);
160160
};
161161

162162
const exe_run_step = b.step(step_name, step_desc);
@@ -167,6 +167,6 @@ fn build_examples_12(b: *Build, optimize: OptimizeMode, target: Build.ResolvedTa
167167
}
168168
} else |err| {
169169
log.err("iterate examples_path failed, err is {}", .{err});
170-
std.os.exit(1);
170+
std.posix.exit(1);
171171
}
172172
}

src/webui.zig

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
//! Licensed under MIT License.
99

1010
const std = @import("std");
11+
const builtin = @import("builtin");
1112
const flags = @import("flags");
1213

1314
const WebUI = @cImport({
@@ -208,7 +209,11 @@ pub fn newWindow() Self {
208209
pub fn newWindowWithId(id: usize) Self {
209210
if (id == 0 or id >= WebUI.WEBUI_MAX_IDS) {
210211
std.log.err("id {} is illegal", .{id});
211-
std.os.exit(1);
212+
if (comptime builtin.zig_version.minor == 11) {
213+
std.os.exit(1);
214+
} else if (comptime builtin.zig_version.minor == 12) {
215+
std.posix.exit(1);
216+
}
212217
}
213218
return .{
214219
.window_handle = WebUI.webui_new_window_id(id),

0 commit comments

Comments
 (0)