From c7a2f455751a4bac7c5d2f3afd6979de9b1b6ea8 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 11 Sep 2015 15:14:39 +0100 Subject: [PATCH] Add workaround for libevent 1.4. --- src/libutil/util.c | 8 ++++++++ src/libutil/util.h | 5 +++++ 2 files changed, 13 insertions(+) diff --git a/src/libutil/util.c b/src/libutil/util.c index 943c37b08..b537643ca 100644 --- a/src/libutil/util.c +++ b/src/libutil/util.c @@ -1963,3 +1963,11 @@ rspamd_time_jitter (gdouble in, gdouble jitter) return in + jitter * res; } + +#if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000000UL +struct event_base * +event_get_base (struct event *ev) +{ + return ev->ev_base; +} +#endif 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 -- 2.39.5