summaryrefslogtreecommitdiff
path: root/extra/libevent/event-config.h
blob: 279ee11ed86aa53805a2d848f6966372a807ded7 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
/* event-config.h
 * Generated by autoconf; post-processed by libevent.
 * Do not edit this file.
 * Do not rely on macros in this file existing in later versions.
 */
#ifndef _EVENT_CONFIG_H_
#define _EVENT_CONFIG_H_
/* include/config.h.  Generated from config.h.in by configure.  */
/* config.h.in.  Generated from configure.in by autoheader.  */

/* Support big tables */
#define _EVENT_BIG_TABLES 1

/* Whether features provided by the user community should be included */
#define _EVENT_COMMUNITY_SERVER 1

/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
   systems. This function is required for `alloca.c' support on those systems.
   */
/* #undef _EVENT_CRAY_STACKSEG_END */

/* Define to 1 if using `alloca.c'. */
/* #undef _EVENT_C_ALLOCA */

/* Don't use libdbug */
/* #undef _EVENT_DBUG_OFF */

/* Use libdbug */
#define _EVENT_DBUG_ON 1

/* all charsets are available */
#define _EVENT_DEFINE_ALL_CHARACTER_SETS 1

/* Disables the use of --init-file, --skip-grant-tables and --bootstrap
   options */
/* #undef _EVENT_DISABLE_GRANT_OPTIONS */

/* Define if clock_gettime is available in libc */
/* #undef _EVENT_DNS_USE_CPU_CLOCK_FOR_ID */

/* Define is no secure id variant is available */
#define _EVENT_DNS_USE_GETTIMEOFDAY_FOR_ID 1

/* Version of .frm files */
#define _EVENT_DOT_FRM_VERSION 6

/* If LOAD DATA LOCAL INFILE should be enabled by default */
#define _EVENT_ENABLED_LOCAL_INFILE 1

/* If SHOW PROFILE should be enabled */
#define _EVENT_ENABLED_PROFILING 1

/* Enable error injection in MySQL Server */
/* #undef _EVENT_ERROR_INJECT_SUPPORT */

/* Do we have FIONREAD */
#define _EVENT_FIONREAD_IN_SYS_IOCTL 1

/* READLINE: your system defines TIOCGWINSZ in sys/ioctl.h. */
#define _EVENT_GWINSZ_IN_SYS_IOCTL 1

/* Define to 1 if you have the `abi::__cxa_demangle' function. */
/* #undef _EVENT_HAVE_ABI_CXA_DEMANGLE */

/* Define to 1 if you have the <aio.h> header file. */
#define _EVENT_HAVE_AIO_H 1

/* Define to 1 if you have the `alarm' function. */
#define _EVENT_HAVE_ALARM 1

/* Define to 1 if you have `alloca', as a function or macro. */
#define _EVENT_HAVE_ALLOCA 1

/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
   */
#define _EVENT_HAVE_ALLOCA_H 1

/* Define to 1 if you have the <arpa/inet.h> header file. */
#define _EVENT_HAVE_ARPA_INET_H 1

/* Define to 1 if you have the <asm/termbits.h> header file. */
#define _EVENT_HAVE_ASM_TERMBITS_H 1

/* Define to 1 if you have the `backtrace' function. */
#define _EVENT_HAVE_BACKTRACE 1

/* Define to 1 if you have the `backtrace_symbols' function. */
#define _EVENT_HAVE_BACKTRACE_SYMBOLS 1

/* Define to 1 if you have the `backtrace_symbols_fd' function. */
#define _EVENT_HAVE_BACKTRACE_SYMBOLS_FD 1

/* Define to 1 if you have the `bcmp' function. */
#define _EVENT_HAVE_BCMP 1

/* Define to 1 if you have the `bfill' function. */
/* #undef _EVENT_HAVE_BFILL */

/* Define to 1 if you have the `bmove' function. */
/* #undef _EVENT_HAVE_BMOVE */

/* bool is not defined by all C++ compilators */
#define _EVENT_HAVE_BOOL 1

/* Can netinet be included */
/* #undef _EVENT_HAVE_BROKEN_NETINET_INCLUDES */

/* BSD style signals */
/* #undef _EVENT_HAVE_BSD_SIGNALS */

/* Define to 1 if you have the `bsearch' function. */
#define _EVENT_HAVE_BSEARCH 1

/* Define to 1 if compiler defines __bss_start. */
#define _EVENT_HAVE_BSS_START 1

/* Define to 1 if you have the `bzero' function. */
#define _EVENT_HAVE_BZERO 1

/* Define to enable charset armscii8 */
/* #undef _EVENT_HAVE_CHARSET_armscii8 */

/* Define to enable ascii character set */
/* #undef _EVENT_HAVE_CHARSET_ascii */

/* Define to enable charset big5 */
#define _EVENT_HAVE_CHARSET_big5 1

/* Define to enable cp1250 */
#define _EVENT_HAVE_CHARSET_cp1250 1

/* Define to enable charset cp1251 */
/* #undef _EVENT_HAVE_CHARSET_cp1251 */

/* Define to enable charset cp1256 */
/* #undef _EVENT_HAVE_CHARSET_cp1256 */

/* Define to enable charset cp1257 */
/* #undef _EVENT_HAVE_CHARSET_cp1257 */

/* Define to enable charset cp850 */
/* #undef _EVENT_HAVE_CHARSET_cp850 */

/* Define to enable charset cp852 */
/* #undef _EVENT_HAVE_CHARSET_cp852 */

/* Define to enable charset cp866 */
/* #undef _EVENT_HAVE_CHARSET_cp866 */

/* Define to enable charset cp932 */
#define _EVENT_HAVE_CHARSET_cp932 1

/* Define to enable charset dec8 */
/* #undef _EVENT_HAVE_CHARSET_dec8 */

/* Define to enable charset eucjpms */
#define _EVENT_HAVE_CHARSET_eucjpms 1

/* Define to enable charset euckr */
#define _EVENT_HAVE_CHARSET_euckr 1

/* Define to enable charset gb2312 */
#define _EVENT_HAVE_CHARSET_gb2312 1

/* Define to enable charset gbk */
#define _EVENT_HAVE_CHARSET_gbk 1

/* Define to enable charset geostd8 */
/* #undef _EVENT_HAVE_CHARSET_geostd8 */

/* Define to enable charset greek */
/* #undef _EVENT_HAVE_CHARSET_greek */

/* Define to enable charset hebrew */
/* #undef _EVENT_HAVE_CHARSET_hebrew */

/* Define to enable charset hp8 */
/* #undef _EVENT_HAVE_CHARSET_hp8 */

/* Define to enable charset keybcs2 */
/* #undef _EVENT_HAVE_CHARSET_keybcs2 */

