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

« back to all changes in this revision

Viewing changes to modules/csvparser/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS), Gergely Nagy
  • Date: 2011-10-11 14:30:48 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20111011143048-r1iljux9xbvj3lwh
Tags: 3.3.1.dfsg-1
* New upstream release with important fixes from upstream git tree with
  non-free manpages removed.
* Drop syslog-ng.conf(5) (closes: #496521).
* syslog-ng(8) is generated, and does not mention -Q anymore
  (closes: #616069).
* Supports CAP_SYSLOG on recent kernels (closes: #630172).
* Does not use g_timeout_add_seconds anymore (closes: #609154).

[ Gergely Nagy <algernon@madhouse-project.org> ]
* Update debian/copyright to DEP-5 format.
* Simplified the logrotate file by merging identical entries.
* Include local configuration files from /etc/syslog-ng/conf.d/ (Closes:
  #609050).
* Update syslog-ng.conf to be fully 3.3 compliant.
* Compress both source and binaries (except the syslog-ng meta
  package) with xz, instead of gzip.
* Use dpkg triggers to restart syslog-ng when appropriate.
* Include DFSG-free manual pages for all binaries.
* Build with Hardening enabled.
* Mention syslog(3) in /etc/default/syslog-ng, instead of
  <linux/kernel.h> (Closes: #608605)
* Support 'status' in the init script.
  Patch from Peter Eisentraut <petere@debian.org> (Closes: #644458)
* Build-Depend on libevtlog-dev (>= 0.2.12-5~) for correct shlibs.
* Use [linux-any] in Build-Depends instead of hardcoded links.
  (Closes: #634715)
* Use $SYSLOGNG_OPTS in the init script when reloading syslog-ng.
  (Closes: #589081)

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
INSTALL_PROGRAM = @INSTALL_PROGRAM@
142
142
INSTALL_SCRIPT = @INSTALL_SCRIPT@
143
143
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
144
IVYKIS_CFLAGS = @IVYKIS_CFLAGS@
 
145
IVYKIS_LIBS = @IVYKIS_LIBS@
 
146
IVYKIS_SUBDIRS = @IVYKIS_SUBDIRS@
 
147
JSON_CFLAGS = @JSON_CFLAGS@
 
148
JSON_C_CFLAGS = @JSON_C_CFLAGS@
 
149
JSON_C_LIBS = @JSON_C_LIBS@
 
150
JSON_GLIB_CFLAGS = @JSON_GLIB_CFLAGS@
 
151
JSON_GLIB_LIBS = @JSON_GLIB_LIBS@
 
152
JSON_LIBS = @JSON_LIBS@
144
153
LD = @LD@
145
154
LDFLAGS = @LDFLAGS@
146
155
LEX = @LEX@
148
157
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
149
158
LIBDBI_CFLAGS = @LIBDBI_CFLAGS@
150
159
LIBDBI_LIBS = @LIBDBI_LIBS@
 
160
LIBMONGO_CFLAGS = @LIBMONGO_CFLAGS@
 
161
LIBMONGO_LIBS = @LIBMONGO_LIBS@
 
162
LIBMONGO_SUBDIRS = @LIBMONGO_SUBDIRS@
151
163
LIBNET_CFLAGS = @LIBNET_CFLAGS@
152
164
LIBNET_LIBS = @LIBNET_LIBS@
153
165
LIBOBJS = @LIBOBJS@
223
235
docdir = @docdir@
224
236
dvidir = @dvidir@
225
237
exec_prefix = @exec_prefix@
 
238
expanded_moduledir = @expanded_moduledir@
226
239
expanded_sysconfdir = @expanded_sysconfdir@
227
240
host = @host@
228
241
host_alias = @host_alias@
235
248
install_sh = @install_sh@
236
249
libdir = @libdir@
237
250
libexecdir = @libexecdir@
 
251
libsystemd_daemon_CFLAGS = @libsystemd_daemon_CFLAGS@
 
252
libsystemd_daemon_LIBS = @libsystemd_daemon_LIBS@
238
253
localedir = @localedir@
239
254
localstatedir = @localstatedir@
240
255
lt_ECHO = @lt_ECHO@
250
265
sbindir = @sbindir@
251
266
sharedstatedir = @sharedstatedir@
252
267
srcdir = @srcdir@
 
268
subdirs = @subdirs@
253
269
sysconfdir = @sysconfdir@
 
270
systemdsystemunitdir = @systemdsystemunitdir@
254
271
target_alias = @target_alias@
255
272
timezonedir = @timezonedir@
256
273
top_build_prefix = @top_build_prefix@
618
635
        $(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $*.c $(LEX_OUTPUT_ROOT).h $*.h -- $(LEXCOMPILE)
619
636
 
620
637
.y.c:
621
 
        $(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE) 2>&1 | grep -E -v "warning: (nonterminal|rule) useless in grammar:"
 
638
        $(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE) 2>&1 | $(EGREP) -v "warning: ([0-9]+ )?(nonterminal|rule)s? useless in grammar"
622
639
 
623
640
.y.h:
624
 
        $(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE) 2>&1 | grep -E -v "warning: (nonterminal|rule) useless in grammar:"
 
641
        $(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h $*.h y.output $*.output -- $(YACCCOMPILE) 2>&1 | $(EGREP) -v "warning: ([0-9]+ )?(nonterminal|rule)s? useless in grammar"
625
642
 
626
643
# Tell versions [3.59,3.63) of GNU make to not export all variables.
627
644
# Otherwise a system limit (for SysV at least) may be exceeded.