Mercurial > dnsbl
annotate src/includes.h @ 223:da9e7f1c8160
fix unsigned signed compare, back to mixed -lresolv and libresolv.a with auto requires
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sun, 28 Dec 2008 09:15:25 -0800 |
parents | b2a7ca398712 |
children | 3fee608becbc |
rev | line source |
---|---|
143 | 1 /* |
2 | |
152 | 3 Copyright (c) 2007 Carl Byington - 510 Software Group, released under |
4 the GPL version 3 or any later version at your choice available at | |
5 http://www.gnu.org/licenses/gpl-3.0.txt | |
143 | 6 |
7 */ | |
8 | |
94 | 9 #define VERIFY_DEBUG 1 |
10 #define RESOLVER_DEBUG 1 | |
11 #undef VERIFY_DEBUG | |
223
da9e7f1c8160
fix unsigned signed compare, back to mixed -lresolv and libresolv.a with auto requires
Carl Byington <carl@five-ten-sg.com>
parents:
222
diff
changeset
|
12 #undef RESOLVER_DEBUG |
94 | 13 |
177 | 14 #ifdef HAVE_CONFIG_H |
15 #include "config.h" | |
16 #endif | |
17 | |
214
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
18 #include <map> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
19 #include <list> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
20 #include <set> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
21 #include <fstream> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
22 #include <regex.h> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
23 #include <string.h> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
24 #include <stdlib.h> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
25 #include <string> |
82886d4dd71f
Fixes to compile on Fedora 9 and for const correctness.
Carl Byington <carl@five-ten-sg.com>
parents:
177
diff
changeset
|
26 |
94 | 27 #include "tokenizer.h" |
28 #include "context.h" | |
29 #include "dnsbl.h" | |
30 #include "scanner.h" | |
167
9b129ed78d7d
actually use spamassassin result, allow build without spam assassin, only call it if some recipient needs it.
carl
parents:
152
diff
changeset
|
31 #include "spamass.h" |
177 | 32 #include "dccifd.h" |