diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-18 23:10:01 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-18 23:10:01 -0800 |
commit | 73a0fbb479f5b7806a3dd0741be55c9abda76220 (patch) | |
tree | 5b0cb79450194bfc04b4f5034a6a7b2ec08bffa6 | |
parent | d6931eda2fe86566823437507b5d818458cfd002 (diff) |
Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS
Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html
- Support for the long-deprecated INCLUDES variable will be removed
altogether in Automake 1.14. The AM_CPPFLAGS variable should be
used instead.
This variable was deprecated in Automake releases prior to 1.10, which is
the current minimum level required to build X.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 672e08a..4e3f542 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -8,11 +8,10 @@ libXfixes_la_SOURCES = \ Xfixes.c \ Xfixesint.h -libXfixes_la_LIBADD = @FIXESEXT_LIBS@ AM_CFLAGS = $(CWARNFLAGS) @FIXESEXT_CFLAGS@ +AM_CPPFLAGS = -I$(top_srcdir)/include/X11/extensions -INCLUDES = -I$(top_srcdir)/include/X11/extensions - +libXfixes_la_LIBADD = @FIXESEXT_LIBS@ libXfixes_la_LDFLAGS = -version-number 3:1:0 -no-undefined libXfixesincludedir = $(includedir)/X11/extensions |