~ubuntu-branches/ubuntu/oneiric/syslog-ng/oneiric

« back to all changes in this revision

Viewing changes to modules/afprog/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2011-05-16 22:02:46 UTC
  • mfrom: (26.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20110516220246-nknmeu831n49bx1z
Tags: 3.2.4-1
* New upstream release, fixing infinite loop via PCRE and global. No CVE
  number yet, Vigil@nce id is 10648.
* Remove all patches, they were applied upstream.

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 := libafprog.la
 
6
libafprog_la_SOURCES = \
 
7
        afprog.c afprog.h \
 
8
        afprog-grammar.y afprog-parser.c afprog-parser.h afprog-plugin.c
 
9
 
 
10
BUILT_SOURCES = afprog-grammar.y afprog-grammar.c afprog-grammar.h
 
11
EXTRA_DIST = $(BUILT_SOURCES) afprog-grammar.ym
 
12
 
 
13
libafprog_la_CPPFLAGS = $(AM_CPPFLAGS)
 
14
libafprog_la_LIBADD = $(MODULE_DEPS_LIBS)
 
15
libafprog_la_LDFLAGS = $(MODULE_LDFLAGS)
 
16
 
 
17
include $(top_srcdir)/build/lex-rules.am