diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-18 23:14:01 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-18 23:14:01 -0800 |
commit | 99a63d10cbbab7d69a52d25d78795a3278506ea9 (patch) | |
tree | 5f72d3a84b8c40b7e3e2527dcad62ea093acf2b4 | |
parent | 150cf8788a94fc5fb519764e1d46cb520c1d4043 (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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 7a47b9c..2113846 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -19,7 +19,7 @@ AM_CFLAGS = \ $(MALLOC_ZERO_CFLAGS) \ $(CWARNFLAGS) -INCLUDES = -I$(top_srcdir)/include/X11/extensions +AM_CPPFLAGS = -I$(top_srcdir)/include/X11/extensions libXrandr_la_LDFLAGS = -version-number 2:2:0 -no-undefined |