[vlc-devel] [PATCH 1/3] logger: add AM_CFLAGS
Thomas Guillem
thomas at gllm.fr
Mon Feb 9 11:10:41 CET 2015
It renames exported symbols: "vlc_entry__file" to "vlc_entry__file_logger"
---
modules/logger/Makefile.am | 3 +++
1 file changed, 3 insertions(+)
diff --git a/modules/logger/Makefile.am b/modules/logger/Makefile.am
index 229e3dc..4c77999 100644
--- a/modules/logger/Makefile.am
+++ b/modules/logger/Makefile.am
@@ -1,10 +1,13 @@
loggerdir = $(pluginsdir)/logger
libconsole_logger_plugin_la_SOURCES = logger/console.c
+libconsole_logger_plugin_la_CFLAGS = $(AM_CFLAGS)
libfile_logger_plugin_la_SOURCES = logger/file.c
+libfile_logger_plugin_la_CFLAGS = $(AM_CFLAGS)
logger_LTLIBRARIES = libconsole_logger_plugin.la libfile_logger_plugin.la
libsyslog_plugin_la_SOURCES = logger/syslog.c
+libsyslog_plugin_la_CFLAGS = $(AM_CFLAGS)
if HAVE_SYSLOG
logger_LTLIBRARIES += libsyslog_plugin.la
endif
--
2.1.3
More information about the vlc-devel
mailing list