1From d2ccba90186e2affbb3d146ada341ea2ae6fab2c Mon Sep 17 00:00:00 2001
2From: Akira TAGOH <akira@tagoh.org>
3Date: Mon, 13 May 2013 16:05:32 +0900
4Subject: [PATCH 1/3] Use AM_CPPFLAGS instead of INCLUDES
5
6---
7 docs/reference/Makefile.am | 2 +-
8 libgxim/Makefile.am        | 2 +-
9 tests/Makefile.am          | 2 +-
10 3 files changed, 3 insertions(+), 3 deletions(-)
11
12diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
13index 24986e1..f785735 100644
14--- a/docs/reference/Makefile.am
15+++ b/docs/reference/Makefile.am
16@@ -84,7 +84,7 @@ expand_content_files=
17 # signals and properties.
18 # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
19 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
20-INCLUDES=					\
21+AM_CPPFLAGS=					\
22 	$(GXIM_CFLAGS)				\
23 	-I$(top_srcdir)				\
24 	$(NULL)
25diff --git a/libgxim/Makefile.am b/libgxim/Makefile.am
26index 572bdb5..ae1ba32 100644
27--- a/libgxim/Makefile.am
28+++ b/libgxim/Makefile.am
29@@ -1,7 +1,7 @@
30 ##
31 # Global definitions
32 NULL =
33-INCLUDES =							\
34+AM_CPPFLAGS =							\
35 	$(GXIM_CFLAGS)						\
36 	-I$(top_srcdir)						\
37 	$(NULL)
38diff --git a/tests/Makefile.am b/tests/Makefile.am
39index 2926829..919ccc8 100644
40--- a/tests/Makefile.am
41+++ b/tests/Makefile.am
42@@ -1,7 +1,7 @@
43 ##
44 # Global definitions
45 NULL =
46-INCLUDES =					\
47+AM_CPPFLAGS =					\
48 	-I$(top_srcdir)/libgxim			\
49 	-I$(top_srcdir)				\
50 	$(GXIM_CFLAGS)				\
51--
522.12.1
53
54