X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fexim.h;h=bb8e4f6e24f8d7b3df4d0fc652c182f40f96357c;hb=2130e492c2cda886d74abbb77df4493f151e0a44;hp=1ddba187bb99fb8fc51a2484f2f0bba54e28d91b;hpb=da47dd4d092ba35e4f8ff055d79693cc1266c816;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/exim.h b/src/src/exim.h index 1ddba187b..bb8e4f6e2 100644 --- a/src/src/exim.h +++ b/src/src/exim.h @@ -87,6 +87,13 @@ making unique names. */ # include #endif +#ifdef EXIM_HAVE_INOTIFY +# include +#endif +#ifdef EXIM_HAVE_KEVENT +# include +#endif + /* C99 integer types, figure out how to undo this if needed for older systems */ #include @@ -599,5 +606,13 @@ default to EDQUOT if it exists, otherwise ENOSPC. */ # define EXIM_GROUPLIST_SIZE NGROUPS_MAX #endif +/* Linux has TCP_CORK, FreeBSD has TCP_NOPUSH; they do pretty much the same */ + +#ifdef TCP_CORK +# define EXIM_TCP_CORK TCP_CORK +#elif defined(TCP_NOPUSH) +# define EXIM_TCP_CORK TCP_NOPUSH +#endif + #endif /* End of exim.h */