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

« back to all changes in this revision

Viewing changes to modules/pacctformat/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:
140
140
INSTALL_PROGRAM = @INSTALL_PROGRAM@
141
141
INSTALL_SCRIPT = @INSTALL_SCRIPT@
142
142
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
143
IVYKIS_CFLAGS = @IVYKIS_CFLAGS@
 
144
IVYKIS_LIBS = @IVYKIS_LIBS@
 
145
IVYKIS_SUBDIRS = @IVYKIS_SUBDIRS@
 
146
JSON_CFLAGS = @JSON_CFLAGS@
 
147
JSON_C_CFLAGS = @JSON_C_CFLAGS@
 
148
JSON_C_LIBS = @JSON_C_LIBS@
 
149
JSON_GLIB_CFLAGS = @JSON_GLIB_CFLAGS@
 
150
JSON_GLIB_LIBS = @JSON_GLIB_LIBS@
 
151
JSON_LIBS = @JSON_LIBS@
143
152
LD = @LD@
144
153
LDFLAGS = @LDFLAGS@
145
154
LEX = @LEX@
147
156
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
148
157
LIBDBI_CFLAGS = @LIBDBI_CFLAGS@
149
158
LIBDBI_LIBS = @LIBDBI_LIBS@
 
159
LIBMONGO_CFLAGS = @LIBMONGO_CFLAGS@
 
160
LIBMONGO_LIBS = @LIBMONGO_LIBS@
 
161
LIBMONGO_SUBDIRS = @LIBMONGO_SUBDIRS@
150
162
LIBNET_CFLAGS = @LIBNET_CFLAGS@
151
163
LIBNET_LIBS = @LIBNET_LIBS@
152
164
LIBOBJS = @LIBOBJS@
222
234
docdir = @docdir@
223
235
dvidir = @dvidir@
224
236
exec_prefix = @exec_prefix@
 
237
expanded_moduledir = @expanded_moduledir@
225
238
expanded_sysconfdir = @expanded_sysconfdir@
226
239
host = @host@
227
240
host_alias = @host_alias@
234
247
install_sh = @install_sh@
235
248
libdir = @libdir@
236
249
libexecdir = @libexecdir@
 
250
libsystemd_daemon_CFLAGS = @libsystemd_daemon_CFLAGS@
 
251
libsystemd_daemon_LIBS = @libsystemd_daemon_LIBS@
237
252
localedir = @localedir@
238
253
localstatedir = @localstatedir@
239
254
lt_ECHO = @lt_ECHO@
249
264
sbindir = @sbindir@
250
265
sharedstatedir = @sharedstatedir@
251
266
srcdir = @srcdir@
 
267
subdirs = @subdirs@
252
268
sysconfdir = @sysconfdir@
 
269
systemdsystemunitdir = @systemdsystemunitdir@
253
270
target_alias = @target_alias@
254
271
timezonedir = @timezonedir@
255
272
top_build_prefix = @top_build_prefix@
593
610
        $(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $*.c $(LEX_OUTPUT_ROOT).h $*.h -- $(LEXCOMPILE)
594
611
 
595
612
.y.c:
596
 
        $(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:"
 
613
        $(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"
597
614
 
598
615
.y.h:
599
 
        $(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:"
 
616
        $(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"
600
617
 
601
618
# Tell versions [3.59,3.63) of GNU make to not export all variables.
602
619
# Otherwise a system limit (for SysV at least) may be exceeded.