/* Define to enable charset koi8r */
/* #undef _EVENT_HAVE_CHARSET_koi8r */

/* Define to enable charset koi8u */
/* #undef _EVENT_HAVE_CHARSET_koi8u */

/* Define to enable charset latin1 */
#define _EVENT_HAVE_CHARSET_latin1 1

/* Define to enable charset latin2 */
#define _EVENT_HAVE_CHARSET_latin2 1

/* Define to enable charset latin5 */
/* #undef _EVENT_HAVE_CHARSET_latin5 */

/* Define to enable charset latin7 */
/* #undef _EVENT_HAVE_CHARSET_latin7 */

/* Define to enable charset macce */
/* #undef _EVENT_HAVE_CHARSET_macce */

/* Define to enable charset macroman */
/* #undef _EVENT_HAVE_CHARSET_macroman */

/* Define to enable charset sjis */
#define _EVENT_HAVE_CHARSET_sjis 1

/* Define to enable charset swe7 */
/* #undef _EVENT_HAVE_CHARSET_swe7 */

/* Define to enable charset tis620 */
#define _EVENT_HAVE_CHARSET_tis620 1

/* Define to enable charset ucs2 */
#define _EVENT_HAVE_CHARSET_ucs2 1

/* Define to enable charset ujis */
#define _EVENT_HAVE_CHARSET_ujis 1

/* Define to enable ut8 */
#define _EVENT_HAVE_CHARSET_utf8 1

/* Define to 1 if you have the `chsize' function. */
/* #undef _EVENT_HAVE_CHSIZE */

/* Define to 1 if you have the `clock_gettime' function. */
/* #undef _EVENT_HAVE_CLOCK_GETTIME */

/* Define to enable compression support */
#define _EVENT_HAVE_COMPRESS 1

/* crypt */
#define _EVENT_HAVE_CRYPT 1

/* Define to 1 if you have the <crypt.h> header file. */
#define _EVENT_HAVE_CRYPT_H 1

/* Define to 1 if you have the <curses.h> header file. */
#define _EVENT_HAVE_CURSES_H 1

/* Define to 1 if you have the `cuserid' function. */
#define _EVENT_HAVE_CUSERID 1

/* Define to 1 if you have the <cxxabi.h> header file. */
#define _EVENT_HAVE_CXXABI_H 1

/* Define to 1 if you have the declaration of `madvise', and to 0 if you
   don't. */
#define _EVENT_HAVE_DECL_MADVISE 1

/* Define to 1 if you have the declaration of `SHM_HUGETLB', and to 0 if you
   don't. */
#define _EVENT_HAVE_DECL_SHM_HUGETLB 1

/* Define to 1 if you have the declaration of `tgoto', and to 0 if you don't.
   */
#define _EVENT_HAVE_DECL_TGOTO 1

/* Whether we are using DEC threads */
/* #undef _EVENT_HAVE_DEC_THREADS */

/* Define if /dev/poll is available */
/* #undef _EVENT_HAVE_DEVPOLL */

/* Define to 1 if you have the <dirent.h> header file. */
#define _EVENT_HAVE_DIRENT_H 1

/* Define to 1 if you have the `dlerror' function. */
#define _EVENT_HAVE_DLERROR 1

/* Define to 1 if you have the <dlfcn.h> header file. */
#define _EVENT_HAVE_DLFCN_H 1

/* Define to 1 if you have the `dlopen' function. */
#define _EVENT_HAVE_DLOPEN 1

/* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */
/* #undef _EVENT_HAVE_DOPRNT */

/* Access checks in embedded library */
/* #undef _EVENT_HAVE_EMBEDDED_PRIVILEGE_CONTROL */

/* Define if your system supports the epoll system calls */
#define _EVENT_HAVE_EPOLL 1

/* Define to 1 if you have the `epoll_ctl' function. */
#define _EVENT_HAVE_EPOLL_CTL 1

/* Define if your system supports event ports */
/* #undef _EVENT_HAVE_EVENT_PORTS */

/* Define to 1 if you have the <execinfo.h> header file. */
#define _EVENT_HAVE_EXECINFO_H 1

/* Defined by configure. Use explicit template instantiation. */
#define _EVENT_HAVE_EXPLICIT_TEMPLATE_INSTANTIATION 1

/* Define to 1 if you have the `fchmod' function. */
#define _EVENT_HAVE_FCHMOD 1

/* Define to 1 if you have the `fcntl' function. */
#define _EVENT_HAVE_FCNTL 1

/* Define to 1 if you have the <fcntl.h> header file. */
#define _EVENT_HAVE_FCNTL_H 1

/* Define to 1 if you have the `fconvert' function. */
/* #undef _EVENT_HAVE_FCONVERT */

/* Define to 1 if you have the `fdatasync' function. */
#define _EVENT_HAVE_FDATASYNC 1

/* Define to 1 if you have the `fgetln' function. */
/* #undef _EVENT_HAVE_FGETLN */

/* Define to 1 if you have the `finite' function. */
#define _EVENT_HAVE_FINITE 1

/* Define to 1 if you have the <floatingpoint.h> header file. */
/* #undef _EVENT_HAVE_FLOATINGPOINT_H */

/* Define to 1 if you have the <float.h> header file. */
#define _EVENT_HAVE_FLOAT_H 1

/* Define to 1 if you have the `flockfile' function. */
#define _EVENT_HAVE_FLOCKFILE 1

/* Define to 1 if you have the <fnmatch.h> header file. */
#define _EVENT_HAVE_FNMATCH_H 1

/* Define to 1 if you have the `fpresetsticky' function. */
/* #undef _EVENT_HAVE_FPRESETSTICKY */

/* Define to 1 if you have the `fpsetmask' function. */
/* #undef _EVENT_HAVE_FPSETMASK */

/* Define to 1 if the system has the type `fp_except'. */
/* #undef _EVENT_HAVE_FP_EXCEPT */

/* Define to 1 if you have the `fsync' function. */
#define _EVENT_HAVE_FSYNC 1

/* Define to 1 if you have the `ftruncate' function. */
#define _EVENT_HAVE_FTRUNCATE 1

/* Define to 1 if compiler provides atomic builtins. */
/* #undef _EVENT_HAVE_GCC_ATOMIC_BUILTINS */

/* Define to 1 if you have the `getaddrinfo' function. */
#define _EVENT_HAVE_GETADDRINFO 1

/* Define to 1 if you have the `getcwd' function. */
#define _EVENT_HAVE_GETCWD 1

/* Define to 1 if you have the `gethostbyaddr_r' function. */
#define _EVENT_HAVE_GETHOSTBYADDR_R 1

/* Define to 1 if you have the `gethostbyname_r' function. */
#define _EVENT_HAVE_GETHOSTBYNAME_R 1

/* Solaris define gethostbyname_r with 5 arguments. glibc2 defines this with 6
   arguments */
