diff options
author | progandy <code@progandy> | 2015-12-20 17:37:52 +0100 |
---|---|---|
committer | progandy <code@progandy> | 2015-12-20 17:37:52 +0100 |
commit | 33c4721685deda70dedab2ab755198d8e810013b (patch) | |
tree | c524773788694438c24e8ccc374306bc2162c95c /main.c | |
parent | d215cebec2b5d0c5318e060d9c5dbc8152f7cace (diff) | |
download | swaybg-33c4721685deda70dedab2ab755198d8e810013b.tar.gz swaybg-33c4721685deda70dedab2ab755198d8e810013b.tar.bz2 |
make gdk-pixbuf dependency really optional
Diffstat (limited to '')
-rw-r--r-- | main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -56,6 +56,7 @@ int main(int argc, const char **argv) { desktop_shell_set_background(registry->desktop_shell, output->output, window->surface); list_add(surfaces, window); +#ifdef WITH_GDK_PIXBUF GError *err = NULL; GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(argv[2], &err); if (!pixbuf) { @@ -63,6 +64,9 @@ int main(int argc, const char **argv) { } cairo_surface_t *image = gdk_cairo_image_surface_create_from_pixbuf(pixbuf); g_object_unref(pixbuf); +#else + cairo_surface_t *image = cairo_image_surface_create_from_png(argv[2]); +#endif //WITH_GDK_PIXBUF if (!image) { sway_abort("Failed to read background image."); } |