~ubuntu-branches/ubuntu/wily/syslog-ng/wily-proposed

« back to all changes in this revision

Viewing changes to modules/csvparser/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Gergely Nagy, Gergely Nagy
  • Date: 2013-11-04 15:27:37 UTC
  • mfrom: (1.3.12)
  • Revision ID: package-import@ubuntu.com-20131104152737-mqh6eqtna2xk97jq
Tags: 3.5.1-1
[ Gergely Nagy <algernon@madhouse-project.org> ]
* New upstream release.
  + Support auto-loading modules (Closes: #650814)
  + The SMTP module is available in syslog-ng-mod-smtp (Closes: #722746)
  + New modules: amqp, geoip, stomp, redis and smtp.
  + Multi-line input support (indented multiline and regexp-based)
  + Template type hinting for the MongoDB destination and $(format-json)
  + Support for unit suffixes in the configuration file
  + New filters, template functions and other miscellaneous changes
* New (team) maintainer, Laszlo Boszormenyi, Attila Szalay and myself
  added to Uploaders.
* Ship /var/lib/syslog-ng in the syslog-ng-core package, instead of
  creating it in the init script. Thanks Michael Biebl
  <biebl@debian.org> for the report & assistance. (Closes: #699942, #719910)
* Use dh-systemd for proper systemd-related maintainer scripts. Based on
  a patch by Michael Biebl <biebl@debian.org>. (Closes: #713982,
  #690067)
* Do not wait for syslog-ng to settle down during installation / update.
  This also fixes installing via debootstrap and a fake
  start-stop-daemon. (Closes: #714254)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
moduledir = @moduledir@
2
 
AM_CPPFLAGS = -I$(top_srcdir)/lib -I../../lib
3
 
export top_srcdir
4
 
 
5
 
module_LTLIBRARIES := libcsvparser.la
6
 
libcsvparser_la_SOURCES = \
7
 
        csvparser.c csvparser.h \
8
 
        csvparser-grammar.y csvparser-parser.c csvparser-parser.h csvparser-plugin.c
9
 
 
10
 
libcsvparser_la_CPPFLAGS = $(AM_CPPFLAGS)
11
 
libcsvparser_la_LIBADD = $(MODULE_DEPS_LIBS)
12
 
libcsvparser_la_LDFLAGS = $(MODULE_LDFLAGS)
13
 
 
14
 
BUILT_SOURCES = csvparser-grammar.y csvparser-grammar.c csvparser-grammar.h
15
 
EXTRA_DIST = $(BUILT_SOURCES) csvparser-grammar.ym
16
 
 
17
 
include $(top_srcdir)/build/lex-rules.am
 
1
module_LTLIBRARIES                              += modules/csvparser/libcsvparser.la
 
2
modules_csvparser_libcsvparser_la_SOURCES       =       \
 
3
        modules/csvparser/csvparser.c                   \
 
4
        modules/csvparser/csvparser.h                   \
 
5
        modules/csvparser/csvparser-grammar.y           \
 
6
        modules/csvparser/csvparser-parser.c            \
 
7
        modules/csvparser/csvparser-parser.h            \
 
8
        modules/csvparser/csvparser-plugin.c
 
9
 
 
10
modules_csvparser_libcsvparser_la_CPPFLAGS      =       \
 
11
        $(AM_CPPFLAGS)                                  \
 
12
        -I$(top_srcdir)/modules/csvparser               \
 
13
        -I$(top_builddir)/modules/csvparser
 
14
modules_csvparser_libcsvparser_la_LIBADD        =       \
 
15
        $(MODULE_DEPS_LIBS)
 
16
modules_csvparser_libcsvparser_la_LDFLAGS       =       \
 
17
        $(MODULE_LDFLAGS)
 
18
modules_csvparser_libcsvparser_la_DEPENDENCIES  =       \
 
19
        $(MODULE_DEPS_LIBS)
 
20
 
 
21
BUILT_SOURCES                                   +=      \
 
22
        modules/csvparser/csvparser-grammar.y           \
 
23
        modules/csvparser/csvparser-grammar.c           \
 
24
        modules/csvparser/csvparser-grammar.h
 
25
EXTRA_DIST                                      +=      \
 
26
        modules/csvparser/csvparser-grammar.ym
 
27
 
 
28
modules/csvparser modules/csvparser/ mod-csvparser: modules/csvparser/libcsvparser.la
 
29
.PHONY: modules/csvparser/ mod-csvparser
 
30
 
 
31
include modules/csvparser/tests/Makefile.am