Skip to content

Commit 99cbc06

Browse files
authored
gtk: use the standard path for including Adwaita header file (#5716)
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.
2 parents 1bb87e1 + 749bac3 commit 99cbc06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/apprt/gtk/c.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const build_options = @import("build_options");
44
pub const c = @cImport({
55
@cInclude("gtk/gtk.h");
66
if (build_options.adwaita) {
7-
@cInclude("libadwaita-1/adwaita.h");
7+
@cInclude("adwaita.h");
88
}
99

1010
if (build_options.x11) {

0 commit comments

Comments
 (0)