X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/ea3bc19b9e6b236ca38c6bf506229fd41e89d6ad..36a3b0416e0bed61d78e44f119cdafb1fde941ba:/src/src/exim.h diff --git a/src/src/exim.h b/src/src/exim.h index 397a13687..42f7980c2 100644 --- a/src/src/exim.h +++ b/src/src/exim.h @@ -1,10 +1,10 @@ -/* $Cambridge: exim/src/src/exim.h,v 1.3 2004/11/24 15:43:36 ph10 Exp $ */ +/* $Cambridge: exim/src/src/exim.h,v 1.9 2005/03/15 14:09:12 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * *************************************************/ -/* Copyright (c) University of Cambridge 1995 - 2004 */ +/* Copyright (c) University of Cambridge 1995 - 2005 */ /* See the file NOTICE for conditions of use and distribution. */ @@ -107,11 +107,12 @@ in sys/file.h. */ #include #endif -/* A few OS don't have socklen_t; their os.h files define SOCKLEN_T to -be size_t or whatever. */ +/* A few OS don't have socklen_t; their os.h files define EXIM_SOCKLEN_T to +be size_t or whatever. We used to use SOCKLEN_T, but then it was discovered +that this is used by the AIX include files. */ -#ifndef SOCKLEN_T -#define SOCKLEN_T socklen_t +#ifndef EXIM_SOCKLEN_T +#define EXIM_SOCKLEN_T socklen_t #endif /* Ensure that the sysexits we reference are defined */ @@ -382,9 +383,10 @@ extern int ferror(FILE *); /* Exim includes are in several files. Note that local_scan.h #includes mytypes.h and store.h, so we don't need to mention them explicitly. */ +#include "config.h" + #include "local_scan.h" #include "macros.h" -#include "config.h" #include "dbstuff.h" #include "structs.h" #include "globals.h" @@ -392,6 +394,19 @@ mytypes.h and store.h, so we don't need to mention them explicitly. */ #include "dbfunctions.h" #include "osfunctions.h" +#ifdef EXPERIMENTAL_BRIGHTMAIL +#include "bmi_spam.h" +#endif +#ifdef EXPERIMENTAL_SPF +#include "spf.h" +#endif +#ifdef EXPERIMENTAL_SRS +#include "srs.h" +#endif +#ifdef EXPERIMENTAL_DOMAINKEYS +#include "dk.h" +#endif + /* The following stuff must follow the inclusion of config.h because it requires various things that are set therein. */