diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2019-10-12 14:22:25 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2019-10-12 14:22:25 +0100 |
commit | 4316e9b3b73ac3a042799bf20625dea0d70dde00 (patch) | |
tree | 654a3395fad31795f90edd1f98e80d27c721c217 /src | |
parent | efa73277b6cab96e4bed1a5f5d42fd3fcc5d279b (diff) |
Dummies for Solaris build
Diffstat (limited to 'src')
-rw-r--r-- | src/src/exim_dbmbuild.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/src/exim_dbmbuild.c b/src/src/exim_dbmbuild.c index 6a14ab9a0..85bc3fd88 100644 --- a/src/src/exim_dbmbuild.c +++ b/src/src/exim_dbmbuild.c @@ -34,6 +34,12 @@ uschar * spool_directory = NULL; /* dummy for dbstuff.h */ /******************************************************************************/ /* dummies needed by Solaris build */ +void +millisleep(int msec) +{} +uschar * +readconf_printtime(int t) +{ return NULL; } void * store_get_3(int size, BOOL tainted, const char *filename, int linenumber) { return NULL; } @@ -50,8 +56,11 @@ string_vformat_trc(gstring * g, const uschar * func, unsigned line, uschar * string_sprintf_trc(const char * a, const uschar * b, unsigned c, ...) { return NULL; } -BOOL split_spool_directory; -uschar * queue_name; + +struct global_flags f; +unsigned int log_selector[1]; +uschar * queue_name; +BOOL split_spool_directory; /******************************************************************************/ |