git.lucas.co / cce-compositor
Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git

commitd43f968b8bea38506f40d72bf862a5ecaec94596
parentd71d38b383
authorIsaac Freund <[email protected]>
date2020-11-04 15:16
build: don't link pixman

River doesn't require any symbols from pixman (yet) and zig doesn't
seem to have an issue finding the headers anymore.

 build.zig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/build.zig b/build.zig
index 95a4d5f..1baf9a9 100644
--- a/build.zig
+++ b/build.zig
@@ -121,7 +121,6 @@ fn addServerDeps(exe: *std.build.LibExeObjStep) void {
 
     exe.linkLibC();
     exe.linkSystemLibrary("libevdev");
-    exe.linkSystemLibrary("pixman-1");
     exe.linkSystemLibrary("wayland-server");
     exe.linkSystemLibrary("wlroots");
     exe.linkSystemLibrary("xkbcommon");