#define _EVENT_HAVE_GETHOSTBYNAME_R_GLIBC2_STYLE 1

/* In OSF 4.0f the 3'd argument to gethostbyname_r is hostent_data * */
/* #undef _EVENT_HAVE_GETHOSTBYNAME_R_RETURN_INT */

/* Define to 1 if you have the `gethrtime' function. */
/* #undef _EVENT_HAVE_GETHRTIME */

/* Define to 1 if you have the `getline' function. */
#define _EVENT_HAVE_GETLINE 1

/* Define to 1 if you have the `getnameinfo' function. */
#define _EVENT_HAVE_GETNAMEINFO 1

/* Define to 1 if you have the `getpagesize' function. */
#define _EVENT_HAVE_GETPAGESIZE 1

/* Define to 1 if you have the `getpass' function. */
#define _EVENT_HAVE_GETPASS 1

/* Define to 1 if you have the `getpassphrase' function. */
/* #undef _EVENT_HAVE_GETPASSPHRASE */

/* Define to 1 if you have the `getpwnam' function. */
#define _EVENT_HAVE_GETPWNAM 1

/* Define to 1 if you have the `getpwuid' function. */
#define _EVENT_HAVE_GETPWUID 1

/* getpwent() declaration present */
/* #undef _EVENT_HAVE_GETPW_DECLS */

/* Define to 1 if you have the `getrlimit' function. */
#define _EVENT_HAVE_GETRLIMIT 1

/* Define to 1 if you have the `getrusage' function. */
#define _EVENT_HAVE_GETRUSAGE 1

/* Define to 1 if you have the `gettimeofday' function. */
#define _EVENT_HAVE_GETTIMEOFDAY 1

/* Define to 1 if you have the `getwd' function. */
#define _EVENT_HAVE_GETWD 1

/* Define to 1 if you have the `gmtime_r' function. */
#define _EVENT_HAVE_GMTIME_R 1

/* Define to 1 if you have the <grp.h> header file. */
#define _EVENT_HAVE_GRP_H 1

/* HIST_ENTRY is defined in the outer libeditreadline */
/* #undef _EVENT_HAVE_HIST_ENTRY */

/* Define to 1 if you have the <ieeefp.h> header file. */
/* #undef _EVENT_HAVE_IEEEFP_H */

/* Define to 1 if you have the `index' function. */
#define _EVENT_HAVE_INDEX 1

/* Define to 1 if you have the `inet_ntop' function. */
#define _EVENT_HAVE_INET_NTOP 1

/* Define to 1 if you have the `initgroups' function. */
#define _EVENT_HAVE_INITGROUPS 1

/* Define to 1 if the system has the type `int16'. */
/* #undef _EVENT_HAVE_INT16 */

/* Define to 1 if the system has the type `int32'. */
/* #undef _EVENT_HAVE_INT32 */

/* Define to 1 if the system has the type `int64'. */
/* #undef _EVENT_HAVE_INT64 */

/* Define to 1 if the system has the type `int8'. */
/* #undef _EVENT_HAVE_INT8 */

/* Define to 1 if you have the <inttypes.h> header file. */
#define _EVENT_HAVE_INTTYPES_H 1

/* Define to 1 if the system has the type `in_addr_t'. */
#define _EVENT_HAVE_IN_ADDR_T 1

/* isinf() macro or function */
#define _EVENT_HAVE_ISINF 1

/* Define to 1 if you have the `isnan' function. */
#define _EVENT_HAVE_ISNAN 1

/* Define to 1 if you have the `issetugid' function. */
/* #undef _EVENT_HAVE_ISSETUGID */

/* Define to 1 if you have the `kqueue' function. */
/* #undef _EVENT_HAVE_KQUEUE */

/* Define if mysql_cv_langinfo_codeset=yes */
#define _EVENT_HAVE_LANGINFO_CODESET 

/* Define to 1 if you have the <langinfo.h> header file. */
#define _EVENT_HAVE_LANGINFO_H 1

/* Define if you have large pages support */
#define _EVENT_HAVE_LARGE_PAGES 1

/* Define to 1 if you have the `bind' library (-lbind). */
/* #undef _EVENT_HAVE_LIBBIND */

/* Define to 1 if you have the `compat' library (-lcompat). */
/* #undef _EVENT_HAVE_LIBCOMPAT */

/* Define to 1 if you have the `c_r' library (-lc_r). */
/* #undef _EVENT_HAVE_LIBC_R */

/* Define to 1 if you have the `dl' library (-ldl). */
#define _EVENT_HAVE_LIBDL 1

/* If we want to use libevent and have connection pooling */
#define _EVENT_HAVE_LIBEVENT 1

/* Define to 1 if you have the `gen' library (-lgen). */
/* #undef _EVENT_HAVE_LIBGEN */

/* Define to 1 if you have the `m' library (-lm). */
#define _EVENT_HAVE_LIBM 1

/* Define to 1 if you have the `nsl' library (-lnsl). */
#define _EVENT_HAVE_LIBNSL 1

/* Define to 1 if you have the `nsl_r' library (-lnsl_r). */
/* #undef _EVENT_HAVE_LIBNSL_R */

/* Define to 1 if you have the `posix4' library (-lposix4). */
/* #undef _EVENT_HAVE_LIBPOSIX4 */

/* Define to 1 if you have the `pthread' library (-lpthread). */
#define _EVENT_HAVE_LIBPTHREAD 1

/* Define to 1 if you have the `resolv' library (-lresolv). */
#define _EVENT_HAVE_LIBRESOLV 1

/* Define to 1 if you have the `rt' library (-lrt). */
#define _EVENT_HAVE_LIBRT 1

/* Define to 1 if you have the `socket' library (-lsocket). */
/* #undef _EVENT_HAVE_LIBSOCKET */

/* Define if have -lwrap */
/* #undef _EVENT_HAVE_LIBWRAP */

/* Define to 1 if you have the <limits.h> header file. */
#define _EVENT_HAVE_LIMITS_H 1

/* Whether we are using Xavier Leroy's LinuxThreads */
/* #undef _EVENT_HAVE_LINUXTHREADS */

/* Define to 1 if you have the <linux/config.h> header file. */
/* #undef _EVENT_HAVE_LINUX_CONFIG_H */

/* Define to 1 if you have the <locale.h> header file. */
#define _EVENT_HAVE_LOCALE_H 1

/* Define to 1 if you have the `localtime_r' function. */
#define _EVENT_HAVE_LOCALTIME_R 1

/* Define to 1 if you have the `locking' function. */
/* #undef _EVENT_HAVE_LOCKING */

/* Define to 1 if you have the `longjmp' function. */
#define _EVENT_HAVE_LONGJMP 1

/* Define to 1 if you have the `lrand48' function. */
#define _EVENT_HAVE_LRAND48 1

