[PATCH 1/2] json: Include all sources in _SOURCES
With the renaming and such the list of sources required to build the plugin got out of sync with reality. This patch corrects that, by adding the two new headers, and removing an old, unused one. Reported-by: Peter Czanik <czanik@balabit.hu> Signed-off-by: Gergely Nagy <algernon@balabit.hu> --- modules/json/Makefile.am | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/modules/json/Makefile.am b/modules/json/Makefile.am index 110b1b5..3338ff5 100644 --- a/modules/json/Makefile.am +++ b/modules/json/Makefile.am @@ -9,10 +9,11 @@ module_LTLIBRARIES = libjson-plugin.la libjson_plugin_la_SOURCES = \ format-json.c \ + format-json.h \ jsonparser.c \ + jsonparser.h \ jsonparser-grammar.y \ jsonparser-parser.c jsonparser-parser.h \ - json-plugin.h \ json-plugin.c libjson_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -- 1.7.9
Since we need logproto.h to build, include it in pkginclude_HEADERS. Signed-off-by: Gergely Nagy <algernon@balabit.hu> --- lib/Makefile.am | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/Makefile.am b/lib/Makefile.am index 63f3806..31d1f01 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -55,6 +55,7 @@ pkginclude_HEADERS = \ logproto-text-server.h \ logproto-record-server.h \ logproto-builtins.h \ + logproto.h \ logqueue-fifo.h \ logqueue.h \ logreader.h \ -- 1.7.9
participants (1)
-
Gergely Nagy