summaryrefslogtreecommitdiff
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:20:41 +0100
commit4970c58b394eb0778542c97e3f86b565f9e3daa7 (patch)
tree8a93c46a850421b69ea2adae235afb200ff1fdd1
parentd2671b04d025dee3b8311d2d83e0a0342c670f52 (diff)
downloadexim4-4970c58b394eb0778542c97e3f86b565f9e3daa7.tar.gz
Build: ifdef guard for EXPERIMENTAL_QUEUEFILE
(cherry picked from commit 1f5d0a9551205febf6729c7ee36c27626a76b4a4)
-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 21ed3527f..97218548b 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"
/* Options specific to the appendfile transport. They must be in alphabetic
@@ -276,3 +279,4 @@ return FALSE;
}
#endif /*!MACRO_PREDEF*/
+#endif /*EXPERIMENTAL_QUEUEFILE*/