summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2020-08-24 20:14:34 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2020-08-24 20:16:27 +0100
commit1f5d0a9551205febf6729c7ee36c27626a76b4a4 (patch)
tree1e047831abca830df9eb8804c540c5b4030f374a /src
parent79b19a30d9fc64a7b7f70928cdefe4f51064280b (diff)
Build: ifdef guard for EXPERIMENTAL_QUEUEFILE
Diffstat (limited to 'src')
-rw-r--r--src/src/transports/queuefile.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/src/transports/queuefile.c b/src/src/transports/queuefile.c
index 259bfd941..e657e350f 100644
--- a/src/src/transports/queuefile.c
+++ b/src/src/transports/queuefile.c
@@ -8,7 +8,10 @@
/* 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
@@ -280,3 +283,4 @@ return FALSE;
}
#endif /*!MACRO_PREDEF*/
+#endif /*EXPERIMENTAL_QUEUEFILE*/