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---
7Upstream-Status: Pending
8
9 docs/reference/Makefile.am | 2 +-
10 libgxim/Makefile.am        | 2 +-
11 tests/Makefile.am          | 2 +-
12 3 files changed, 3 insertions(+), 3 deletions(-)
13
14diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
15index 24986e1..f785735 100644
16--- a/docs/reference/Makefile.am
17+++ b/docs/reference/Makefile.am
18@@ -84,7 +84,7 @@ expand_content_files=
19 # signals and properties.
20 # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
21 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
22-INCLUDES=					\
23+AM_CPPFLAGS=					\
24 	$(GXIM_CFLAGS)				\
25 	-I$(top_srcdir)				\
26 	$(NULL)
27diff --git a/libgxim/Makefile.am b/libgxim/Makefile.am
28index 572bdb5..ae1ba32 100644
29--- a/libgxim/Makefile.am
30+++ b/libgxim/Makefile.am
31@@ -1,7 +1,7 @@
32 ##
33 # Global definitions
34 NULL =
35-INCLUDES =							\
36+AM_CPPFLAGS =							\
37 	$(GXIM_CFLAGS)						\
38 	-I$(top_srcdir)						\
39 	$(NULL)
40diff --git a/tests/Makefile.am b/tests/Makefile.am
41index 2926829..919ccc8 100644
42--- a/tests/Makefile.am
43+++ b/tests/Makefile.am
44@@ -1,7 +1,7 @@
45 ##
46 # Global definitions
47 NULL =
48-INCLUDES =					\
49+AM_CPPFLAGS =					\
50 	-I$(top_srcdir)/libgxim			\
51 	-I$(top_srcdir)				\
52 	$(GXIM_CFLAGS)				\
53--
542.12.1
55
56