/* Define to 1 if you have the `lstat' function. */
#define _EVENT_HAVE_LSTAT 1

/* Define to 1 if you have the `madvise' function. */
#define _EVENT_HAVE_MADVISE 1

/* Define to 1 if you have the `mallinfo' function. */
#define _EVENT_HAVE_MALLINFO 1

/* Define to 1 if you have the <malloc.h> header file. */
#define _EVENT_HAVE_MALLOC_H 1

/* Define if you have mbrlen */
#define _EVENT_HAVE_MBRLEN 

/* Define if you have mbrtowc */
#define _EVENT_HAVE_MBRTOWC 

/* Define if you have mbsrtowcs */
#define _EVENT_HAVE_MBSRTOWCS 

/* Define if mysql_cv_have_mbstate_t=yes */
#define _EVENT_HAVE_MBSTATE_T 

/* Define to 1 if you have the `memcpy' function. */
#define _EVENT_HAVE_MEMCPY 1

/* Define to 1 if you have the `memmove' function. */
#define _EVENT_HAVE_MEMMOVE 1

/* Define to 1 if you have the <memory.h> header file. */
#define _EVENT_HAVE_MEMORY_H 1

/* Define to 1 if you have the `mkstemp' function. */
#define _EVENT_HAVE_MKSTEMP 1

/* Define to 1 if you have the `mlockall' function. */
#define _EVENT_HAVE_MLOCKALL 1

/* Define to 1 if you have the `mmap' function. */
#define _EVENT_HAVE_MMAP 1

/* Define to 1 if you have the `mmap64' function. */
#define _EVENT_HAVE_MMAP64 1

/* Define to 1 if you have the <ndir.h> header file. */
/* #undef _EVENT_HAVE_NDIR_H */

/* Define to 1 if you have the <netinet/in6.h> header file. */
/* #undef _EVENT_HAVE_NETINET_IN6_H */

/* Define to 1 if you have the <netinet/in.h> header file. */
#define _EVENT_HAVE_NETINET_IN_H 1

/* For some non posix threads */
/* #undef _EVENT_HAVE_NONPOSIX_PTHREAD_GETSPECIFIC */

/* For some non posix threads */
/* #undef _EVENT_HAVE_NONPOSIX_PTHREAD_MUTEX_INIT */

/* sigwait with one argument */
/* #undef _EVENT_HAVE_NONPOSIX_SIGWAIT */

/* NPTL threads implementation */
#define _EVENT_HAVE_NPTL 1

/* Define to 1 if the system has the type `off_t'. */
#define _EVENT_HAVE_OFF_T 1

/* OpenSSL */
#define _EVENT_HAVE_OPENSSL 1

/* Define to 1 if you have the <paths.h> header file. */
#define _EVENT_HAVE_PATHS_H 1

/* Define to 1 if you have the `perror' function. */
#define _EVENT_HAVE_PERROR 1

/* Define to 1 if you have the `poll' function. */
#define _EVENT_HAVE_POLL 1

/* Define to 1 if you have the <poll.h> header file. */
#define _EVENT_HAVE_POLL_H 1

/* Define to 1 if you have the `port_create' function. */
/* #undef _EVENT_HAVE_PORT_CREATE */

/* Define to 1 if you have the <port.h> header file. */
/* #undef _EVENT_HAVE_PORT_H */

/* Define to 1 if you have the `posix_fallocate' function. */
#define _EVENT_HAVE_POSIX_FALLOCATE 1

/* Signal handling is POSIX (sigset/sighold, etc) */
#define _EVENT_HAVE_POSIX_SIGNALS 1

/* Define to 1 if you have the `pread' function. */
#define _EVENT_HAVE_PREAD 1

/* Define to 1 if you have the `pthread_attr_create' function. */
/* #undef _EVENT_HAVE_PTHREAD_ATTR_CREATE */

/* Define to 1 if you have the `pthread_attr_getstacksize' function. */
#define _EVENT_HAVE_PTHREAD_ATTR_GETSTACKSIZE 1

/* Define to 1 if you have the `pthread_attr_setprio' function. */
/* #undef _EVENT_HAVE_PTHREAD_ATTR_SETPRIO */

/* Define to 1 if you have the `pthread_attr_setschedparam' function. */
#define _EVENT_HAVE_PTHREAD_ATTR_SETSCHEDPARAM 1

/* pthread_attr_setscope */
#define _EVENT_HAVE_PTHREAD_ATTR_SETSCOPE 1

/* Define to 1 if you have the `pthread_attr_setstacksize' function. */
#define _EVENT_HAVE_PTHREAD_ATTR_SETSTACKSIZE 1

/* Define to 1 if you have the `pthread_condattr_create' function. */
/* #undef _EVENT_HAVE_PTHREAD_CONDATTR_CREATE */

/* Define to 1 if you have the `pthread_getsequence_np' function. */
/* #undef _EVENT_HAVE_PTHREAD_GETSEQUENCE_NP */

/* Define to 1 if you have the `pthread_init' function. */
/* #undef _EVENT_HAVE_PTHREAD_INIT */

/* Define to 1 if you have the `pthread_key_delete' function. */
#define _EVENT_HAVE_PTHREAD_KEY_DELETE 1

/* Define to 1 if you have the `pthread_rwlock_rdlock' function. */
#define _EVENT_HAVE_PTHREAD_RWLOCK_RDLOCK 1

/* Define to 1 if you have the `pthread_setprio' function. */
/* #undef _EVENT_HAVE_PTHREAD_SETPRIO */

/* Define to 1 if you have the `pthread_setprio_np' function. */
/* #undef _EVENT_HAVE_PTHREAD_SETPRIO_NP */

/* Define to 1 if you have the `pthread_setschedparam' function. */
#define _EVENT_HAVE_PTHREAD_SETSCHEDPARAM 1

/* Define to 1 if you have the `pthread_setschedprio' function. */
#define _EVENT_HAVE_PTHREAD_SETSCHEDPRIO 1

/* Define to 1 if you have the `pthread_sigmask' function. */
#define _EVENT_HAVE_PTHREAD_SIGMASK 1

/* pthread_yield function with one argument */
/* #undef _EVENT_HAVE_PTHREAD_YIELD_ONE_ARG */

/* pthread_yield that doesn't take any arguments */
#define _EVENT_HAVE_PTHREAD_YIELD_ZERO_ARG 1

/* Define to 1 if you have the `putenv' function. */
#define _EVENT_HAVE_PUTENV 1

/* Define to 1 if you have the <pwd.h> header file. */
#define _EVENT_HAVE_PWD_H 1

/* If we want to have query cache */
#define _EVENT_HAVE_QUERY_CACHE 1

/* POSIX readdir_r */
#define _EVENT_HAVE_READDIR_R 1

