Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
970 B
Diff
23 lines
970 B
Diff
diff --git a/build.zig b/build.zig
|
|
index 5a16b8a..3c36c20 100755
|
|
--- a/build.zig
|
|
+++ b/build.zig
|
|
@@ -5,7 +5,7 @@ fn addMupdfStatic(exe: *std.Build.Step.Compile, b: *std.Build, prefix: []const u
|
|
exe.addLibraryPath(.{ .cwd_relative = b.fmt("{s}/lib", .{prefix}) });
|
|
|
|
exe.addObjectFile(.{ .cwd_relative = b.fmt("{s}/lib/libmupdf.a", .{prefix}) });
|
|
- exe.addObjectFile(.{ .cwd_relative = b.fmt("{s}/lib/libmupdf-third.a", .{prefix}) });
|
|
+ exe.addObjectFile(.{ .cwd_relative = b.fmt("{s}/lib/libmupdf.a", .{prefix}) });
|
|
|
|
exe.linkLibC();
|
|
}
|
|
@@ -22,7 +22,7 @@ fn addMupdfDynamic(exe: *std.Build.Step.Compile, target: std.Target) void {
|
|
exe.addLibraryPath(.{ .cwd_relative = "/home/linuxbrew/.linuxbrew/lib" });
|
|
|
|
const linux_libs = [_][]const u8{
|
|
- "mupdf-third", "harfbuzz",
|
|
+ "mupdf", "harfbuzz",
|
|
"freetype", "jbig2dec",
|
|
"jpeg", "openjp2",
|
|
"gumbo", "mujs",
|