1 The configure script is correctly getting the CFLAGS needed to compile a plugin
2 for gstreamer and storing them in GST_BASE_CFLAGS but the Makefiles are never
5 We actually have to use AM_CPPFLAGS as AM_CFLAGS is used everywhere but on the
8 Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
10 src/Makefile.am | 2 ++
11 1 file changed, 2 insertions(+)
13 diff --git a/src/Makefile.am b/src/Makefile.am
14 index 8cb51d1..6af5d91 100644
18 ##############################################################################
19 plugin_LTLIBRARIES = libgstx170.la
21 +AM_CPPFLAGS = @GST_BASE_CFLAGS@
23 ##############################################################################
24 # for the next set of variables, rename the prefix if you renamed the .la, #
25 # e.g. libgstplugin_la_SOURCES => libmysomething_la_SOURCES #