/* Define to 1 if you have the `readlink' function. */
#define _EVENT_HAVE_READLINK 1

/* Define to 1 if you have the `realpath' function. */
#define _EVENT_HAVE_REALPATH 1

/* Define to 1 if you have the `regcomp' function. */
#define _EVENT_HAVE_REGCOMP 1

/* Define to 1 if you have the `rename' function. */
#define _EVENT_HAVE_RENAME 1

/* Define to 1 if system calls automatically restart after interruption by a
   signal. */
#define _EVENT_HAVE_RESTARTABLE_SYSCALLS 1

/* Define to 1 if you have the `re_comp' function. */
#define _EVENT_HAVE_RE_COMP 1

/* Define to 1 if you have the `rint' function. */
#define _EVENT_HAVE_RINT 1

/* RTree keys */
#define _EVENT_HAVE_RTREE_KEYS 1

/* Define to 1 if you have the `rwlock_init' function. */
/* #undef _EVENT_HAVE_RWLOCK_INIT */

/* Define to 1 if you have the <sched.h> header file. */
#define _EVENT_HAVE_SCHED_H 1

/* Define to 1 if you have the `sched_yield' function. */
#define _EVENT_HAVE_SCHED_YIELD 1

/* Define to 1 if you have the `select' function. */
#define _EVENT_HAVE_SELECT 1

/* Define to 1 if you have the <select.h> header file. */
/* #undef _EVENT_HAVE_SELECT_H */

/* Define to 1 if you have the <semaphore.h> header file. */
#define _EVENT_HAVE_SEMAPHORE_H 1

/* Define to 1 if you have the `setenv' function. */
#define _EVENT_HAVE_SETENV 1

/* Define if F_SETFD is defined in <fcntl.h> */
#define _EVENT_HAVE_SETFD 1

/* Define to 1 if you have the `setlocale' function. */
#define _EVENT_HAVE_SETLOCALE 1

/* Define to 1 if you have the `setupterm' function. */
/* #undef _EVENT_HAVE_SETUPTERM */

/* Define to 1 if you have the `shmat' function. */
#define _EVENT_HAVE_SHMAT 1

/* Define to 1 if you have the `shmctl' function. */
#define _EVENT_HAVE_SHMCTL 1

/* Define to 1 if you have the `shmdt' function. */
#define _EVENT_HAVE_SHMDT 1

/* Define to 1 if you have the `shmget' function. */
#define _EVENT_HAVE_SHMGET 1

/* Define to 1 if you have the `sigaction' function. */
#define _EVENT_HAVE_SIGACTION 1

/* Define to 1 if you have the `sigaddset' function. */
#define _EVENT_HAVE_SIGADDSET 1

/* Define to 1 if you have the `sigemptyset' function. */
#define _EVENT_HAVE_SIGEMPTYSET 1

/* Define to 1 if you have the `sighold' function. */
#define _EVENT_HAVE_SIGHOLD 1

/* Define to 1 if you have the `signal' function. */
#define _EVENT_HAVE_SIGNAL 1

/* Define to 1 if you have the <signal.h> header file. */
#define _EVENT_HAVE_SIGNAL_H 1

/* Define to 1 if you have the `sigset' function. */
#define _EVENT_HAVE_SIGSET 1

/* Define to 1 if the system has the type `sigset_t'. */
#define _EVENT_HAVE_SIGSET_T 1

/* Define to 1 if you have the `sigthreadmask' function. */
/* #undef _EVENT_HAVE_SIGTHREADMASK */

/* POSIX sigwait */
#define _EVENT_HAVE_SIGWAIT 1

/* Define to 1 if the system has the type `size_t'. */
#define _EVENT_HAVE_SIZE_T 1

/* Define to 1 if you have the `sleep' function. */
#define _EVENT_HAVE_SLEEP 1

/* Define to 1 if you have the `snprintf' function. */
#define _EVENT_HAVE_SNPRINTF 1

/* Define to 1 if you have the `socket' function. */
#define _EVENT_HAVE_SOCKET 1

/* Solaris define gethostbyaddr_r with 7 arguments. glibc2 defines this with 8
   arguments */
/* #undef _EVENT_HAVE_SOLARIS_STYLE_GETHOST */

/* Spatial extentions */
#define _EVENT_HAVE_SPATIAL 1

/* Define to 1 if you have the <stdarg.h> header file. */
#define _EVENT_HAVE_STDARG_H 1

/* Define to 1 if you have the <stddef.h> header file. */
#define _EVENT_HAVE_STDDEF_H 1

/* Define to 1 if you have the <stdint.h> header file. */
#define _EVENT_HAVE_STDINT_H 1

/* Define to 1 if you have the <stdlib.h> header file. */
#define _EVENT_HAVE_STDLIB_H 1

/* Define to 1 if you have the `stpcpy' function. */
#define _EVENT_HAVE_STPCPY 1

/* Define to 1 if you have the `strcasecmp' function. */
#define _EVENT_HAVE_STRCASECMP 1

/* Define to 1 if you have the `strcoll' function. */
#define _EVENT_HAVE_STRCOLL 1

/* Define to 1 if you have the `strdup' function. */
#define _EVENT_HAVE_STRDUP 1

/* Define to 1 if you have the `strerror' function. */
#define _EVENT_HAVE_STRERROR 1

/* Define to 1 if you have the <strings.h> header file. */
#define _EVENT_HAVE_STRINGS_H 1

/* Define to 1 if you have the <string.h> header file. */
#define _EVENT_HAVE_STRING_H 1

/* Define to 1 if you have the `strlcat' function. */
/* #undef _EVENT_HAVE_STRLCAT */

/* Define to 1 if you have the `strlcpy' function. */
/* #undef _EVENT_HAVE_STRLCPY */

/* Define to 1 if you have the `strnlen' function. */
#define _EVENT_HAVE_STRNLEN 1

/* Define to 1 if you have the `strpbrk' function. */
#define _EVENT_HAVE_STRPBRK 1

/* Define to 1 if you have the `strsep' function. */
#define _EVENT_HAVE_STRSEP 1

/* Define to 1 if you have the `strsignal' function. */
#define _EVENT_HAVE_STRSIGNAL 1

/* Define to 1 if you have the `strstr' function. */
#define _EVENT_HAVE_STRSTR 1

/* Define to 1 if you have the `strtok_r' function. */
#define _EVENT_HAVE_STRTOK_R 1

/* Define to 1 if you have the `strtol' function. */
#define _EVENT_HAVE_STRTOL 1

/* Define to 1 if you have the `strtoll' function. */
#define _EVENT_HAVE_STRTOLL 1

/* Define to 1 if you have the `strtoul' function. */
#define _EVENT_HAVE_STRTOUL 1

/* Define to 1 if you have the `strtoull' function. */
#define _EVENT_HAVE_STRTOULL 1

