From 749bac3d72b3bf46405a39b699f3d6043f55c605 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Wed, 12 Feb 2025 11:14:38 -0600 Subject: [PATCH] gtk: use the standard path for including Adwaita header file As pointed out by @tristan957 the standard path for including the Adwaita header file is simply "adwaita.h". While it may have been necessary in the past to use a non-standard include path, that no longer appears to be the case. --- src/apprt/gtk/c.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apprt/gtk/c.zig b/src/apprt/gtk/c.zig index 4dc8ea57f..5bd32edfe 100644 --- a/src/apprt/gtk/c.zig +++ b/src/apprt/gtk/c.zig @@ -4,7 +4,7 @@ const build_options = @import("build_options"); pub const c = @cImport({ @cInclude("gtk/gtk.h"); if (build_options.adwaita) { - @cInclude("libadwaita-1/adwaita.h"); + @cInclude("adwaita.h"); } if (build_options.x11) {