diff options
author | Issam E. Maghni <[email protected]> | 2021-05-07 16:57:51 -0400 |
---|---|---|
committer | Simon Ser <[email protected]> | 2021-05-10 10:28:32 +0200 |
commit | d45623c2db570b7a2e0582943734d18f3d64b126 (patch) | |
tree | 6ecb1ad308bb31c00f71213207fe2a8725217d44 /common/pango.c | |
parent | 009c58fc9529e284569bf58b73964cb3dc7c5baf (diff) |
cairo: Replace <cairo/cairo.h> by <cairo.h>
For full context, read
https://gitlab.freedesktop.org/cairo/cairo/-/issues/479
TL;DR, cairo’s pc file adds `/cairo` to CFLAGS.
So namespace cairo shouldn’t be used.
Diffstat (limited to 'common/pango.c')
-rw-r--r-- | common/pango.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/pango.c b/common/pango.c index fc3d0688..dbc369dc 100644 --- a/common/pango.c +++ b/common/pango.c @@ -1,4 +1,4 @@ -#include <cairo/cairo.h> +#include <cairo.h> #include <pango/pangocairo.h> #include <stdarg.h> #include <stdbool.h> @@ -6,7 +6,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "cairo.h" +#include "cairo_util.h" #include "log.h" #include "stringop.h" |