/* Define to 1 if the system has the type `struct in6_addr'. */
#define _EVENT_HAVE_STRUCT_IN6_ADDR 1

/* Define to 1 if `st_rdev' is member of `struct stat'. */
#define _EVENT_HAVE_STRUCT_STAT_ST_RDEV 1

/* Define to 1 if your `struct stat' has `st_rdev'. Deprecated, use
   `HAVE_STRUCT_STAT_ST_RDEV' instead. */
#define _EVENT_HAVE_ST_RDEV 1

/* Define to 1 if you have the <synch.h> header file. */
/* #undef _EVENT_HAVE_SYNCH_H */

/* Define to 1 if you have the <sys/cdefs.h> header file. */
#define _EVENT_HAVE_SYS_CDEFS_H 1

/* Define to 1 if you have the <sys/devpoll.h> header file. */
/* #undef _EVENT_HAVE_SYS_DEVPOLL_H */

/* Define to 1 if you have the <sys/dir.h> header file. */
#define _EVENT_HAVE_SYS_DIR_H 1

/* Define to 1 if you have the <sys/epoll.h> header file. */
#define _EVENT_HAVE_SYS_EPOLL_H 1

/* Define to 1 if you have the <sys/event.h> header file. */
/* #undef _EVENT_HAVE_SYS_EVENT_H */

/* Define to 1 if you have the <sys/file.h> header file. */
#define _EVENT_HAVE_SYS_FILE_H 1

/* Define to 1 if you have the <sys/ioctl.h> header file. */
#define _EVENT_HAVE_SYS_IOCTL_H 1

/* Define to 1 if you have the <sys/ipc.h> header file. */
#define _EVENT_HAVE_SYS_IPC_H 1

/* Define to 1 if you have the <sys/malloc.h> header file. */
/* #undef _EVENT_HAVE_SYS_MALLOC_H */

/* Define to 1 if you have the <sys/mman.h> header file. */
#define _EVENT_HAVE_SYS_MMAN_H 1

/* Define to 1 if you have the <sys/ndir.h> header file. */
/* #undef _EVENT_HAVE_SYS_NDIR_H */

/* Define to 1 if you have the <sys/param.h> header file. */
#define _EVENT_HAVE_SYS_PARAM_H 1

/* Define to 1 if you have the <sys/prctl.h> header file. */
#define _EVENT_HAVE_SYS_PRCTL_H 1

/* Define to 1 if you have the <sys/ptem.h> header file. */
/* #undef _EVENT_HAVE_SYS_PTEM_H */

/* Define to 1 if you have the <sys/pte.h> header file. */
/* #undef _EVENT_HAVE_SYS_PTE_H */

/* Define to 1 if you have the <sys/queue.h> header file. */
#define _EVENT_HAVE_SYS_QUEUE_H 1

/* Define to 1 if you have the <sys/resource.h> header file. */
#define _EVENT_HAVE_SYS_RESOURCE_H 1

/* Define to 1 if you have the <sys/select.h> header file. */
#define _EVENT_HAVE_SYS_SELECT_H 1

/* Define to 1 if you have the <sys/shm.h> header file. */
#define _EVENT_HAVE_SYS_SHM_H 1

/* Define to 1 if you have the <sys/socket.h> header file. */
#define _EVENT_HAVE_SYS_SOCKET_H 1

/* Define to 1 if you have the <sys/stat.h> header file. */
#define _EVENT_HAVE_SYS_STAT_H 1

/* Define to 1 if you have the <sys/stream.h> header file. */
/* #undef _EVENT_HAVE_SYS_STREAM_H */

/* Define to 1 if you have the <sys/timeb.h> header file. */
#define _EVENT_HAVE_SYS_TIMEB_H 1

/* Define to 1 if you have the <sys/time.h> header file. */
#define _EVENT_HAVE_SYS_TIME_H 1

/* Define to 1 if you have the <sys/types.h> header file. */
#define _EVENT_HAVE_SYS_TYPES_H 1

/* Define to 1 if you have the <sys/un.h> header file. */
#define _EVENT_HAVE_SYS_UN_H 1

/* Define to 1 if you have the <sys/utime.h> header file. */
/* #undef _EVENT_HAVE_SYS_UTIME_H */

/* Define to 1 if you have the <sys/vadvise.h> header file. */
/* #undef _EVENT_HAVE_SYS_VADVISE_H */

/* Define to 1 if you have the <sys/wait.h> header file. */
#define _EVENT_HAVE_SYS_WAIT_H 1

/* Define if TAILQ_FOREACH is defined in <sys/queue.h> */
#define _EVENT_HAVE_TAILQFOREACH 1

/* Define to 1 if you have the `tcgetattr' function. */
#define _EVENT_HAVE_TCGETATTR 1

/* Define to 1 if you have the `tell' function. */
/* #undef _EVENT_HAVE_TELL */

/* Define to 1 if you have the `tempnam' function. */
#define _EVENT_HAVE_TEMPNAM 1

/* Define to 1 if you have the <termbits.h> header file. */
/* #undef _EVENT_HAVE_TERMBITS_H */

/* Define to 1 if you have the <termcap.h> header file. */
#define _EVENT_HAVE_TERMCAP_H 1

/* Define to 1 if you have the <termios.h> header file. */
#define _EVENT_HAVE_TERMIOS_H 1

/* Define to 1 if you have the <termio.h> header file. */
#define _EVENT_HAVE_TERMIO_H 1

/* Define to 1 if you have the <term.h> header file. */
#define _EVENT_HAVE_TERM_H 1

/* Define to 1 if you have the `thr_setconcurrency' function. */
/* #undef _EVENT_HAVE_THR_SETCONCURRENCY */

/* Define to 1 if you have the `thr_yield' function. */
/* #undef _EVENT_HAVE_THR_YIELD */

/* Define if timeradd is defined in <sys/time.h> */
#define _EVENT_HAVE_TIMERADD 1

/* Define if timerclear is defined in <sys/time.h> */
#define _EVENT_HAVE_TIMERCLEAR 1

/* Define if timercmp is defined in <sys/time.h> */
#define _EVENT_HAVE_TIMERCMP 1

/* Define if timerisset is defined in <sys/time.h> */
#define _EVENT_HAVE_TIMERISSET 1

/* Timespec has a ts_sec instead of tv_sev */
/* #undef _EVENT_HAVE_TIMESPEC_TS_SEC */

/* Have the tzname variable */
#define _EVENT_HAVE_TZNAME 1

/* national Unicode collations */
#define _EVENT_HAVE_UCA_COLLATIONS 1

/* Define to 1 if the system has the type `uchar'. */
/* #undef _EVENT_HAVE_UCHAR */

/* Define to 1 if the system has the type `uint'. */
#define _EVENT_HAVE_UINT 1

