1a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* event2/event-config.h
2a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley *
3a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley * This file was generated by autoconf when libevent was built, and post-
4a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley * processed by Libevent so that its macros would have a uniform prefix.
5a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley *
6a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley * Then we post processed it some more to remove harded assumptions about
7a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley * the size of integers on the particular system in which we ./configure'd for.
8a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley *
9a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley * Do not rely on macros in this file existing in later versions.
10a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley */
11a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
12a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#ifndef _EVENT2_EVENT_CONFIG_H_
13a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT2_EVENT_CONFIG_H_
14a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
15a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#include <stdint.h>
16a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* The size of `size_t', as computed by sizeof. */
17a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#if SIZE_MAX == UINT64_MAX
18a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#  define _EVENT_SIZEOF_SIZE_T 8
19a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#elif SIZE_MAX == UINT32_MAX
20a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#  define _EVENT_SIZEOF_SIZE_T 4
21a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#else
22a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#  error "No way to infer sizeof size_t"
23a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#endif
24a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
25a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* config.h.  Generated from config.h.in by configure.  */
26a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* config.h.in.  Generated from configure.ac by autoheader.  */
27a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
28a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if libevent should build without support for a debug mode */
29a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_DISABLE_DEBUG_MODE */
30a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
31a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if libevent should not allow replacing the mm functions */
32a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_DISABLE_MM_REPLACEMENT */
33a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
34a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if libevent should not be compiled with thread support */
35a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_DISABLE_THREAD_SUPPORT */
36a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
37a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `arc4random' function. */
38a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_ARC4RANDOM 1
39a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
40a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `arc4random_buf' function. */
41a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_ARC4RANDOM_BUF 1
42a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
43a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <arpa/inet.h> header file. */
44a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_ARPA_INET_H 1
45a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
46a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `clock_gettime' function. */
47a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_CLOCK_GETTIME 1
48a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
49a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the declaration of `CTL_KERN', and to 0 if you
50a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley   don't. */
51a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_DECL_CTL_KERN */
52a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
53a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the declaration of `KERN_ARND', and to 0 if you
54a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley   don't. */
55a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_DECL_KERN_ARND */
56a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
57a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the declaration of `KERN_RANDOM', and to 0 if you
58a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley   don't. */
59a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_DECL_KERN_RANDOM */
60a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
61a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the declaration of `RANDOM_UUID', and to 0 if you
62a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley   don't. */
63a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_DECL_RANDOM_UUID */
64a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
65a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if /dev/poll is available */
66a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_DEVPOLL */
67a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
68a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <dlfcn.h> header file. */
69a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_DLFCN_H 1
70a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
71a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if your system supports the epoll system calls */
72a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_EPOLL 1
73a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
74a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `epoll_ctl' function. */
75a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_EPOLL_CTL 1
76a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
77a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `eventfd' function. */
78a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_EVENTFD 1
79a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
80a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if your system supports event ports */
81a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_EVENT_PORTS */
82a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
83a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `fcntl' function. */
84a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_FCNTL 1
85a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
86a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <fcntl.h> header file. */
87a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_FCNTL_H 1
88a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
89a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `fd_mask'. */
90a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_FD_MASK */
91a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
92a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Do we have getaddrinfo()? */
93a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETADDRINFO 1
94a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
95a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `getegid' function. */
96a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETEGID 1
97a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
98a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `geteuid' function. */
99a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETEUID 1
100a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
101a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define this if you have any gethostbyname_r() */
102a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETHOSTBYNAME_R 1
103a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
104a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define this if gethostbyname_r takes 3 arguments */
105a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_GETHOSTBYNAME_R_3_ARG */
106a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
107a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define this if gethostbyname_r takes 5 arguments */
108a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_GETHOSTBYNAME_R_5_ARG */
109a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
110a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define this if gethostbyname_r takes 6 arguments */
111a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETHOSTBYNAME_R_6_ARG 1
112a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
113a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `getnameinfo' function. */
114a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETNAMEINFO 1
115a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
116a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `getprotobynumber' function. */
117a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETPROTOBYNUMBER 1
118a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
119a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `getservbyname' function. */
120a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_GETSERVBYNAME */
121a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
122a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `gettimeofday' function. */
123a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_GETTIMEOFDAY 1
124a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
125a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `inet_aton' function. */
126a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_INET_ATON 1
127a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
128a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `inet_ntop' function. */
129a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_INET_NTOP 1
130a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
131a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `inet_pton' function. */
132a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_INET_PTON 1
133a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
134a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <inttypes.h> header file. */
135a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_INTTYPES_H 1
136a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
137a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `issetugid' function. */
138a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_ISSETUGID */
139a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
140a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `kqueue' function. */
141a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_KQUEUE */
142a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
143a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if the system has zlib */
144a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_LIBZ 1
145a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
146a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <memory.h> header file. */
147a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_MEMORY_H 1
148a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
149a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `mmap' function. */
150a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_MMAP 1
151a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
152a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <netdb.h> header file. */
153a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_NETDB_H 1
154a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
155a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <netinet/in6.h> header file. */
156a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_NETINET_IN6_H 1
157a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
158a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <netinet/in.h> header file. */
159a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_NETINET_IN_H 1
160a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
161a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if the system has openssl */
162a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_OPENSSL 1
163a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
164a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <openssl/bio.h> header file. */
165a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_OPENSSL_BIO_H */
166a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
167a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `pipe' function. */
168a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_PIPE 1
169a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
170a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `poll' function. */
171a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_POLL 1
172a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
173a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <poll.h> header file. */
174a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_POLL_H 1
175a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
176a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `port_create' function. */
177a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_PORT_CREATE */
178a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
179a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <port.h> header file. */
180a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_PORT_H */
181a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
182a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if you have POSIX threads libraries and header files. */
183a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_PTHREAD */
184a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
185a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if we have pthreads on this system */
186a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_PTHREADS 1
187a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
188a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `putenv' function. */
189a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_PUTENV 1
190a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
191a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `sa_family_t'. */
192a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SA_FAMILY_T 1
193a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
194a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `select' function. */
195a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SELECT 1
196a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
197a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `sendfile' function. */
198a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SENDFILE 1
199a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
200a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `setenv' function. */
201a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SETENV 1
202a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
203a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if F_SETFD is defined in <fcntl.h> */
204a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SETFD 1
205a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
206a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `sigaction' function. */
207a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SIGACTION 1
208a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
209a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `signal' function. */
210a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SIGNAL 1
211a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
212a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `splice' function. */
213a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SPLICE 1
214a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
215a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <stdarg.h> header file. */
216a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STDARG_H 1
217a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
218a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <stddef.h> header file. */
219a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STDDEF_H 1
220a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
221a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <stdint.h> header file. */
222a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STDINT_H 1
223a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
224a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <stdlib.h> header file. */
225a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STDLIB_H 1
226a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
227a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <strings.h> header file. */
228a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRINGS_H 1
229a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
230a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <string.h> header file. */
231a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRING_H 1
232a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
233a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `strlcpy' function. */
234a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRLCPY 1
235a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
236a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `strsep' function. */
237a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRSEP 1
238a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
239a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `strtok_r' function. */
240a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRTOK_R 1
241a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
242a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `strtoll' function. */
243a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRTOLL 1
244a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
245a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `struct addrinfo'. */
246a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRUCT_ADDRINFO 1
247a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
248a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `struct in6_addr'. */
249a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRUCT_IN6_ADDR 1
250a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
251a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if `s6_addr16' is a member of `struct in6_addr'. */
252a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRUCT_IN6_ADDR_S6_ADDR16 1
253a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
254a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if `s6_addr32' is a member of `struct in6_addr'. */
255a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRUCT_IN6_ADDR_S6_ADDR32 1
256a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
257a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `struct sockaddr_in6'. */
258a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRUCT_SOCKADDR_IN6 1
259a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
260a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if `sin6_len' is a member of `struct sockaddr_in6'. */
261a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN */
262a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
263a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if `sin_len' is a member of `struct sockaddr_in'. */
264a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
265a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
266a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `struct sockaddr_storage'. */
267a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRUCT_SOCKADDR_STORAGE 1
268a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
269a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */
270a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1
271a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
272a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if `__ss_family' is a member of `struct sockaddr_storage'. */
273a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY */
274a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
275a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `sysctl' function. */
276a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_SYSCTL */
277a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
278a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/devpoll.h> header file. */
279a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_SYS_DEVPOLL_H */
280a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
281a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/epoll.h> header file. */
282a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_EPOLL_H 1
283a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
284a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/eventfd.h> header file. */
285a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_EVENTFD_H 1
286a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
287a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/event.h> header file. */
288a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_SYS_EVENT_H */
289a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
290a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/ioctl.h> header file. */
291a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_IOCTL_H 1
292a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
293a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/mman.h> header file. */
294a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_MMAN_H 1
295a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
296a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/param.h> header file. */
297a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_PARAM_H 1
298a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
299a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/queue.h> header file. */
300a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_QUEUE_H 1
301a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
302a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/select.h> header file. */
303a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_SELECT_H 1
304a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
305a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/sendfile.h> header file. */
306a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_SENDFILE_H 1
307a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
308a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/socket.h> header file. */
309a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_SOCKET_H 1
310a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
311a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/stat.h> header file. */
312a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_STAT_H 1
313a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
314a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/sysctl.h> header file. */
315a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_SYS_SYSCTL_H */
316a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
317a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/time.h> header file. */
318a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_TIME_H 1
319a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
320a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/types.h> header file. */
321a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_TYPES_H 1
322a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
323a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/uio.h> header file. */
324a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_UIO_H 1
325a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
326a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <sys/wait.h> header file. */
327a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_SYS_WAIT_H 1
328a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
329a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if TAILQ_FOREACH is defined in <sys/queue.h> */
330a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/*#define _EVENT_HAVE_TAILQFOREACH 1 */
331a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
332a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if timeradd is defined in <sys/time.h> */
333a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_TIMERADD 1
334a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
335a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if timerclear is defined in <sys/time.h> */
336a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_TIMERCLEAR 1
337a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
338a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if timercmp is defined in <sys/time.h> */
339a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_TIMERCMP 1
340a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
341a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if timerisset is defined in <sys/time.h> */
342a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_TIMERISSET 1
343a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
344a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `uint16_t'. */
345a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UINT16_T 1
346a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
347a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `uint32_t'. */
348a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UINT32_T 1
349a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
350a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `uint64_t'. */
351a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UINT64_T 1
352a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
353a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `uint8_t'. */
354a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UINT8_T 1
355a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
356a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if the system has the type `uintptr_t'. */
357a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UINTPTR_T 1
358a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
359a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `umask' function. */
360a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UMASK 1
361a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
362a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <unistd.h> header file. */
363a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UNISTD_H 1
364a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
365a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `unsetenv' function. */
366a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_UNSETENV 1
367a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
368a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the `vasprintf' function. */
369a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_VASPRINTF 1
370a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
371a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define if kqueue works correctly with pipes */
372a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_HAVE_WORKING_KQUEUE */
373a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
374a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the <zlib.h> header file. */
375a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_HAVE_ZLIB_H 1
376a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
377a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to the sub-directory in which libtool stores uninstalled libraries.
378a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley   */
379a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_LT_OBJDIR ".libs/"
380a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
381a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if your C compiler doesn't accept -c and -o together. */
382a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_NO_MINUS_C_MINUS_O */
383a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
384a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Numeric representation of the version */
385a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_NUMERIC_VERSION 0x02001600
386a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
387a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Name of package */
388a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_PACKAGE "libevent"
389a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
390a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to the address where bug reports for this package should be sent. */
391a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_PACKAGE_BUGREPORT ""
392a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
393a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to the full name of this package. */
394a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_PACKAGE_NAME ""
395a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
396a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to the full name and version of this package. */
397a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_PACKAGE_STRING ""
398a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
399a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to the one symbol short name of this package. */
400a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_PACKAGE_TARNAME ""
401a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
402a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to the home page for this package. */
403a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_PACKAGE_URL ""
404a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
405a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to the version of this package. */
406a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_PACKAGE_VERSION ""
407a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
408a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to necessary symbol if this constant uses a non-standard name on
409a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley   your system. */
410a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_PTHREAD_CREATE_JOINABLE */
411a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
412a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you have the ANSI C header files. */
413a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_STDC_HEADERS 1
414a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
415a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
416a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_TIME_WITH_SYS_TIME 1
417a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
418a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Version number of package */
419a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#define _EVENT_VERSION "2.0.22-stable"
420a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
421a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to appropriate substitue if compiler doesnt have __func__ */
422a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT___func__ */
423a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
424a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to empty if `const' does not conform to ANSI C. */
425a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_const */
426a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
427a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to `__inline__' or `__inline' if that's what the C compiler
428a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley   calls it, or to nothing if 'inline' is not supported under any name.  */
429a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#ifndef _EVENT___cplusplus
430a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_inline */
431a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#endif
432a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
433a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to `int' if <sys/types.h> does not define. */
434a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_pid_t */
435a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
436a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to `unsigned int' if <sys/types.h> does not define. */
437a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_size_t */
438a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
439a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to unsigned int if you dont have it */
440a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_socklen_t */
441a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
442a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* Define to `int' if <sys/types.h> does not define. */
443a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley/* #undef _EVENT_ssize_t */
444a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley
445a99fbc04c8ef4c347366dc91e65cb372a551b83bChristopher Wiley#endif /* event2/event-config.h */
446