aboutsummaryrefslogtreecommitdiffstats
path: root/src/libutil/util.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-09-11 15:14:39 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-09-11 15:14:39 +0100
commitc7a2f455751a4bac7c5d2f3afd6979de9b1b6ea8 (patch)
treed8dbe0ecc93745d07eccc2d078843cc178e8c79a /src/libutil/util.h
parentcf0d8df0ed226879c14cede1f5e732e3b7dfec4c (diff)
downloadrspamd-c7a2f455751a4bac7c5d2f3afd6979de9b1b6ea8.tar.gz
rspamd-c7a2f455751a4bac7c5d2f3afd6979de9b1b6ea8.zip
Add workaround for libevent 1.4.
Diffstat (limited to 'src/libutil/util.h')
-rw-r--r--src/libutil/util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libutil/util.h b/src/libutil/util.h
index 0903c23e5..536caed2c 100644
--- a/src/libutil/util.h
+++ b/src/libutil/util.h
@@ -396,4 +396,9 @@ guint64 rspamd_hash_seed (void);
*/
gdouble rspamd_time_jitter (gdouble in, gdouble jitter);
+/* Special case for ancient libevent */
+#if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000000UL
+struct event_base * event_get_base (struct event *ev);
+#endif
+
#endif