/* Define to 1 if the system has the type `uint16'. */
/* #undef _EVENT_HAVE_UINT16 */

/* Define to 1 if the system has the type `uint16_t'. */
#define _EVENT_HAVE_UINT16_T 1

/* Define to 1 if the system has the type `uint32'. */
/* #undef _EVENT_HAVE_UINT32 */

/* Define to 1 if the system has the type `uint32_t'. */
#define _EVENT_HAVE_UINT32_T 1

/* Define to 1 if the system has the type `uint64'. */
/* #undef _EVENT_HAVE_UINT64 */

/* Define to 1 if the system has the type `uint64_t'. */
#define _EVENT_HAVE_UINT64_T 1

/* Define to 1 if the system has the type `uint8'. */
/* #undef _EVENT_HAVE_UINT8 */

/* Define to 1 if the system has the type `uint8_t'. */
#define _EVENT_HAVE_UINT8_T 1

/* Define to 1 if the system has the type `ulong'. */
#define _EVENT_HAVE_ULONG 1

/* Define to 1 if you have the <unistd.h> header file. */
#define _EVENT_HAVE_UNISTD_H 1

/* Have UnixWare 7 (or similar) almost-POSIX threading library */
/* #undef _EVENT_HAVE_UNIXWARE7_THREADS */

/* sighold() is present and usable */
/* #undef _EVENT_HAVE_USG_SIGHOLD */

/* certain Japanese customer */
/* #undef _EVENT_HAVE_UTF8_GENERAL_CS */

/* Define to 1 if you have the <utime.h> header file. */
#define _EVENT_HAVE_UTIME_H 1

/* Define to 1 if `utime(file, NULL)' sets file's timestamp to the present. */
#define _EVENT_HAVE_UTIME_NULL 1

/* Define to 1 if the system has the type `u_int32_t'. */
#define _EVENT_HAVE_U_INT32_T 1

/* Define to 1 if you have the <varargs.h> header file. */
/* #undef _EVENT_HAVE_VARARGS_H */

/* Define to 1 if you have the `vasprintf' function. */
#define _EVENT_HAVE_VASPRINTF 1

/* Define to 1 if you have the `vidattr' function. */
/* #undef _EVENT_HAVE_VIDATTR */

/* Define to enable buffered read. This works only if syscalls read/recv
   return as soon as there is some data in the kernel buffer, no matter how
   big the given buffer is. */
#define _EVENT_HAVE_VIO_READ_BUFF 1

/* Found vis.h and the strvis() function */
/* #undef _EVENT_HAVE_VIS_H */

/* Define to 1 if you have the `vprintf' function. */
#define _EVENT_HAVE_VPRINTF 1

/* Define to 1 if you have the <wchar.h> header file. */
#define _EVENT_HAVE_WCHAR_H 1

/* Define if you check wcsdup */
#define _EVENT_HAVE_WCSDUP 

/* Define if you have wctomb */
#define _EVENT_HAVE_WCTOMB 

/* Define to 1 if you have the <wctype.h> header file. */
#define _EVENT_HAVE_WCTYPE_H 1

/* Define if you have wcwidth */
#define _EVENT_HAVE_WCWIDTH 

/* Define to 1 if compiler supports weak symbol attribute. */
#define _EVENT_HAVE_WEAK_SYMBOL 1

/* Define if kqueue works correctly with pipes */
/* #undef _EVENT_HAVE_WORKING_KQUEUE */

/* Define to 1 if you have the <xfs/xfs.h> header file. */
/* #undef _EVENT_HAVE_XFS_XFS_H */

/* Defined by configure. Using yaSSL for SSL. */
#define _EVENT_HAVE_YASSL 1

/* Define if /proc/meminfo shows the huge page size (Linux only) */
#define _EVENT_HUGETLB_USE_PROC_MEMINFO 1

/* Define if you have -lwrap */
/* #undef _EVENT_LIBWRAP */

/* Machine type name, eg sparc */
#define _EVENT_MACHINE_TYPE "x86_64"

/* Maximum number of indexes per table */
#define _EVENT_MAX_INDEXES 64

/* Define the default charset name */
#define _EVENT_MYSQL_DEFAULT_CHARSET_NAME "latin1"

/* Define the default charset name */
#define _EVENT_MYSQL_DEFAULT_COLLATION_NAME "latin1_swedish_ci"

/* Assume single-CPU mode, no concurrency */
/* #undef _EVENT_MY_ATOMIC_MODE_DUMMY */

/* Use pthread rwlocks for atomic ops */
/* #undef _EVENT_MY_ATOMIC_MODE_RWLOCKS */

/* Define to 1 if you want to use fast mutexes */
/* #undef _EVENT_MY_PTHREAD_FASTMUTEX */

/* Including Ndb Cluster DB sci transporter */
/* #undef _EVENT_NDB_SCI_TRANSPORTER */

/* Including Ndb Cluster DB shared memory transporter */
/* #undef _EVENT_NDB_SHM_TRANSPORTER */

/* NDB build version */
/* #undef _EVENT_NDB_VERSION_BUILD */

/* NDB major version */
/* #undef _EVENT_NDB_VERSION_MAJOR */

/* NDB minor version */
/* #undef _EVENT_NDB_VERSION_MINOR */

/* NDB status version */
/* #undef _EVENT_NDB_VERSION_STATUS */

/* Name of package */
#define _EVENT_PACKAGE "mysql"

/* Define to the address where bug reports for this package should be sent. */
#define _EVENT_PACKAGE_BUGREPORT ""

/* Define to the full name of this package. */
#define _EVENT_PACKAGE_NAME ""

/* Define to the full name and version of this package. */
#define _EVENT_PACKAGE_STRING ""

/* Define to the one symbol short name of this package. */
#define _EVENT_PACKAGE_TARNAME ""

/* Define to the version of this package. */
#define _EVENT_PACKAGE_VERSION ""

/* mysql client protocol version */
#define _EVENT_PROTOCOL_VERSION 10

/* qsort returns void */
#define _EVENT_QSORT_TYPE_IS_VOID 1

/* The return type of qsort (int or void). */
#define _EVENT_RETQSORTTYPE void

/* Define as the return type of signal handlers (`int' or `void'). */
#define _EVENT_RETSIGTYPE void

/* The size of `char', as computed by sizeof. */
#define _EVENT_SIZEOF_CHAR 1

/* The size of `char*', as computed by sizeof. */
#define _EVENT_SIZEOF_CHARP 8

/* The size of `int', as computed by sizeof. */
#define _EVENT_SIZEOF_INT 4

/* The size of `long', as computed by sizeof. */
#define _EVENT_SIZEOF_LONG 8

/* The size of `long long', as computed by sizeof. */
#define _EVENT_SIZEOF_LONG_LONG 8

