diff options
-rw-r--r-- | background-image.c | 2 | ||||
-rw-r--r-- | cairo.c | 4 | ||||
-rw-r--r-- | include/background-image.h | 2 | ||||
-rw-r--r-- | include/cairo_util.h (renamed from include/cairo.h) | 6 | ||||
-rw-r--r-- | include/pool-buffer.h | 2 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | pool-buffer.c | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/background-image.c b/background-image.c index 63c9810..26cb6ee 100644 --- a/background-image.c +++ b/background-image.c @@ -1,6 +1,6 @@ #include <assert.h> #include "background-image.h" -#include "cairo.h" +#include "cairo_util.h" #include "log.h" enum background_mode parse_background_mode(const char *mode) { @@ -1,6 +1,6 @@ #include <stdint.h> -#include <cairo/cairo.h> -#include "cairo.h" +#include <cairo.h> +#include "cairo_util.h" #if HAVE_GDK_PIXBUF #include <gdk-pixbuf/gdk-pixbuf.h> #endif diff --git a/include/background-image.h b/include/background-image.h index 15935ff..a97ef37 100644 --- a/include/background-image.h +++ b/include/background-image.h @@ -1,6 +1,6 @@ #ifndef _SWAY_BACKGROUND_IMAGE_H #define _SWAY_BACKGROUND_IMAGE_H -#include "cairo.h" +#include "cairo_util.h" enum background_mode { BACKGROUND_MODE_STRETCH, diff --git a/include/cairo.h b/include/cairo_util.h index 15664cd..a64c355 100644 --- a/include/cairo.h +++ b/include/cairo_util.h @@ -1,9 +1,9 @@ -#ifndef _SWAY_CAIRO_H -#define _SWAY_CAIRO_H +#ifndef _SWAY_CAIRO_UTIL_H +#define _SWAY_CAIRO_UTIL_H #include "config.h" #include <stdint.h> -#include <cairo/cairo.h> +#include <cairo.h> #include <wayland-client.h> #if HAVE_GDK_PIXBUF #include <gdk-pixbuf/gdk-pixbuf.h> diff --git a/include/pool-buffer.h b/include/pool-buffer.h index 0ebf787..a3930e0 100644 --- a/include/pool-buffer.h +++ b/include/pool-buffer.h @@ -1,6 +1,6 @@ #ifndef _SWAY_BUFFERS_H #define _SWAY_BUFFERS_H -#include <cairo/cairo.h> +#include <cairo.h> #include <stdbool.h> #include <stdint.h> #include <wayland-client.h> @@ -9,7 +9,7 @@ #include <strings.h> #include <wayland-client.h> #include "background-image.h" -#include "cairo.h" +#include "cairo_util.h" #include "log.h" #include "pool-buffer.h" #include "wlr-layer-shell-unstable-v1-client-protocol.h" diff --git a/pool-buffer.c b/pool-buffer.c index b3f1ef2..428ef51 100644 --- a/pool-buffer.c +++ b/pool-buffer.c @@ -1,6 +1,6 @@ #define _POSIX_C_SOURCE 200809 #include <assert.h> -#include <cairo/cairo.h> +#include <cairo.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> |