diff options
author | Tom Kistner <tom@duncanthrax.net> | 2005-06-27 18:01:02 +0000 |
---|---|---|
committer | Tom Kistner <tom@duncanthrax.net> | 2005-06-27 18:01:02 +0000 |
commit | 56dda33cf61fd2979f6422699afa3edd50c3abee (patch) | |
tree | e6161a866f6b68c840cbcb8b25a34fc9ed751d8d /src | |
parent | 6d06cf480f74aec15035066c615e68deeacca8b9 (diff) |
Fix HAVE_NS_TYPE for the SPF lookup type too
Diffstat (limited to 'src')
-rw-r--r-- | src/src/lookups/spf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/src/lookups/spf.c b/src/src/lookups/spf.c index ba5cf6b69..7f7b6f141 100644 --- a/src/src/lookups/spf.c +++ b/src/src/lookups/spf.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/lookups/spf.c,v 1.1 2005/05/25 20:07:55 tom Exp $ */ +/* $Cambridge: exim/src/src/lookups/spf.c,v 1.2 2005/06/27 18:01:02 tom Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -25,6 +25,9 @@ static void dummy(int x) { dummy(x-1); } #include "lf_functions.h" #include "spf.h" +#ifndef HAVE_NS_TYPE +#define HAVE_NS_TYPE +#endif #include <spf2/spf.h> #include <spf2/spf_dns_resolv.h> #include <spf2/spf_dns_cache.h> |