/* The size of `off_t', as computed by sizeof. */
#define _EVENT_SIZEOF_OFF_T 8

/* The size of `short', as computed by sizeof. */
#define _EVENT_SIZEOF_SHORT 2

/* The size of `void*', as computed by sizeof. */
#define _EVENT_SIZEOF_VOIDP 8

/* The base type of the last arg to accept */
#define _EVENT_SOCKET_SIZE_TYPE socklen_t

/* Last argument to get/setsockopt */
/* #undef _EVENT_SOCKOPT_OPTLEN_TYPE */

/* Broken sprintf */
/* #undef _EVENT_SPRINTF_RETURNS_GARBAGE */

/* POSIX sprintf */
#define _EVENT_SPRINTF_RETURNS_INT 1

/* Broken sprintf */
/* #undef _EVENT_SPRINTF_RETURNS_PTR */

/* If using the C implementation of alloca, define if you know the
   direction of stack growth for your system; otherwise it will be
   automatically deduced at runtime.
	STACK_DIRECTION > 0 => grows toward higher addresses
	STACK_DIRECTION < 0 => grows toward lower addresses
	STACK_DIRECTION = 0 => direction of growth unknown */
#define _EVENT_STACK_DIRECTION -1

/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
/* #undef _EVENT_STAT_MACROS_BROKEN */

/* Define to 1 if you have the ANSI C header files. */
#define _EVENT_STDC_HEADERS 1

/* d_ino member present in struct dirent */
#define _EVENT_STRUCT_DIRENT_HAS_D_INO 1

/* d_namlen member present in struct dirent */
/* #undef _EVENT_STRUCT_DIRENT_HAS_D_NAMLEN */

/* The struct rlimit type to use with setrlimit */
#define _EVENT_STRUCT_RLIMIT struct rlimit

/* Name of system, eg sun-solaris */
#define _EVENT_SYSTEM_TYPE "suse-linux-gnu"

/* Whether we build for Linux */
#define _EVENT_TARGET_OS_LINUX 1

/* Define if you want to have threaded code. This may be undef on client code
   */
#define _EVENT_THREAD 1

/* Should the client be thread safe */
#define _EVENT_THREAD_SAFE_CLIENT 1

/* Define to 1 if time_t is unsigned */
/* #undef _EVENT_TIME_T_UNSIGNED */

/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#define _EVENT_TIME_WITH_SYS_TIME 1

/* declaration of TIOCSTAT in sys/ioctl.h */
/* #undef _EVENT_TIOCSTAT_IN_SYS_IOCTL */

/* Define to 1 if your <sys/time.h> declares `struct tm'. */
/* #undef _EVENT_TM_IN_SYS_TIME */

/* used libedit interface (can we dereference result of
   rl_completion_entry_function) */
/* #undef _EVENT_USE_LIBEDIT_INTERFACE */

/* Maria is used for internal temporary tables */
#define _EVENT_USE_MARIA_FOR_TMP_TABLES 1

/* Use multi-byte character routines */
#define _EVENT_USE_MB 1

/* */
#define _EVENT_USE_MB_IDENT 1

/* Needs to use mysys_new helpers */
#define _EVENT_USE_MYSYS_NEW 1

/* used new readline interface (are rl_completion_func_t and
   rl_compentry_func_t defined) */
#define _EVENT_USE_NEW_READLINE_INTERFACE 1

/* the pstack backtrace library */
/* #undef _EVENT_USE_PSTACK */

/* Version number of package */
#define _EVENT_VERSION "5.1.32-maria-beta"

/* sighandler type is void (*signal ()) (); */
#define _EVENT_VOID_SIGHANDLER 1

/* Include Archive Storage Engine into mysqld */
#define _EVENT_WITH_ARCHIVE_STORAGE_ENGINE 1

/* Include Basic Write-only Read-never tables into mysqld */
#define _EVENT_WITH_BLACKHOLE_STORAGE_ENGINE 1

/* Include Stores tables in text CSV format into mysqld */
#define _EVENT_WITH_CSV_STORAGE_ENGINE 1

/* Include Example for Storage Engines for developers into mysqld */
/* #undef _EVENT_WITH_EXAMPLE_STORAGE_ENGINE */

/* Include Connects to tables on remote MySQL servers into mysqld */
#define _EVENT_WITH_FEDERATED_STORAGE_ENGINE 1

/* Include Volatile memory based tables into mysqld */
#define _EVENT_WITH_HEAP_STORAGE_ENGINE 1

/* Include Transactional Tables using InnoDB into mysqld */
#define _EVENT_WITH_INNOBASE_STORAGE_ENGINE 1

/* Include Crash-safe tables with MyISAM heritage into mysqld */
#define _EVENT_WITH_MARIA_STORAGE_ENGINE 1

/* Include Merge multiple MySQL tables into one into mysqld */
#define _EVENT_WITH_MYISAMMRG_STORAGE_ENGINE 1

/* Include Traditional non-transactional MySQL tables into mysqld */
#define _EVENT_WITH_MYISAM_STORAGE_ENGINE 1

/* Include High Availability Clustered tables into mysqld */
/* #undef _EVENT_WITH_NDBCLUSTER_STORAGE_ENGINE */

/* Including Ndb Cluster Binlog */
/* #undef _EVENT_WITH_NDB_BINLOG */

/* Include MySQL Partitioning Support into mysqld */
#define _EVENT_WITH_PARTITION_STORAGE_ENGINE 1

/* Define to 1 if your processor stores words with the most significant byte
   first (like Motorola and SPARC, unlike Intel and VAX). */
/* #undef _EVENT_WORDS_BIGENDIAN */

/* Number of bits in a file offset, on hosts where this is settable. */
/* #undef _EVENT__FILE_OFFSET_BITS */

/* makes fseeko etc. visible, on some hosts. */
/* #undef _EVENT__LARGEFILE_SOURCE */

/* Large files support on AIX-style hosts. */
/* #undef _EVENT__LARGE_FILES */

/* Define to appropriate substitue if compiler doesnt have __func__ */
/* #undef _EVENT___func__ */

/* Define to empty if `const' does not conform to ANSI C. */
/* #undef _EVENT_const */

/* Define to `__inline__' or `__inline' if that's what the C compiler
   calls it, or to nothing if 'inline' is not supported under any name.  */
#ifndef _EVENT___cplusplus
/* #undef _EVENT_inline */
#endif

/* Define to `long int' if <sys/types.h> does not define. */
/* #undef _EVENT_off_t */

/* Define to `int' if <sys/types.h> does not define. */
/* #undef _EVENT_pid_t */

/* Define to `unsigned int' if <sys/types.h> does not define. */
/* #undef _EVENT_size_t */

/* Define to unsigned int if you dont have it */
/* #undef _EVENT_socklen_t */
#endif