blob: 73a507e58d88b9b35296a1790f813906c18d0ce5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--- src/dbmail.h.in.orig
+++ src/dbmail.h.in
@@ -83,8 +83,14 @@
#include <mhash.h>
#include <sys/queue.h>
#include <event2/event.h>
+#include <event2/event_compat.h>
#include <event2/thread.h>
-#include <evhttp.h>
+#include <event2/http.h>
+#include <event2/http_struct.h>
+#include <event2/http_compat.h>
+#include <event2/buffer.h>
+#include <event2/buffer_compat.h>
+#include <event2/keyvalq_struct.h>
#include <math.h>
#include <openssl/ssl.h>
@@ -154,6 +160,11 @@
#include <endian.h>
#endif
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+
#define GETCONFIGVALUE(key, sect, var) \
config_get_value(key, sect, var); \
if (strlen(var) > 0) \
|