X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fsrc%2Ftransports%2Fqueuefile.c;h=e657e350fbc62d0fdce3c0f0ecc8e3905e0c4977;hb=6b69b71028f15c7ba3157bac955103b764326f60;hp=21ed3527f3f575fc539da63783e45faf75b3e8f9;hpb=1e1ddfac79fbcd052f199500a6493c7f79cb8462;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/transports/queuefile.c b/src/src/transports/queuefile.c index 21ed3527f..e657e350f 100644 --- a/src/src/transports/queuefile.c +++ b/src/src/transports/queuefile.c @@ -8,9 +8,16 @@ /* See the file NOTICE for conditions of use and distribution. */ + #include "../exim.h" + +#ifdef EXPERIMENTAL_QUEUEFILE /* whole file */ #include "queuefile.h" +#ifndef EXIM_HAVE_OPENAT +# error queuefile transport reqires openat() support +#endif + /* Options specific to the appendfile transport. They must be in alphabetic order (note that "_" comes before the lower case letters). Some of them are stored in the publicly visible instance block - these are flagged with the @@ -276,3 +283,4 @@ return FALSE; } #endif /*!MACRO_PREDEF*/ +#endif /*EXPERIMENTAL_QUEUEFILE*/