mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-20 10:12:15 +01:00
r9061@totoro: nickm | 2006-10-17 11:18:28 -0400
Oops. Libevent 1.2 exists. Add it to our enum, even though we dont care yet. svn:r8740
This commit is contained in:
parent
b713b370bf
commit
faf7445255
@ -400,8 +400,11 @@ static int config_parse_interval(const char *s, int *ok);
|
|||||||
static void print_svn_version(void);
|
static void print_svn_version(void);
|
||||||
static void init_libevent(void);
|
static void init_libevent(void);
|
||||||
static int opt_streq(const char *s1, const char *s2);
|
static int opt_streq(const char *s1, const char *s2);
|
||||||
|
/** Versions of libevent. */
|
||||||
typedef enum {
|
typedef enum {
|
||||||
LE_OLD=0, LE_10C, LE_10D, LE_10E, LE_11, LE_11A, LE_11B, LE_OTHER
|
/* Note: we compare these, so it's important that "old" precede everything,
|
||||||
|
* and that "other" come last. */
|
||||||
|
LE_OLD=0, LE_10C, LE_10D, LE_10E, LE_11, LE_11A, LE_11B, LE_12, LE_OTHER
|
||||||
} le_version_t;
|
} le_version_t;
|
||||||
static le_version_t decode_libevent_version(void);
|
static le_version_t decode_libevent_version(void);
|
||||||
#if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
|
#if defined(HAVE_EVENT_GET_VERSION) && defined(HAVE_EVENT_GET_METHOD)
|
||||||
|
Loading…
Reference in New Issue
Block a user