Skip to content

Commit 34e0eee

Browse files
Fix Debian bug #966908
1 parent 44b6ff5 commit 34e0eee

File tree

7 files changed

+19
-17
lines changed

7 files changed

+19
-17
lines changed

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Makefile.am: help build sources on mulitiple architectures
22
# $Id: Makefile.am,v 1.20.2.3.2.8 2007/01/01 13:38:40 baueran Exp $
33

4-
# Copyright (c) 2000 - 2016 Andreas Bauer <baueran@gmail.com>
4+
# Copyright (c) 2000 - 2020 Andreas Bauer <baueran@gmail.com>
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Mailfilter NEWS (Summary)
22
-=-=-=-=-=-=-=-=-=-=-=-=-
33

4+
mailfilter 0.8.7 (Sun 09 Aug 2020 09:56:55 AM CEST)
5+
6+
- Fix for build error w/ bison 3.7:
7+
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=966908
8+
49
mailfilter 0.8.6 (Tue Oct 25 20:18:55 CEST 2016)
510

611
- Rebuilt the tarball, using more up to date versions of flex and

configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# configure.in: Autoconfigure input file for mailfilter
22
# $Id: configure.ac,v 1.1.2.4.2.12 2007/01/01 15:32:29 baueran Exp $
33
#
4-
# Copyright (c) 2000 - 2009 Andreas Bauer <baueran@gmail.com>
4+
# Copyright (c) 2000 - 2020 Andreas Bauer <baueran@gmail.com>
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -26,13 +26,13 @@
2626
# Process this file with autoconf to produce a configure script.
2727

2828
AC_PREREQ(2.54)
29-
AC_INIT(mailfilter, 0.8.6, [baueran@gmail.com])
29+
AC_INIT(mailfilter, 0.8.7, [baueran@gmail.com])
3030
AC_REVISION($Revision: 1.1.2.4.2.12 $)
3131
AC_SUBST(PACKAGE_COPYRIGHT)
3232
AC_DEFINE(PACKAGE_COPYRIGHT,
33-
"Copyright (c) 2000 - 2016 Andreas Bauer <baueran@gmail.com>",
33+
"Copyright (c) 2000 - 2020 Andreas Bauer <baueran@gmail.com>",
3434
[Copyright information.])
35-
AC_COPYRIGHT(Copyright (c) 2000 - 2016 Andreas Bauer <baueran@gmail.com>)
35+
AC_COPYRIGHT(Copyright (c) 2000 - 2020 Andreas Bauer <baueran@gmail.com>)
3636

3737
AC_CONFIG_SRCDIR([src/mailfilter.cc])
3838
AC_CONFIG_HEADERS(config.h)

man/mailfilter.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Display version information
7272
.BR procmail (1),
7373
.BR regex (7)
7474
.SH COPYRIGHT
75-
Copyright \(co 2000-2014 Andreas Bauer <baueran@gmail.com>
75+
Copyright \(co 2000-2020 Andreas Bauer <baueran@gmail.com>
7676
.PP
7777
This is free software; see the source for copying conditions. There is NO
7878
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

man/mailfilterex.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ them.
235235
.BR procmailex (5),
236236
.BR regex (7)
237237
.SH COPYRIGHT
238-
Copyright \(co 2000-2014 Andreas Bauer <baueran@gmail.com>
238+
Copyright \(co 2000-2020 Andreas Bauer <baueran@gmail.com>
239239
.PP
240240
This is free software; see the source for copying conditions. There is NO
241241
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

man/mailfilterrc.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ configuration files.
324324
.BR mailfilterex (5),
325325
.BR regex (7)
326326
.SH COPYRIGHT
327-
Copyright \(co 2000-2014 Andreas Bauer <baueran@gmail.com>
327+
Copyright \(co 2000-2020 Andreas Bauer <baueran@gmail.com>
328328
.PP
329329
This is free software; see the source for copying conditions. There is NO
330330
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

src/Makefile.am

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Makefile.am: help build program sources
22
# $Id: Makefile.am,v 1.9.2.6.2.22 2006/12/31 21:44:18 baueran Exp $
33

4-
# Copyright (c) 2000 - 2009 Andreas Bauer <baueran@gmail.com>
4+
# Copyright (c) 2000 - 2020 Andreas Bauer <baueran@gmail.com>
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -26,26 +26,23 @@ AM_LFLAGS = -+ -i
2626

2727
bin_PROGRAMS = mailfilter
2828

29-
# Some dependencies to invoke flex + bison before compilation of
30-
# lex output starts:
29+
# Some dependencies to invoke flex + bison before compilation of lex output starts:
3130
rcfile.cc: rcfile.ll rcparser.hh
3231
$(LEX) $(AM_LFLAGS) -Prc -o$@ $<
3332

3433
rcparser.hh: rcparser.cc
3534
rcparser.cc: rcfile.yy
36-
$(YACC) $(YFLAGS) -b rc -p rc $<; \
37-
mv rc.tab.c rcparser.cc; \
38-
mv rc.tab.h rcparser.hh
35+
$(YACC) $(YFLAGS) -b rc -p rc --defines=rcparser.hh $<; \
36+
mv rc.tab.c rcparser.cc
3937

4038
# Almost the same as above, but this time for the RFC 822 parser:
4139
rfc822.cc: rfc822.ll rfc822parser.hh
4240
$(LEX) $(AM_LFLAGS) -Prfc -o$@ $<
4341

4442
rfc822parser.hh: rfc822parser.cc
4543
rfc822parser.cc: rfc822.yy
46-
$(YACC) $(YFLAGS) -b rfc -p rfc $<; \
47-
mv rfc.tab.c rfc822parser.cc; \
48-
mv rfc.tab.h rfc822parser.hh
44+
$(YACC) $(YFLAGS) -b rfc -p rfc --defines=rfc822parser.hh $<; \
45+
mv rfc.tab.c rfc822parser.cc
4946

5047
CLEANFILES = *.output Makefile.in rcfile.cc rcfile.ll.bak rcparser.cc rcparser.hh rfc822.cc rfc822parser.cc rfc822parser.hh
5148

0 commit comments

Comments
 (0)