From 15e15db54f7a5c00e3f0722bc29d437c4ded2a6e Mon Sep 17 00:00:00 2001 From: Bartosz Szczepanski Date: Thu, 9 May 2013 15:03:42 +0200 Subject: [PATCH] gallium/gbm: Fix compilation for wayland include src/gallium/state_trackers/gbm/gbm_drm.c fails to compile because it can't locate wayland-server.h Signed-off-by: Bartosz Szczepanski --- src/gallium/state_trackers/gbm/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/state_trackers/gbm/Makefile.am b/src/gallium/state_trackers/gbm/Makefile.am index 70c5f77..0297383 100644 --- a/src/gallium/state_trackers/gbm/Makefile.am +++ b/src/gallium/state_trackers/gbm/Makefile.am @@ -28,6 +28,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/include if HAVE_EGL_PLATFORM_WAYLAND AM_CPPFLAGS += -DHAVE_WAYLAND_PLATFORM +AM_CFLAGS += $(WAYLAND_CFLAGS) endif noinst_LTLIBRARIES = libgbm.la -- 1.7.9.5