summaryrefslogtreecommitdiff
path: root/support/dktools/config.h.in
blob: e12e8d3030339f5ddc3149b14bf6b269b8e2c04e (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
/**	@file	config.h	Configure script constant names.

ALL NAMES LISTED HERE MUST ALSO BE DEFINED IN THE win32/dk4conf.h FILE!
=======================================================================
The win32/dk4conf.h is used on systems where the configure script
can not be run.

*/

#ifndef CONFIG_H_INCLUDED
/**	Protection against multiple inclusion.
*/
#define	CONFIG_H_INCLUDED		1

/**	The inline keyword for the C programming language.
	Only set if both: (1) the keyword is available and
	(2) enabled by --enable-inline in the configure script.
*/
#define	HAVE_INLINE 0

/**	Net-SNMP library.
*/
#define HAVE_LIBNETSNMP 0

/**	Enable file log function in Net-SNMP
*/
#define HAVE_SNMP_ENABLE_FILELOG 0

/**	Disable logging to syslog.
*/
#define	HAVE_SNMP_DISABLE_SYSLOG	0

/**	Disable logging to stderr.
*/
#define	HAVE_SNMP_DISABLE_STDERRLOG	0

/**	Disable logging to file.
*/
#define	HAVE_SNMP_DISABLE_FILELOG	0

/**	Error codes.
*/
#define	HAVE_ERRNO_H			0

/**	Declarations for functions on UNIX/POSIX systems.
*/
#define	HAVE_UNISTD_H			0

/**	The process.h file declares the exit() function on Windows systems.
*/
#define	HAVE_PROCESS_H			0

/**	Character classification.
*/
#define	HAVE_CTYPE_H			0

/**	Unicode character data type.
*/
#define	HAVE_UCHAR_H			0

/**	Wide character data type.
*/
#define	HAVE_WCHAR_H			0

/**	Wide character classification.
*/
#define	HAVE_WCTYPE_H			0

/**	Integer types up to maximum size.
*/
#define	HAVE_STDINT_H			0

/**	Integer types in different sizes.
*/
#define	HAVE_INTTYPES_H			0

/**	Limits for different integer types.
*/
#define	HAVE_LIMITS_H			0

/**	String functions.
*/
#define	HAVE_STRING_H			0

/**	Source code assertion.
*/
#define	HAVE_ASSERT_H			0

/**	Signal handling.
*/
#define	HAVE_SIGNAL_H			0

/**	Mathematic functions and constants.
*/
#define	HAVE_MATH_H			0

/**	Floating point status word, exceptions, setup.
*/
#define	HAVE_FENV_H			0

/**	Floating point calculations.
*/
#define	HAVE_FLOAT_H			0

/**	Complex numbers.
*/
#define	HAVE_COMPLEX_H			0

/**	Date and time.
*/
#define	HAVE_TIME_H			0

/**	Jump buffers for horrible error handling.
*/
#define	HAVE_SETJMP_H			0

/**	Locale settings.
*/
#define	HAVE_LOCALE_H			0

/**	Unkown.
*/
#define	HAVE_ISO646_H			0

/**	Unknown.
*/
#define	HAVE_STDALIGN_H			0

/**	Function argument processing.
*/
#define	HAVE_STDARG_H			0

/**	Unknown.
*/
#define	HAVE_STDATOMIC_H		0

/**	Definition of boolean type.
*/
#define	HAVE_STDBOOL_H			0

/**	Unknown.
*/
#define	HAVE_STDDEF_H			0

/**	Unknown.
*/
#define	HAVE_STDNORETURN_H		0

/**	Standard library.
*/
#define	HAVE_STDLIB_H			0

/**	Type generic mathematics.
*/
#define	HAVE_TGMATH_H			0

/**	Threads, not standard yet.
*/
#define	HAVE_THREADS_H			0

/**	Data type definitions.
*/
#define	HAVE_SYS_TYPES_H		0

/**	Socket functions.
*/
#define	HAVE_SYS_SOCKET_H		0

#define	HAVE_SYS_UN_H			0

/**	The select() function.
*/
#define	HAVE_SYS_SELECT_H		0

#define	HAVE_NETINET_IN_H		0

#define	HAVE_NETINET_IN6_H		0

#define	HAVE_NETDB_H			0

#define	HAVE_ARPA_INET_H		0

/**	Get user info.
*/
#define	HAVE_PWD_H			0

/**	Get group info.
*/
#define HAVE_GRP_H			0

/**
*/
#define	HAVE_SYS_PARAM_H		0

/**	File and file systems statistics.
*/
#define	HAVE_SYS_STAT_H			0

/**	Time handling functions.
*/
#define	HAVE_SYS_TIME_H			0

/**	Further string functions on some systems.
*/
#define	HAVE_STRINGS_H			0

/**	Input and output functions on Windows systems.
*/
#define	HAVE_IO_H			0

/**	File control functions.
*/
#define	HAVE_FCNTL_H			0

/**	File share modes.
*/
#define	HAVE_SHARE_H			0

/**	Access BIOS functions.
*/
#define	HAVE_BIOS_H			0

/**	DOS related things on Windows.
*/
#define	HAVE_DOS_H			0

/**	Memory allocation functions.
*/
#define	HAVE_ALLOC_H			0

/**	Memory allocation functions.
*/
#define	HAVE_MALLOC_H			0

/**	Linux and Unix directory traversal.
*/
#define	HAVE_DIRENT_H			0

#define	HAVE_WINDOWS_H			0

#define	HAVE_WINSOCK2_H			0

#define	HAVE_WS2TCPIP_H			0

/**	Windows functions for directory handling.
*/
#define	HAVE_DIRECT_H			0

/**	zlib compression library.
*/
#define	HAVE_ZLIB_H			0

/**	bzip2 compression library.
*/
#define	HAVE_BZLIB_H			0

/**	OpenSSL library, random number generator.
*/
#define	HAVE_OPENSSL_RAND_H		0

/**	OpenSSL library, MD5 message digest.
*/
#define	HAVE_OPENSSL_MD5_H		0

/**	OpenSSL library, SHA-1 and others.
*/
#define	HAVE_OPENSSL_SHA_H		0

/**	OpenSSL library, RIPEMD-160 message digest.
*/
#define	HAVE_OPENSSL_RIPEMD_H		0

/**	Berkeley DB
*/
#define	HAVE_DB_H			0

/**	NDBM database.
*/
#define	HAVE_NDBM_H			0

/**	Include file ntifs.h
*/
#define	HAVE_NTIFS_H			0

/**	wxWidgets library.
*/
#define	HAVE_WXWIDGETS			0

/**	Size of long long data type.
*/
#define	HAVE_LONG_LONG			0

/**	Test: Have long double.
*/
#define	HAVE_LONG_DOUBLE		0

/**	Test: Have intmax_t.
*/
#define	HAVE_INTMAX_T			0

/**	Test: Keyword volatile.
*/
#define	HAVE_VOLATILE			0

/**	Test: Data type sig_atomic_t.
*/
#define	HAVE_SIG_ATOMIC_T		0

/**	Size of short data type.
*/
#define	SIZEOF_SHORT			0

/**	Size of int data type.
*/
#define	SIZEOF_INT			0

/**	Size of size_t data type.
*/
#define	SIZEOF_SIZE_T			0

/**	Size of long data type.
*/
#define	SIZEOF_LONG			0

/**	Size of long long data  type.
*/
#define	SIZEOF_LONG_LONG		0

/**	Size of intmax_t data type.
*/
#define	SIZEOF_INTMAX_T			0

/**	Size of double data type.
*/
#define	SIZEOF_DOUBLE			0

/**	Size of long double data type.
*/
#define	SIZEOF_LONG_DOUBLE		0

/**	Size of wchar_t data type.
*/
#define	SIZEOF_WCHAR_T			0

/**	Size of off_t data type.
*/
#define	SIZEOF_OFF_T			0

/**	Size of ino_t data type.
*/
#define	SIZEOF_INO_T			0

/**	Size of off64_t data type.
*/
#define	SIZEOF_OFF64_T			0

/**	Size of ino64_t data type.
*/
#define	SIZEOF_INO64_T			0

/**	Flag: Use time.h and sys/time.h together.
*/
#define	TIME_WITH_SYS_TIME		0

/**	Bigendian byte order.
*/
#define	WORDS_BIGENDIAN			0

/**	Function memset() available.
*/
#define	HAVE_MEMSET			0

/**	Function bzero() available.
*/
#define	HAVE_BZERO			0

/**	Function memcpy() available.
*/
#define	HAVE_MEMCPY			0

/**	Function bcopy() available.
*/
#define	HAVE_BCOPY			0

/**	Function memcmp() available.
*/
#define	HAVE_MEMCMP			0

/**	Function bcmp() available.
*/
#define	HAVE_BCMP			0

/**	Function malloc() available.
*/
#define	HAVE_MALLOC			0

/**	Function calloc().
*/
#define	HAVE_CALLOC			0

/**	Function free().
*/
#define	HAVE_FREE			0

/**	Function strcpy_s().
*/
#define	HAVE_STRCPY_S			0

/**	Function strcat_s().
*/
#define	HAVE_STRCAT_S			0

/**	Function strcasecmp().
*/
#define	HAVE_STRCASECMP			0

/**	Function stricmp().
*/
#define	HAVE_STRICMP			0

/**	Function _stricmp().
*/
#define	HAVE__STRICMP			0

/**	Function wcslen().
*/
#define	HAVE_WCSLEN			0

/**	Function wcscpy_s().
*/
#define	HAVE_WCSCPY_S			0

/**	Function wcscpy().
*/
#define	HAVE_WCSCPY			0

/**	Function wcscat_s().
*/
#define	HAVE_WCSCAT_S			0

/**	Function wcscat().
*/
#define	HAVE_WCSCAT			0

/**	Function wcschr().
*/
#define	HAVE_WCSCHR			0

/**	Function wcsrchr().
*/
#define	HAVE_WCSRCHR			0

/**	Function wcscmp().
*/
#define	HAVE_WCSCMP			0

/**	Function _wcscmp().
*/
#define	HAVE__WCSCMP			0

/**	Function wcsncmp().
*/
#define HAVE_WCSNCMP 			0

/**	Function _wcsncmp().
*/
#define HAVE__WCSNCMP			0

/**	Function wcscasecmp().
*/
#define	HAVE_WCSCASECMP			0

/**	Function _wcscasecmp().
*/
#define	HAVE__WCSCASECMP		0

/**	Function wcsicmp().
*/
#define	HAVE_WCSICMP			0

/**	Function _wcsicmp().
*/
#define	HAVE__WCSICMP			0

/**	Function getpid().
*/
#define	HAVE_GETPID			0

/**	Function readlink().
*/
#define	HAVE_READLINK			0

/**	Facility to retrieve executable file name via /proc/.../exe file.
*/
#define	HAVE_PROC_PID_EXE		0

/**	Function getexecname().
*/
#define	HAVE_GETEXECNAME		0

/**	Function lstat().
*/
#define	HAVE_LSTAT			0

/**	Function stat64().
*/
#define	HAVE_STAT64			0

/**	Function lstat64().
*/
#define	HAVE_LSTAT64			0

/**	Function localtime_r().
*/
#define	HAVE_LOCALTIME_R		0

/**	Function geteuid().
*/
#define	HAVE_GETEUID			0

/**	Function fopen64().
*/
#define	HAVE_FOPEN64			0

/**	Function fopen_s().
*/
#define	HAVE_FOPEN_S			0

/**	Function _wfopen().
*/
#define	HAVE__WFOPEN			0

/**	Function _wfopen64().
*/
#define	HAVE__WFOPEN64			0

/**	Function _wfopen_s().
*/
#define	HAVE__WFOPEN_S			0

/**	Function fputws().
*/
#define	HAVE_FPUTWS			0

/**	Function fputwc().
*/
#define	HAVE_FPUTWC			0

/**	Function setbuffer().
*/
#define	HAVE_SETBUFFER			0

/**	Function setbuf().
*/
#define	HAVE_SETBUF			0

/**	Function fileno().
*/
#define	HAVE_FILENO			0

/**	Function _fileno().
*/
#define	HAVE__FILENO			0

/**	Function setmode().
*/
#define	HAVE_SETMODE			0

/**	Function _setmode().
*/
#define	HAVE__SETMODE			0

/**	Function isatty().
*/
#define	HAVE_ISATTY			0

/**	Function _isatty().
*/
#define	HAVE__ISATTY			0

/**	Function strtod().
*/
#define	HAVE_STRTOD			0

/**	Function _strtod().
*/
#define	HAVE__STRTOD			0

/**	Function wcstod().
*/
#define	HAVE_WCSTOD			0

/**	Function _wcstod().
*/
#define	HAVE__WCSTOD			0

/**	Function _snprintf_s().
*/
#define	HAVE__SNPRINTF_S		0

/**	Function _snprintf().
*/
#define	HAVE__SNPRINTF			0

/**	Function snprintf().
*/
#define	HAVE_SNPRINTF			0

/**	Function _snwprintf_s().
*/
#define	HAVE__SNWPRINTF_S		0

/**	Function _snwprintf().
*/
#define	HAVE__SNWPRINTF			0

/**	Function snwprintf().
*/
#define	HAVE_SNWPRINTF			0

/**	Function swprintf().
*/
#define	HAVE_SWPRINTF			0

/**	Function unlink().
*/
#define	HAVE_UNLINK			0

/**	Function _unlink().
*/
#define	HAVE__UNLINK			0

/**	Function wunlink().
*/
#define	HAVE_WUNLINK			0

/**	Function _wunlink().
*/
#define	HAVE__WUNLINK			0

/**	Function rmdir().
*/
#define	HAVE_RMDIR			0

/**	Function _rmdir().
*/
#define	HAVE__RMDIR			0

/**	Function wrmdir().
*/
#define	HAVE_WRMDIR			0

/**	Function _wrmdir().
*/
#define	HAVE__WRMDIR			0

/**	Function mkdir().
*/
#define	HAVE_MKDIR			0

/**	Function _mkdir().
*/
#define	HAVE__MKDIR			0

/**	Function wmkdir().
*/
#define	HAVE_WMKDIR			0

/**	Function _wmkdir().
*/
#define	HAVE__WMKDIR			0

/**	Function sigaction().
*/
#define	HAVE_SIGACTION			0

/**	Function sigset().
*/
#define	HAVE_SIGSET			0

/**	Function signal().
*/
#define	HAVE_SIGNAL			0

/**	Function sigprocmask().
*/
#define	HAVE_SIGPROCMASK		0

/**	Function sigemtpyset().
*/
#define	HAVE_SIGEMPTYSET		0

/**	Function setpwent().
*/
#define	HAVE_SETPWENT			0

/**	Function getpwent().
*/
#define	HAVE_GETPWENT			0

/**	Function endpwent().
*/
#define	HAVE_ENDPWENT			0

/**	Function getpwnam().
*/
#define HAVE_GETPWNAM			0

/**	Function getpwuid().
*/
#define HAVE_GETPWUID			0

/**	Function setgrent().
*/
#define HAVE_SETGRENT			0

/**	Function getgrent().
*/
#define HAVE_GETGRENT			0

/**	Function getgrgid().
*/
#define HAVE_GETGRGID			0

/**	Function getgrnam().
*/
#define HAVE_GETGRNAM			0

/**	Function endgrent().
*/
#define HAVE_ENDGRENT			0

/**	Function strerror().
*/
#define	HAVE_STRERROR			0

/**	Function strerror_r().
*/
#define	HAVE_STRERROR_R			0

/**	Function rand().
*/
#define	HAVE_RAND			0

/**	Function srand().
*/
#define	HAVE_SRAND			0

/**	Function initstate().
*/
#define	HAVE_INITSTATE			0

/**	Function setstate().
*/
#define	HAVE_SETSTATE			0

/**	Function random().
*/
#define	HAVE_RANDOM			0

/**	Function nrand48().
*/
#define	HAVE_NRAND48			0

/**	Function lrand48().
*/
#define	HAVE_LRAND48			0

/**	Function socket().
*/
#define	HAVE_SOCKET			0

/**	Function getenv().
*/
#define	HAVE_GETENV			0

/**	Function getenv_s().
*/
#define	HAVE_GETENV_S			0

/**	Function setlocale().
*/
#define	HAVE_SETLOCALE			0

/**	Function select().
*/
#define	HAVE_SELECT			0

/**	Function inet_addr().
*/
#define	HAVE_INET_ADDR			0

/**	Function inet_aton().
*/
#define	HAVE_INET_ATON			0

/**	Function inet_pton().
*/
#define	HAVE_INET_PTON			0

/**	Function inet_ntop
*/
#define	HAVE_INET_NTOP			0

/**	Function setsockopt().
*/
#define	HAVE_SETSOCKOPT			0

/**	Function getaddrinfo().
*/
#define	HAVE_GETADDRINFO		0

/**	Function getnameinfo().
*/
#define	HAVE_GETNAMEINFO		0

/**	Function gethostbyname().
*/
#define	HAVE_GETHOSTBYNAME		0

/**	Function htons().
*/
#define	HAVE_HTONS			0

/**	Function ntohs().
*/
#define	HAVE_NTOHS			0

/**	Function htonl().
*/
#define	HAVE_HTONL			0

/**	Function ntohl().
*/
#define	HAVE_NTOHL			0

/**	Function _getcwd().
*/
#define	HAVE__GETCWD			0

/**	Function _wgetcwd().
*/
#define	HAVE__WGETCWD			0

/**	Function getcwd().
*/
#define	HAVE_GETCWD			0

/**	Function GetFinalPathNameByHandle().
*/
#define	HAVE_GETFINALPATHNAMEBYHANDLE	0

/**	Function db_cursor_c_get().
*/
#define HAVE_DB_CURSOR_C_GET 		0

/**	Function chmod().
*/
#define HAVE_CHMOD			0

/**	Function chown().
*/
#define HAVE_CHOWN			0

/**	Function setvbuf().
*/
#define	HAVE_SETVBUF			0

/**	Makro isfinite().
*/
#define	HAVE_ISFINITE			0

/**	Makro isnormal().
*/
#define HAVE_ISNORMAL			0

/**	Makro _finite().
*/
#define	HAVE__FINITE			0

/**	Data type and functions for SHA-224 in OpenSSL.
*/
#define HAVE_SHA224                     0

/**	Data type and functions for SHA-256  in OpenSSL.
*/
#define HAVE_SHA256                     0

/**	Data type and functions for SHA-384  in OpenSSL.
*/
#define HAVE_SHA384                     0

/**	Data type and functions for SHA-512  in OpenSSL.
*/
#define HAVE_SHA512                     0

/**	Function RAND_egd().
*/
#define	HAVE_RAND_EGD			0

/**	Data type int8_t.
*/
#define	HAVE_INT8_T			0

/**	Data type int16_t.
*/
#define	HAVE_INT16_T			0

/**	Data type int32_t.
*/
#define	HAVE_INT32_T			0

/**	Data type uint8_t.
*/
#define	HAVE_UINT8_T			0

/**	Data type uint16_t.
*/
#define	HAVE_UINT16_T			0

/**	Data type uint32_t.
*/
#define	HAVE_UINT32_T			0

/**	Data type ssize_t.
*/
#define	HAVE_SSIZE_T			0

/**	Data type dev_t.
*/
#define	HAVE_DEV_T			0

/**	Data type _dev_t.
*/
#define	HAVE__DEV_T			0

/**	Data type ino_t.
*/
#define	HAVE_INO_T			0

/**	Data type _ino_t.
*/
#define	HAVE__INO_T			0

/**	Data type ino64_t.
*/
#define	HAVE_INO64_T			0

/**	Data type _ino64_t.
*/
#define	HAVE__INO64_T			0

/**	Data type mode_t.
*/
#define	HAVE_MODE_T			0

/**	Data type nlink_t.
*/
#define	HAVE_NLINK_T			0

/**	Data type uid_t.
*/
#define	HAVE_UID_T			0

/**	Data type gid_t.
*/
#define	HAVE_GID_T			0

/**	Data type off_t.
*/
#define	HAVE_OFF_T			0

/**	Data type _off_t.
*/
#define	HAVE__OFF_T			0

/**	Data type off64_t.
*/
#define	HAVE_OFF64_T			0

/**	Data type _off64_t.
*/
#define	HAVE__OFF64_T			0

/**	Data type blksize_t.
*/
#define	HAVE_BLKSIZE_T			0

/**	Data type blkcnt_t.
*/
#define	HAVE_BLKCNT_T			0

/**	Data type fpos_t.
*/
#define	HAVE_FPOS_T			0

/**	Data type _fpos_t.
*/
#define	HAVE__FPOS_T			0

/**	Data type socklen_t.
*/
#define	HAVE_SOCKLEN_T			0

/**	Data type struct sockaddr_in.
*/
#define	HAVE_STRUCT_SOCKADDR_IN		0

/**	Data type struct sockaddr_in6.
*/
#define	HAVE_STRUCT_SOCKADDR_IN6	0

/**	Data type struct sockaddr_un.
*/
#define	HAVE_STRUCT_SOCKADDR_UN		0

/**	Data type struct addrinfo.
*/
#define	HAVE_STRUCT_ADDRINFO		0

/**	Data t ype struct sockaddr_storage.
*/
#define	HAVE_STRUCT_SOCKADDR_STORAGE	0

/**	Typedef IN_ADDR.
*/
#define	HAVE_IN_ADDR			0

/**	Typedef IN6_ADDR.
*/
#define	HAVE_IN6_ADDR			0

/**	Data type struct stat64.
*/
#define	HAVE_TYPE_STAT64		0

/**	Use large file functions to process files.
*/
#define	HAVE_LARGEFILE64_SOURCE		0

/**	Feature: If minimum/maximum definitions for integral data
	types are missing, use builtin defaults.
*/
#define	USE_FALLBACK_NUMERIC_LIMITS	0

/**	Feature: Use LocalAlloc()/LocalFree() on Windows.
*/
#define	USE_WINDOWS_LOCAL_ALLOC		0

/**	Feature: Path components are separated by backslash.
*/
#define	HAVE_BACKSLASH_AS_SEP		0

/**	Feature: DOS/Windows line ends consisting of carriage return and
	newline.
*/
#define	HAVE_LINE_END_CR_NL		0

/**	Feature: Path names are case insensitive.
*/
#define	HAVE_CASE_INSENSITIVE_PATHNAMES	0

/**	Feature: User names are case insensitive.
*/
#define	HAVE_CASE_INSENSITIVE_USERNAMES	0

/**	Feature: Device and inode number in stat() results have
	useful contents.
*/
#define	HAVE_FILE_DEVINO		0

/**	Feature: Uid and gid numbers in stat() results have
	useful contents.
*/
#define	HAVE_FILE_UIDGID		0

/**	Feature: Block size and count in stat() results have useful contents.
*/
#define	HAVE_FILE_BLKSIZECNT		0

/**	Feature: access and modification timestamps in stat() results
	have useful contents.
*/
#define	HAVE_FILE_ATIMECTIME		0

/**	Feature: Distinction between text and binary mode for files.
*/
#define	HAVE_FILEMODE_BINARY		0

/**	Feature: Use printf()/scanf() function families.
*/
#define	USE_PRINTF_SCANF		0

/**	Feature: Compatible configuration file search.
*/
#define	HAVE_COMPATDKTOOLS3		0

/**	Function setuid().
*/
#define HAVE_SETUID			0

/**	Function setgid().
*/
#define HAVE_SETGID			0

/**	Function setpgrp().
*/
#define HAVE_SETPGRP			0

/**	Function setsid().
*/
#define HAVE_SETSID			0

/**	Include file sys/resource.h.
*/
#define HAVE_SYS_RESOURCE_H		0

/**	Function getrlimit().
*/
#define HAVE_GETRLIMIT			0

/**	Function set syslog.
*/
#define HAVE_SYSLOG 			0

/**	Include file syslog.h
*/
#define HAVE_SYSLOG_H 			0

/**	Function _read().
*/
#define HAVE__READ 			0

/**	Function _write().
*/
#define HAVE__WRITE 			0

/**	Function read().
*/
#define HAVE_READ 			0

/**	Function write().
*/
#define HAVE_WRITE 			0

/**	Function have_png_get_pixels_per_inch().
*/
#define HAVE_PNG_GET_PIXELS_PER_INCH	0

/**	Header file png.h.
*/
#define HAVE_PNG_H			0

/**	Header file jpeglib.h.
*/
#define HAVE_JPEGLIB_H			0

/**	Header file tiff.h.
*/
#define HAVE_TIFF_H			0

/*
	Backward compatibility section start
*/

#define HAVE_ACOSH 0
#define HAVE_ACOSHL 0
#define HAVE_ACOSL 0
#define HAVE_ASINH 0
#define HAVE_ASINHL 0
#define HAVE_ASINL 0
#define HAVE_ATAN2 0
#define HAVE_ATAN2L 0
#define HAVE_ATANH 0
#define HAVE_ATANHL 0
#define HAVE_ATANL 0
#define HAVE_BACKSLASH 0
#define HAVE_CEIL 0
#define HAVE_CEILL 0
#define HAVE_CHDIR 0
#define HAVE_CLOSEDIR 0
#define HAVE_CONIO_H 0
#define HAVE_CONST 0
#define HAVE_COSHL 0
#define HAVE_COSL 0
#define HAVE_DEV_RANDOM 0
#define HAVE_DEV_URANDOM 0
#define HAVE_DIR_H 0
#define HAVE_ERR_H 0
#define HAVE_EXPL 0
#define HAVE_FABS 0
#define HAVE_FABSL 0
#define HAVE_FCLOSE 0
#define HAVE_FEOF 0
#define HAVE_FERROR 0
#define HAVE_FETESTEXCEPT 0
#define HAVE_FFLUSH 0
#define HAVE_FLOOR 0
#define HAVE_FLOORL 0
#define HAVE_FNCASEINS 0
#define HAVE_FOPEN 0
#define HAVE_FORK 0
#define HAVE_FPCLASSIFY 0
#define HAVE_FREAD 0
#define HAVE_FWRITE 0
#define HAVE_GDBM_H 0
#define HAVE_GETHOSTNAME 0
#define HAVE_GETPEERNAME 0
#define HAVE_GETSOCKNAME 0
#define HAVE_GETUID 0
#define HAVE_IEEE_754_DOUBLE 0
#define HAVE_INODES 0
#define HAVE_LABS 0
#define HAVE_LOCALTIME 0
#define HAVE_LOCALTIME_S 0
#define HAVE_LOGL 0
#define HAVE_LPRNG_H 0
#define HAVE_LSTAT32 0
#define HAVE_MKDIR2 0
#define HAVE_MPCTL 0
#define HAVE_MYSQL_LIBRARY_END 0
#define HAVE_MYSQL_LIBRARY_INIT 0
#define HAVE_MYSQL_MYSQL_H 0
#define	HAVE_MYSQL_H 0
#define HAVE_MYSQL_SET_CHARACTER_SET 0
#define HAVE_OPENDIR 0
#define HAVE_POPEN 0
#define HAVE_PTHREAD_H 0
#define HAVE_READDIR 0
#define HAVE_RFC_2249 0
#define HAVE_RINT 0
#define HAVE_RINTL 0
#define HAVE_SEED48 0
#define HAVE_SHADOW_H 0
#define HAVE_SINHL 0
#define HAVE_SINL 0
#define HAVE_SPRINTF_S 0
#define	HAVE_SQRT 0
#define HAVE_SQRTL 0
#define HAVE_SSCANF_S 0
#define HAVE_STAT 0
#define HAVE_STAT32 0
#define HAVE_STDIO_H 0
#define HAVE_STRCAT 0
#define HAVE_STRCHR 0
#define HAVE_STRCMP 0
#define HAVE_STRCPY 0
#define HAVE_STRDUP 0
#define HAVE_STRLEN 0
#define HAVE_STRNCMP 0
#define HAVE_STRNCPY 0
#define HAVE_STRNCPY_S 0
#define HAVE_STROPTS_H 0
#define HAVE_STRRCHR 0
#define HAVE_STRTOIMAX 0
#define HAVE_STRTOL 0
#define HAVE_STRTOLL 0
#define HAVE_STRTOUL 0
#define HAVE_STRTOULL 0
#define HAVE_STRTOUMAX 0
#define HAVE_SWSCANF_S 0
#define HAVE_SYSCONF 0
#define HAVE_SYSCTL 0
#define HAVE_SYSRES_H 0
#define HAVE_SYS_FILE_H 0
#define HAVE_SYS_STATVFS_H 0
#define HAVE_SYS_STROPTS_H 0
#define HAVE_SYS_SUNDDI_H 0
#define HAVE_SYS_SYSCTL_H 0
#define HAVE_SYS_SYSTEMINFO_H 0
#define HAVE_SYS_TERMIOS_H 0
#define HAVE_SYS_TTOLD_H 0
#define HAVE_SYS_UIO_H 0
#define HAVE_SYS_WAIT_H 0
#define HAVE_TANHL 0
#define HAVE_TANL 0
#define HAVE_TCFLUSH 0
#define HAVE_TCGETATTR 0
#define HAVE_TERMIOS_H 0
#define HAVE_TIME 0
#define HAVE_TWOS_COMPLEMENT 0
#define HAVE_UMASK 0
#define HAVE_USER_NAMES_CASE_INSENSITIVE 0
#define HAVE_VARARGS_H 0
#define HAVE_VARARG_H 0
#define HAVE_WCHAR_T 0
#define HAVE_WCSDUP 0
#define HAVE_WCSNCPY 0
#define HAVE_WCSNCPY_S 0
#define HAVE_WCSTOIMAX 0
#define HAVE_WCSTOL 0
#define HAVE_WCSTOLL 0
#define HAVE_WCSTOUL 0
#define HAVE_WCSTOULL 0
#define HAVE_WCSTOUMAX 0
#define HAVE_WINBASE_H 0
#define HAVE_WINCON_H 0
#define HAVE_WINREG_H 0
#define HAVE__CLEARFP 0
#define HAVE__FCLOSE 0
#define HAVE__FEOF 0
#define HAVE__FERROR 0
#define HAVE__FFLUSH 0
#define HAVE__FOPEN 0
#define HAVE__FREAD 0
#define HAVE__FWRITE 0
#define HAVE__GETENV_S 0
#define HAVE__GETPID 0
#define HAVE__LSTAT 0
#define HAVE__LSTAT32 0
#define HAVE__LSTAT64 0
#define HAVE__POPEN 0
#define HAVE__STAT 0
#define HAVE__STAT32 0
#define HAVE__STAT64 0
#define HAVE__STRDUP 0
#define HAVE__WCSCAT 0
#define HAVE__WCSCHR 0
#define HAVE__WCSCPY 0
#define HAVE__WCSDUP 0
#define HAVE__WCSLEN 0
#define HAVE__WCSNCPY 0
#define HAVE__WCSRCHR 0
#define HAVE__WGETENV 0
#define	HAVE_REPARSE_DATA_BUFFER	0

/*
	Backward compatibility section end
*/


#endif
/* ifndef CONFIG_H_INCLUDED */