From: Xiong Zhang Date: Mon, 25 Nov 2013 07:22:50 +0000 (+0800) Subject: src/Makefile.am: correct compile failure for launcher-util.c X-Git-Tag: upstream/0.1.8~696 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e955525f1aab2b5dac6e08cc9174430fc8143d90;p=profile%2Fivi%2Fweston-ivi-shell.git src/Makefile.am: correct compile failure for launcher-util.c The following error message is generated during compile In file included from launcher-util.c:43:0: compositor.h:35:28: fatal error: wayland-server.h: No such file or directory #include Signed-off-by: Xiong Zhang --- diff --git a/src/Makefile.am b/src/Makefile.am index 92afae8..e05d278 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -53,7 +53,7 @@ libsession_helper_la_SOURCES = \ weston-launch.h \ launcher-util.c \ launcher-util.h -libsession_helper_la_CFLAGS = $(GCC_CFLAGS) $(LIBDRM_CFLAGS) $(PIXMAN_CFLAGS) +libsession_helper_la_CFLAGS = $(GCC_CFLAGS) $(LIBDRM_CFLAGS) $(PIXMAN_CFLAGS) $(COMPOSITOR_CFLAGS) libsession_helper_la_LIBADD = $(LIBDRM_LIBS) if ENABLE_DBUS