Fix this warning:

  src/Makefile.am:167: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' 
(or '*_CPPFLAGS')

However, fluidsynth is using C so it's AM_CFLAGS instead of AM_CPPFLAGS.
---
 fluidsynth/src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fluidsynth/src/Makefile.am b/fluidsynth/src/Makefile.am
index 5244322..4fec1a6 100644
--- a/fluidsynth/src/Makefile.am
+++ b/fluidsynth/src/Makefile.am
@@ -164,7 +164,7 @@ libfluidsynth_la_SOURCES = \
     bindings/fluid_ladspa.h \
     bindings/fluid_filerenderer.c 
 
-INCLUDES = -I$(top_srcdir)/include \
+AM_CFLAGS = -I$(top_srcdir)/include \
   -I$(top_srcdir)/src \
   -I$(top_srcdir)/src/drivers \
   -I$(top_srcdir)/src/synth \
-- 
2.1.1


_______________________________________________
fluid-dev mailing list
fluid-dev@nongnu.org
https://lists.nongnu.org/mailman/listinfo/fluid-dev

Reply via email to