diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-12-20 11:56:13 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-12-20 11:56:13 -0500 |
commit | dfc23086fd9597a5f9c7182851052435e134be5f (patch) | |
tree | 946a056785f05744932f21538a90f5687deb299c /include/client/cairo.h | |
parent | 66554698a08e8c3846d22f61445c880c9de20e26 (diff) | |
parent | 21014e606b9b28d792b98cf363f20c7df2136723 (diff) |
Merge pull request #377 from progandy/optional-pixbuf
make gdk-pixbuf dependency really optional
Diffstat (limited to 'include/client/cairo.h')
-rw-r--r-- | include/client/cairo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/client/cairo.h b/include/client/cairo.h index 98ced907..ad8390c4 100644 --- a/include/client/cairo.h +++ b/include/client/cairo.h @@ -1,8 +1,10 @@ #ifndef _SWAY_CAIRO_H #define _SWAY_CAIRO_H +#ifdef WITH_GDK_PIXBUF #include <gdk-pixbuf/gdk-pixbuf.h> cairo_surface_t* gdk_cairo_image_surface_create_from_pixbuf(const GdkPixbuf *gdkbuf); +#endif //WITH_GDK_PIXBUF #endif |