Gitweb:
https://git.exim.org/exim.git/commitdiff/1f5d0a9551205febf6729c7ee36c27626a76b4a4
Commit: 1f5d0a9551205febf6729c7ee36c27626a76b4a4
Parent: 79b19a30d9fc64a7b7f70928cdefe4f51064280b
Author: Jeremy Harris <jgh146exb@???>
AuthorDate: Mon Aug 24 20:14:34 2020 +0100
Committer: Jeremy Harris <jgh146exb@???>
CommitDate: Mon Aug 24 20:16:27 2020 +0100
Build: ifdef guard for EXPERIMENTAL_QUEUEFILE
---
src/src/transports/queuefile.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/src/transports/queuefile.c b/src/src/transports/queuefile.c
index 259bfd9..e657e35 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*/