X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fexim.h;h=e12049a9c158693ba26ef6127b6237ffd2375bbe;hb=e72cfa5b8529a6fe8e674d70dc83df8bcf5e551c;hp=4ca28130a5e5fa57feb57254dfc8ff7272a54783;hpb=2cee425af0f8c425a410ff12a51f05a175a0c80b;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/exim.h b/src/src/exim.h index 4ca28130a..e12049a9c 100644 --- a/src/src/exim.h +++ b/src/src/exim.h @@ -492,6 +492,7 @@ config.h, mytypes.h, and store.h, so we don't need to mention them explicitly. #include "macros.h" #include "dbstuff.h" #include "structs.h" +#include "blob.h" #include "globals.h" #include "hash.h" #include "functions.h" @@ -600,5 +601,11 @@ default to EDQUOT if it exists, otherwise ENOSPC. */ ssize_t readn(int fd, void *buffer, size_t len); +/* Some platforms (FreeBSD, OpenBSD, Solaris) do not seem to define this */ + +#ifndef POLLRDHUP +# define POLLRDHUP (POLLIN | POLLHUP) +#endif + #endif /* End of exim.h */