From ab5dd94c93dd41492c073578cb3f22b3fca7b4fe Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 4 Jun 2013 18:47:39 +0300 Subject: [PATCH] shared: fix build of libshared-cairo Another case of missing wayland-util.h, as we didn't pass any libwayland CFLAGS. This is triggerable on a system, where libwayland is installed in a custom prefix, and pixman, cairo, libpng, and webp are either not installed or are installed in the standard path. COMPOSITOR_CFLAGS contains more than just the libwayland CFLAGS, though. Signed-off-by: Pekka Paalanen --- shared/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/Makefile.am b/shared/Makefile.am index 323f838..6778b35 100644 --- a/shared/Makefile.am +++ b/shared/Makefile.am @@ -11,6 +11,7 @@ libshared_la_SOURCES = \ libshared_cairo_la_CFLAGS = \ $(GCC_CFLAGS) \ + $(COMPOSITOR_CFLAGS) \ $(PIXMAN_CFLAGS) \ $(CAIRO_CFLAGS) \ $(PNG_CFLAGS) \ -- 2.7.4