# HG changeset patch # User Carl Byington # Date 1507049994 25200 # Node ID 69d33c034a8eb3bdbd871a8712db708d59761c63 # Parent 502f66414ab8f1cd0e2725d14fd02e20977d5942 include arpa/nameser.h earlier diff -r 502f66414ab8 -r 69d33c034a8e ChangeLog --- a/ChangeLog Mon Oct 02 15:15:06 2017 -0700 +++ b/ChangeLog Tue Oct 03 09:59:54 2017 -0700 @@ -1,3 +1,6 @@ +6.62 2017-10-03 + include arpa/nameser.h earlier. + 6.61 2017-10-02 allow 4000 byte spf txt records. diff -r 502f66414ab8 -r 69d33c034a8e NEWS --- a/NEWS Mon Oct 02 15:15:06 2017 -0700 +++ b/NEWS Tue Oct 03 09:59:54 2017 -0700 @@ -1,3 +1,4 @@ +6.62 2017-10-03 include arpa/nameser.h earlier 6.61 2017-10-02 allow 4000 byte spf txt records 6.60 2017-08-18 hosts-ignore.conf can be used to ignore nameserver names 6.59 2017-07-26 use both envelope from and header from for spf checks when envelope from is a subdomain of the header from domain. diff -r 502f66414ab8 -r 69d33c034a8e configure.in --- a/configure.in Mon Oct 02 15:15:06 2017 -0700 +++ b/configure.in Tue Oct 03 09:59:54 2017 -0700 @@ -1,6 +1,6 @@ AC_PREREQ(2.59) -AC_INIT(dnsbl,6.61,carl@five-ten-sg.com) +AC_INIT(dnsbl,6.62,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4]) diff -r 502f66414ab8 -r 69d33c034a8e dnsbl.spec.in --- a/dnsbl.spec.in Mon Oct 02 15:15:06 2017 -0700 +++ b/dnsbl.spec.in Tue Oct 03 09:59:54 2017 -0700 @@ -155,6 +155,9 @@ %changelog +* Tue Oct 03 2017 Carl Byington - 6.62-1 +- include arpa/nameser.h earlier + * Mon Oct 02 2017 Carl Byington - 6.61-1 - allow 4000 byte spf txt records diff -r 502f66414ab8 -r 69d33c034a8e src/context.cpp --- a/src/context.cpp Mon Oct 02 15:15:06 2017 -0700 +++ b/src/context.cpp Tue Oct 03 09:59:54 2017 -0700 @@ -9,7 +9,6 @@ #include "includes.h" #include -#include #include #include #include diff -r 502f66414ab8 -r 69d33c034a8e src/dnsbl.cpp --- a/src/dnsbl.cpp Mon Oct 02 15:15:06 2017 -0700 +++ b/src/dnsbl.cpp Tue Oct 03 09:59:54 2017 -0700 @@ -48,7 +48,6 @@ // for the dns resolver #include -#include #include // misc stuff needed here diff -r 502f66414ab8 -r 69d33c034a8e src/includes.h --- a/src/includes.h Mon Oct 02 15:15:06 2017 -0700 +++ b/src/includes.h Tue Oct 03 09:59:54 2017 -0700 @@ -25,6 +25,7 @@ #include #include #include +#include #include "tokenizer.h" #include "context.h"