-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h.in
4029 lines (2960 loc) · 126 KB
/
config.h.in
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
/* config.h.in. Generated from configure.ac by autoheader. */
#ifndef __CONFIG_H__
#define __CONFIG_H__ 1
/* Witness that <config.h> has been included. */
#define _GL_CONFIG_H_INCLUDED 1
/* Define if building universal (internal helper macro) */
#undef AC_APPLE_UNIVERSAL_BUILD
/* The normal alignment of 'char', in bytes. */
#undef ALIGNOF_CHAR
/* The normal alignment of 'int', in bytes. */
#undef ALIGNOF_INT
/* The normal alignment of 'long', in bytes. */
#undef ALIGNOF_LONG
/* The normal alignment of 'off64_t', in bytes. */
#undef ALIGNOF_OFF64_T
/* The normal alignment of 'off_t', in bytes. */
#undef ALIGNOF_OFF_T
/* The normal alignment of 'short', in bytes. */
#undef ALIGNOF_SHORT
/* Define to the number of bits in type 'ptrdiff_t'. */
#undef BITSIZEOF_PTRDIFF_T
/* Define to the number of bits in type 'sig_atomic_t'. */
#undef BITSIZEOF_SIG_ATOMIC_T
/* Define to the number of bits in type 'size_t'. */
#undef BITSIZEOF_SIZE_T
/* Define to the number of bits in type 'wchar_t'. */
#undef BITSIZEOF_WCHAR_T
/* Define to the number of bits in type 'wint_t'. */
#undef BITSIZEOF_WINT_T
/* Define to 1 if we are ok to link with a library for CFLocaleCopyCurrent */
#undef CFLOCALECOPYCURRENT_OK_TO_LINK
/* Define to 1 if we are ok to link w/a library for CFPreferencesCopyAppValue
*/
#undef CFPREFERENCESCOPYAPPVALUE_OK_TO_LINK
/* Define if you wish *printf() functions that have a safe handling of
non-IEEE-754 'long double' values. */
#undef CHECK_PRINTF_SAFE
/* Define to 1 if chown fails to change ctime when at least one argument was
not -1. */
#undef CHOWN_CHANGE_TIME_BUG
/* Define if chown is not POSIX compliant regarding IDs of -1. */
#undef CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE
/* Define if chown modifies symlinks. */
#undef CHOWN_MODIFIES_SYMLINK
/* Define to 1 if chown mishandles trailing slash. */
#undef CHOWN_TRAILING_SLASH_BUG
/* Define to 1 if the 'closedir' function returns void instead of int. */
#undef CLOSEDIR_VOID
/* Define to 1 if your C++ compiler doesn't accept -c and -o together. */
#undef CXX_NO_MINUS_C_MINUS_O
/* Define to 1 if using 'alloca.c'. */
#undef C_ALLOCA
/* Define as the bit index in the word where to find bit 0 of the exponent of
'double'. */
#undef DBL_EXPBIT0_BIT
/* Define as the word index where to find the exponent of 'double'. */
#undef DBL_EXPBIT0_WORD
/* Define to 1 if // is a file system root distinct from /. */
#undef DOUBLE_SLASH_IS_DISTINCT_ROOT
/* Define to 1 if the package shall run at any location in the file system. */
#undef ENABLE_RELOCATABLE
/* Define to 1 if your platform has fchownat, but it does not reject an empty
file name. */
#undef FCHOWNAT_EMPTY_FILENAME_BUG
/* Define to 1 if your platform has fchownat, but it cannot perform lchown
tasks. */
#undef FCHOWNAT_NOFOLLOW_BUG
/* Define as the bit index in the word where to find bit 0 of the exponent of
'float'. */
#undef FLT_EXPBIT0_BIT
/* Define as the word index where to find the exponent of 'float'. */
#undef FLT_EXPBIT0_WORD
/* Define to 1 if nl_langinfo (YESEXPR) returns a non-empty string. */
#undef FUNC_NL_LANGINFO_YESEXPR_WORKS
/* Define to 1 if realpath() can malloc memory, always gives an absolute path,
and handles trailing slash correctly. */
#undef FUNC_REALPATH_WORKS
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module areadlinkat shall be considered present. */
#undef GNULIB_AREADLINKAT
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module areadlinkat-with-size shall be considered
present. */
#undef GNULIB_AREADLINKAT_WITH_SIZE
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module canonicalize shall be considered present. */
#undef GNULIB_CANONICALIZE
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module canonicalize_file_name shall be considered
present. */
#undef GNULIB_CANONICALIZE_FILE_NAME
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module canonicalize-lgpl shall be considered present. */
#undef GNULIB_CANONICALIZE_LGPL
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module close-stream shall be considered present. */
#undef GNULIB_CLOSE_STREAM
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module dirent-safer shall be considered present. */
#undef GNULIB_DIRENT_SAFER
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module dirname shall be considered present. */
#undef GNULIB_DIRNAME
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module fchmodat shall be considered present. */
#undef GNULIB_FCHMODAT
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module fchownat shall be considered present. */
#undef GNULIB_FCHOWNAT
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module fcntl-safer shall be considered present. */
#undef GNULIB_FCNTL_SAFER
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module fdopendir shall be considered present. */
#undef GNULIB_FDOPENDIR
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module fflush shall be considered present. */
#undef GNULIB_FFLUSH
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module filenamecat shall be considered present. */
#undef GNULIB_FILENAMECAT
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module fscanf shall be considered present. */
#undef GNULIB_FSCANF
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module fstatat shall be considered present. */
#undef GNULIB_FSTATAT
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module nonblocking shall be considered present. */
#undef GNULIB_NONBLOCKING
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module openat shall be considered present. */
#undef GNULIB_OPENAT
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module openat-safer shall be considered present. */
#undef GNULIB_OPENAT_SAFER
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module pipe2-safer shall be considered present. */
#undef GNULIB_PIPE2_SAFER
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module readlinkat shall be considered present. */
#undef GNULIB_READLINKAT
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module realloc-gnu shall be considered present. */
#undef GNULIB_REALLOC_GNU
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module scanf shall be considered present. */
#undef GNULIB_SCANF
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module sigpipe shall be considered present. */
#undef GNULIB_SIGPIPE
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module strerror shall be considered present. */
#undef GNULIB_STRERROR
/* Define to 1 when the gnulib module btowc should be tested. */
#undef GNULIB_TEST_BTOWC
/* Define to 1 when the gnulib module canonicalize should be tested. */
#undef GNULIB_TEST_CANONICALIZE
/* Define to 1 when the gnulib module canonicalize_file_name should be tested.
*/
#undef GNULIB_TEST_CANONICALIZE_FILE_NAME
/* Define to 1 when the gnulib module chdir should be tested. */
#undef GNULIB_TEST_CHDIR
/* Define to 1 when the gnulib module chown should be tested. */
#undef GNULIB_TEST_CHOWN
/* Define to 1 when the gnulib module cloexec should be tested. */
#undef GNULIB_TEST_CLOEXEC
/* Define to 1 when the gnulib module close should be tested. */
#undef GNULIB_TEST_CLOSE
/* Define to 1 when the gnulib module dup should be tested. */
#undef GNULIB_TEST_DUP
/* Define to 1 when the gnulib module dup2 should be tested. */
#undef GNULIB_TEST_DUP2
/* Define to 1 when the gnulib module dup3 should be tested. */
#undef GNULIB_TEST_DUP3
/* Define to 1 when the gnulib module environ should be tested. */
#undef GNULIB_TEST_ENVIRON
/* Define to 1 when the gnulib module fchdir should be tested. */
#undef GNULIB_TEST_FCHDIR
/* Define to 1 when the gnulib module fchmodat should be tested. */
#undef GNULIB_TEST_FCHMODAT
/* Define to 1 when the gnulib module fchownat should be tested. */
#undef GNULIB_TEST_FCHOWNAT
/* Define to 1 when the gnulib module fclose should be tested. */
#undef GNULIB_TEST_FCLOSE
/* Define to 1 when the gnulib module fdopen should be tested. */
#undef GNULIB_TEST_FDOPEN
/* Define to 1 when the gnulib module fdopendir should be tested. */
#undef GNULIB_TEST_FDOPENDIR
/* Define to 1 when the gnulib module fflush should be tested. */
#undef GNULIB_TEST_FFLUSH
/* Define to 1 when the gnulib module fstat should be tested. */
#undef GNULIB_TEST_FSTAT
/* Define to 1 when the gnulib module fstatat should be tested. */
#undef GNULIB_TEST_FSTATAT
/* Define to 1 when the gnulib module ftruncate should be tested. */
#undef GNULIB_TEST_FTRUNCATE
/* Define to 1 when the gnulib module getdelim should be tested. */
#undef GNULIB_TEST_GETDELIM
/* Define to 1 when the gnulib module getline should be tested. */
#undef GNULIB_TEST_GETLINE
/* Define to 1 when the gnulib module getopt-gnu should be tested. */
#undef GNULIB_TEST_GETOPT_GNU
/* Define to 1 when the gnulib module isnan should be tested. */
#undef GNULIB_TEST_ISNAN
/* Define to 1 when the gnulib module isnand should be tested. */
#undef GNULIB_TEST_ISNAND
/* Define to 1 when the gnulib module isnanf should be tested. */
#undef GNULIB_TEST_ISNANF
/* Define to 1 when the gnulib module isnanl should be tested. */
#undef GNULIB_TEST_ISNANL
/* Define to 1 when the gnulib module localeconv should be tested. */
#undef GNULIB_TEST_LOCALECONV
/* Define to 1 when the gnulib module memchr should be tested. */
#undef GNULIB_TEST_MEMCHR
/* Define to 1 when the gnulib module mempcpy should be tested. */
#undef GNULIB_TEST_MEMPCPY
/* Define to 1 when the gnulib module memrchr should be tested. */
#undef GNULIB_TEST_MEMRCHR
/* Define to 1 when the gnulib module mktime should be tested. */
#undef GNULIB_TEST_MKTIME
/* Define to 1 when the gnulib module nonblocking should be tested. */
#undef GNULIB_TEST_NONBLOCKING
/* Define to 1 when the gnulib module obstack-printf should be tested. */
#undef GNULIB_TEST_OBSTACK_PRINTF
/* Define to 1 when the gnulib module obstack-printf-posix should be tested.
*/
#undef GNULIB_TEST_OBSTACK_PRINTF_POSIX
/* Define to 1 when the gnulib module openat should be tested. */
#undef GNULIB_TEST_OPENAT
/* Define to 1 when the gnulib module pipe2 should be tested. */
#undef GNULIB_TEST_PIPE2
/* Define to 1 when the gnulib module poll should be tested. */
#undef GNULIB_TEST_POLL
/* Define to 1 when the gnulib module pread should be tested. */
#undef GNULIB_TEST_PREAD
/* Define to 1 when the gnulib module pwrite should be tested. */
#undef GNULIB_TEST_PWRITE
/* Define to 1 when the gnulib module rawmemchr should be tested. */
#undef GNULIB_TEST_RAWMEMCHR
/* Define to 1 when the gnulib module readlink should be tested. */
#undef GNULIB_TEST_READLINK
/* Define to 1 when the gnulib module readlinkat should be tested. */
#undef GNULIB_TEST_READLINKAT
/* Define to 1 when the gnulib module realloc-posix should be tested. */
#undef GNULIB_TEST_REALLOC_POSIX
/* Define to 1 when the gnulib module realpath should be tested. */
#undef GNULIB_TEST_REALPATH
/* Define to 1 when the gnulib module recv should be tested. */
#undef GNULIB_TEST_RECV
/* Define to 1 when the gnulib module setenv should be tested. */
#undef GNULIB_TEST_SETENV
/* Define to 1 when the gnulib module strchrnul should be tested. */
#undef GNULIB_TEST_STRCHRNUL
/* Define to 1 when the gnulib module strerror should be tested. */
#undef GNULIB_TEST_STRERROR
/* Define to 1 when the gnulib module strerror_r should be tested. */
#undef GNULIB_TEST_STRERROR_R
/* Define to 1 when the gnulib module strndup should be tested. */
#undef GNULIB_TEST_STRNDUP
/* Define to 1 when the gnulib module strnlen should be tested. */
#undef GNULIB_TEST_STRNLEN
/* Define to 1 when the gnulib module strsignal should be tested. */
#undef GNULIB_TEST_STRSIGNAL
/* Define to a C preprocessor expression that evaluates to 1 or 0, depending
whether the gnulib module xreadlinkat shall be considered present. */
#undef GNULIB_XREADLINKAT
/* Define to 1 if 'TIOCGWINSZ' requires <sys/ioctl.h>. */
#undef GWINSZ_IN_SYS_IOCTL
/* Define to 1 if you have the 'accept' function. */
#undef HAVE_ACCEPT
/* Define to 1 if you have the 'addmntent' function. */
#undef HAVE_ADDMNTENT
/* Define to 1 if you have the 'alarm' func */
#undef HAVE_ALARM
/* Define to 1 if you have 'alloca' after including <alloca.h>, a header that
may be supplied by this distribution. */
#undef HAVE_ALLOCA
/* Define to 1 if <alloca.h> works. */
#undef HAVE_ALLOCA_H
/* Define to 1 if you have the <alloc.h> header file. */
#undef HAVE_ALLOC_H
/* Define to 1 if you have the 'areadlinkat' func */
#undef HAVE_AREADLINKAT
/* Define to 1 if you have the 'assert' function. */
#undef HAVE_ASSERT
/* Define to 1 if you have the <assert.h> header file. */
#undef HAVE_ASSERT_H
/* Define to 1 if you have the 'atexit' function. */
#undef HAVE_ATEXIT
/* Define to 1 if you have the 'atoi' function. */
#undef HAVE_ATOI
/* Define to 1 if you have the <bits/libc-lock.h> header file. */
#undef HAVE_BITS_LIBC_LOCK_H
/* Define to 1 if you have the <bp-sym.h> header file. */
#undef HAVE_BP_SYM_H
/* Define to 1 if you have the 'brk' function. */
#undef HAVE_BRK
/* Define to 1 if you have the 'btowc' function. */
#undef HAVE_BTOWC
/* Define to 1 if you have the 'canonicalize_file_name' func */
#undef HAVE_CANONICALIZE_FILE_NAME
/* Define to 1 if you have the 'catclose' function. */
#undef HAVE_CATCLOSE
/* Define to 1 if you have the 'catgets' function. */
#undef HAVE_CATGETS
/* Define to 1 if you have the 'catopen' function. */
#undef HAVE_CATOPEN
/* Define to 1 if you have the <cdefs.h> header file. */
#undef HAVE_CDEFS_H
/* Define to 1 if you have the 'CFBundleCopyLocalizedString' function. */
#undef HAVE_CFBUNDLECOPYLOCALIZEDSTRING
/* Define to 1 if you have the 'CFGetTypeID' function. */
#undef HAVE_CFGETTYPEID
/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the
CoreFoundation framework. */
#undef HAVE_CFLOCALECOPYCURRENT
/* Define to 1 if you have the 'CFLocaleGetIdentifier' function. */
#undef HAVE_CFLOCALEGETIDENTIFIER
/* Define to 1 if the system has the type 'CFLocaleRef'. */
#undef HAVE_CFLOCALEREF
/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
the CoreFoundation framework. */
#undef HAVE_CFPREFERENCESCOPYAPPVALUE
/* Define to 1 if you have the 'CFRelease' function. */
#undef HAVE_CFRELEASE
/* Define to 1 if you have the 'CFStringCreateCopy' function. */
#undef HAVE_CFSTRINGCREATECOPY
/* Define to 1 if you have the 'CFStringCreateMutable' function. */
#undef HAVE_CFSTRINGCREATEMUTABLE
/* Define to 1 if you have the 'CFStringGetCString' function. */
#undef HAVE_CFSTRINGGETCSTRING
/* Define to 1 if you have the 'CFStringGetSystemEncoding' function. */
#undef HAVE_CFSTRINGGETSYSTEMENCODING
/* Define to 1 if you have the 'CFStringGetTypeID' function. */
#undef HAVE_CFSTRINGGETTYPEID
/* Define to 1 if you have the 'CFStringRef' function. */
#undef HAVE_CFSTRINGREF
/* Define to 1 if the system has the type 'CFTypeRef'. */
#undef HAVE_CFTYPEREF
/* Define to 1 if you have the 'chdir' function. */
#undef HAVE_CHDIR
/* Define to 1 if you have the 'chdir_long' function. */
#undef HAVE_CHDIR_LONG
/* Define to 1 if you have the 'chown' func */
#undef HAVE_CHOWN
/* Define to 1 if you have the 'chsize' function. */
#undef HAVE_CHSIZE
/* Define to 1 if you have the 'clearenv' function. */
#undef HAVE_CLEARENV
/* Define to 1 if you have the 'closedir' function. */
#undef HAVE_CLOSEDIR
/* Define to 1 if you have the 'connect' function. */
#undef HAVE_CONNECT
/* Define to 1 if you have the <CoreFoundation/CFLocale.h> header file. */
#undef HAVE_COREFOUNDATION_CFLOCALE_H
/* Define to 1 if you have the <CoreFoundation/CFPreferences.h> header file.
*/
#undef HAVE_COREFOUNDATION_CFPREFERENCES_H
/* Define to 1 if you have the <CoreFoundation/CFString.h> header file. */
#undef HAVE_COREFOUNDATION_CFSTRING_H
/* Define to 1 if you have the <CoreFoundation/CoreFoundation.h> header file.
*/
#undef HAVE_COREFOUNDATION_COREFOUNDATION_H
/* Define to 1 if you have the 'crypt' function. */
#undef HAVE_CRYPT
/* Define to 1 if you have the 'cuserid' function. */
#undef HAVE_CUSERID
/* Define to 1 if you have the declaration of 'alarm', and to 0 if you don't.
*/
#undef HAVE_DECL_ALARM
/* Define to 1 if you have the declaration of 'clearerr_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_CLEARERR_UNLOCKED
/* Define to 1 if you have the declaration of 'cuserid', and to 0 if you
don't. */
#undef HAVE_DECL_CUSERID
/* Define to 1 if you have the declaration of 'exit_failure', and to 0 if you
don't. */
#undef HAVE_DECL_EXIT_FAILURE
/* Define to 1 if you have the declaration of 'fchdir', and to 0 if you don't.
*/
#undef HAVE_DECL_FCHDIR
/* Define to 1 if you have the declaration of 'fdopendir', and to 0 if you
don't. */
#undef HAVE_DECL_FDOPENDIR
/* Define to 1 if you have the declaration of 'feof_unlocked', and to 0 if you
don't. */
#undef HAVE_DECL_FEOF_UNLOCKED
/* Define to 1 if you have the declaration of 'ferror_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_FERROR_UNLOCKED
/* Define to 1 if you have the declaration of 'fflush_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_FFLUSH_UNLOCKED
/* Define to 1 if you have the declaration of 'fgets_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_FGETS_UNLOCKED
/* Define to 1 if you have the declaration of 'forkpty', and to 0 if you
don't. */
#undef HAVE_DECL_FORKPTY
/* Define to 1 if you have the declaration of 'fputc_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_FPUTC_UNLOCKED
/* Define to 1 if you have the declaration of 'fputs_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_FPUTS_UNLOCKED
/* Define to 1 if you have the declaration of 'fread_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_FREAD_UNLOCKED
/* Define to 1 if you have the declaration of 'fwrite_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_FWRITE_UNLOCKED
/* Define to 1 if you have the declaration of 'getchar_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_GETCHAR_UNLOCKED
/* Define to 1 if you have the declaration of 'getc_unlocked', and to 0 if you
don't. */
#undef HAVE_DECL_GETC_UNLOCKED
/* Define to 1 if you have the declaration of 'getdelim', and to 0 if you
don't. */
#undef HAVE_DECL_GETDELIM
/* Define to 1 if you have the declaration of 'getenv', and to 0 if you don't.
*/
#undef HAVE_DECL_GETENV
/* Define to 1 if you have the declaration of 'getline', and to 0 if you
don't. */
#undef HAVE_DECL_GETLINE
/* Define to 1 if you have the declaration of
'kCFPreferencesCurrentApplication', and to 0 if you don't. */
#undef HAVE_DECL_KCFPREFERENCESCURRENTAPPLICATION
/* Define to 1 if you have the declaration of 'kCFStringEncodingASCII', and to
0 if you don't. */
#undef HAVE_DECL_KCFSTRINGENCODINGASCII
/* Define to 1 if you have the declaration of 'memrchr', and to 0 if you
don't. */
#undef HAVE_DECL_MEMRCHR
/* Define to 1 if you have the declaration of 'obstack_printf', and to 0 if
you don't. */
#undef HAVE_DECL_OBSTACK_PRINTF
/* Define to 1 if you have the declaration of 'openpty', and to 0 if you
don't. */
#undef HAVE_DECL_OPENPTY
/* Define to 1 if you have the declaration of 'program_invocation_name', and
to 0 if you don't. */
#undef HAVE_DECL_PROGRAM_INVOCATION_NAME
/* Define to 1 if you have the declaration of 'program_invocation_short_name',
and to 0 if you don't. */
#undef HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
/* Define to 1 if you have the declaration of 'putchar_unlocked', and to 0 if
you don't. */
#undef HAVE_DECL_PUTCHAR_UNLOCKED
/* Define to 1 if you have the declaration of 'putc_unlocked', and to 0 if you
don't. */
#undef HAVE_DECL_PUTC_UNLOCKED
/* Define to 1 if you have the declaration of 'setenv', and to 0 if you don't.
*/
#undef HAVE_DECL_SETENV
/* Define to 1 if you have the declaration of 'strerror_r', and to 0 if you
don't. */
#undef HAVE_DECL_STRERROR_R
/* Define to 1 if you have the declaration of 'strndup', and to 0 if you
don't. */
#undef HAVE_DECL_STRNDUP
/* Define to 1 if you have the declaration of 'strnlen', and to 0 if you
don't. */
#undef HAVE_DECL_STRNLEN
/* Define to 1 if you have the declaration of 'strsignal', and to 0 if you
don't. */
#undef HAVE_DECL_STRSIGNAL
/* Define to 1 if you have the declaration of 'sys_siglist', and to 0 if you
don't. */
#undef HAVE_DECL_SYS_SIGLIST
/* Define to 1 if you have the declaration of 'tzname', and to 0 if you don't.
*/
#undef HAVE_DECL_TZNAME
/* Define to 1 if you have the declaration of 'wctob', and to 0 if you don't.
*/
#undef HAVE_DECL_WCTOB
/* Define to 1 if you have the declaration of '_snprintf', and to 0 if you
don't. */
#undef HAVE_DECL__SNPRINTF
/* Define to 1 if you have the declaration of '_STAT_VER', and to 0 if you
don't. */
#undef HAVE_DECL__STAT_VER
/* Define to 1 if you have the declaration of '_sys_siglist', and to 0 if you
don't. */
#undef HAVE_DECL__SYS_SIGLIST
/* Define to 1 if you have the declaration of '__fpending', and to 0 if you
don't. */
#undef HAVE_DECL___FPENDING
/* Define to 1 if the system has the type 'dev_t'. */
#undef HAVE_DEV_T
/* Define if you have the <dirent.h> header. */
#undef HAVE_DIRENT_H
/* Define to 1 if you have the 'dladdr' function. */
#undef HAVE_DLADDR
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if the system has the type 'Dl_info'. */
#undef HAVE_DL_INFO
/* Define to 1 if you don't have 'vprintf' but do have '_doprnt.' */
#undef HAVE_DOPRNT
/* Define to 1 if you have the 'dup2' function. */
#undef HAVE_DUP2
/* Define to 1 if you have the 'dup3' func */
#undef HAVE_DUP3
/* Define to 1 if you have the 'dupfd' function. */
#undef HAVE_DUPFD
/* Define to 1 if you have the 'dysize' function. */
#undef HAVE_DYSIZE
/* Define to 1 if you have the 'ecvt' function. */
#undef HAVE_ECVT
/* Define to 1 if you have the 'end' function. */
#undef HAVE_END
/* Define to 1 if you have the 'endfsent' function. */
#undef HAVE_ENDFSENT
/* Define to 1 if you have the 'endmntent' function. */
#undef HAVE_ENDMNTENT
/* Define if you have the declaration of environ. */
#undef HAVE_ENVIRON_DECL
/* Define to 1 if you have the 'execve' function. */
#undef HAVE_EXECVE
/* Defined if fallocate() exists */
#undef HAVE_FALLOCATE
/* Define to 1 if you have the 'fchdir' function. */
#undef HAVE_FCHDIR
/* Define to 1 if you have the 'fchmodat' func */
#undef HAVE_FCHMODAT
/* Define to 1 if you have the 'fchown' func */
#undef HAVE_FCHOWN
/* Define to 1 if you have the 'fclose' function. */
#undef HAVE_FCLOSE
/* Define to 1 if you have the 'fcloseall' function. */
#undef HAVE_FCLOSEALL
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define to 1 if you have the 'fcvt' function. */
#undef HAVE_FCVT
/* Define to 1 if you have the 'fdopendir' func */
#undef HAVE_FDOPENDIR
/* Define if you have the <features.h> header. */
#undef HAVE_FEATURES_H
/* Define to 1 if you have the 'fflush' function. */
#undef HAVE_FFLUSH
/* Define to 1 if you have the 'fgets' function. */
#undef HAVE_FGETS
/* Define to 1 if you have the <float.h> header file. */
#undef HAVE_FLOAT_H
/* Define to 1 if you have the 'flockfile' func */
#undef HAVE_FLOCKFILE
/* Define to 1 if you have the 'fork' func */
#undef HAVE_FORK
/* Define to 1 if you have the 'fpathconf' func */
#undef HAVE_FPATHCONF
/* Define to 1 if you have the 'fpending' function. */
#undef HAVE_FPENDING
/* Define to 1 if you have the 'fpurge' function. */
#undef HAVE_FPURGE
/* Define to 1 if you have the 'freemntlist' function. */
#undef HAVE_FREEMNTLIST
/* Define if the frexpl function is available in libc. */
#undef HAVE_FREXPL_IN_LIBC
/* Define if the frexp function is available in libc. */
#undef HAVE_FREXP_IN_LIBC
/* Define to 1 if fseeko (and ftello) are declared in stdio.h. */
#undef HAVE_FSEEKO
/* Define to 1 if you have the <fshelp.h> header file. */
#undef HAVE_FSHELP_H
/* Define to 1 if you have the <fstab.h> header file. */
#undef HAVE_FSTAB_H
/* Define to 1 if you have the 'fstat64' function. */
#undef HAVE_FSTAT64
/* Define to 1 if you have the 'fstatat' func */
#undef HAVE_FSTATAT
/* Define to 1 if you have the 'fstatfs' func */
#undef HAVE_FSTATFS
/* Define to 1 if you have the 'fstatfs64' function. */
#undef HAVE_FSTATFS64
/* Define to 1 if you have the <fs_info.h> header file. */
#undef HAVE_FS_INFO_H
/* Define to 1 if you have the 'fs_stat_dev' function. */
#undef HAVE_FS_STAT_DEV
/* Define to 1 if you have the 'ftok' function. */
#undef HAVE_FTOK
/* Define to 1 if you have the 'ftruncate' function. */
#undef HAVE_FTRUNCATE
/* Define to 1 if you have the 'ftruncate64' function. */
#undef HAVE_FTRUNCATE64
/* Define to 1 if you have the 'fts_children' function. */
#undef HAVE_FTS_CHILDREN
/* Define to 1 if you have the 'fts_close' function. */
#undef HAVE_FTS_CLOSE
/* Define to 1 if you have the <fts.h> header file. */
#undef HAVE_FTS_H
/* Define to 1 if you have the 'fts_open' function. */
#undef HAVE_FTS_OPEN
/* Define to 1 if you have the 'fts_read' function. */
#undef HAVE_FTS_READ
/* Define to 1 if you have the <ftw.h> header file. */
#undef HAVE_FTW_H
/* Define to 1 if you have the 'funlockfile' func */
#undef HAVE_FUNLOCKFILE
/* Define to 1 if you have the 'fxstat64' function. */
#undef HAVE_FXSTAT64
/* Define to 1 if you have the 'gcvt' function. */
#undef HAVE_GCVT
/* Define to 1 if you have the 'gencat' function. */
#undef HAVE_GENCAT
/* Define to 1 if you have the 'getcwd' function. */
#undef HAVE_GETCWD
/* Define to 1 if you have the 'getdelim' function. */
#undef HAVE_GETDELIM
/* Define to 1 if you have the 'GetDriveType' function. */
#undef HAVE_GETDRIVETYPE
/* Define to 1 if you have the 'getfsent' function. */
#undef HAVE_GETFSENT
/* Define to 1 if you have the 'getfsfile' function. */
#undef HAVE_GETFSFILE
/* Define to 1 if you have the 'getfsspec' function. */
#undef HAVE_GETFSSPEC
/* Define to 1 if you have the 'getmntent' function. */
#undef HAVE_GETMNTENT
/* Define to 1 if you have the 'getmntinfo' function. */
#undef HAVE_GETMNTINFO
/* Define to 1 if you have the <getopt.h> header file. */
#undef HAVE_GETOPT_H
/* Define to 1 if you have the 'getopt_long_only' function. */
#undef HAVE_GETOPT_LONG_ONLY
/* Define to 1 if you have the 'getpagesize' function. */
#undef HAVE_GETPAGESIZE
/* Define to 1 if you have the 'getrlimit' function. */
#undef HAVE_GETRLIMIT
/* Define to 1 if you have the 'gettext' function. */
#undef HAVE_GETTEXT
/* Define to 1 if you have the 'getvfsbytype' function. */
#undef HAVE_GETVFSBYTYPE
/* Define to 1 if you have the <gnu-versions.h> header file. */
#undef HAVE_GNU_VERSIONS_H
/* Define to 1 if you have the 'hasmntopt' function. */
#undef HAVE_HASMNTOPT
/* Define to 1 if you have the 'htonl' function. */
#undef HAVE_HTONL
/* Define to 1 if you have the 'htons' function. */
#undef HAVE_HTONS
/* Define to 1 if you have the <iconv.h> header file. */
#undef HAVE_ICONV_H
/* Define to 1 if the compiler supports one of the keywords 'inline',
'__inline__', '__inline' and effectively inlines functions marked as such.
*/
#undef HAVE_INLINE
/* Define to 1 if the system has the type 'ino_t'. */
#undef HAVE_INO_T
/* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
#undef HAVE_INTMAX_T
/* Define if you have the <inttypes.h> header. */
#undef HAVE_INTTYPES_H
/* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
declares uintmax_t. */
#undef HAVE_INTTYPES_H_WITH_UINTMAX
/* Define to 1 if you have the 'ioctl' function. */
#undef HAVE_IOCTL
/* Define to 1 if you have the <iostream.h> header file. */
#undef HAVE_IOSTREAM_H
/* Define to 1 if you have the <io.h> header file. */
#undef HAVE_IO_H
/* Define if the isnan(double) function is available in libc. */
#undef HAVE_ISNAND_IN_LIBC
/* Define if the isnan(float) function is available in libc. */
#undef HAVE_ISNANF_IN_LIBC
/* Define if the isnan(long double) function is available in libc. */
#undef HAVE_ISNANL_IN_LIBC
/* Define to 1 if you have the 'iswprint' function. */
#undef HAVE_ISWPRINT
/* Define to 1 if you have the 'kevent' function. */
#undef HAVE_KEVENT
/* Define to 1 if you have the 'kevent64' function. */
#undef HAVE_KEVENT64
/* Define to 1 if you have the 'KextManagerLoadKextWithURL' function. */
#undef HAVE_KEXTMANAGERLOADKEXTWITHURL
/* Define to 1 if the system has the type 'key_t'. */
#undef HAVE_KEY_T
/* Define to 1 if you have the 'kqueue' function. */
#undef HAVE_KQUEUE
/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
#undef HAVE_LANGINFO_CODESET
/* Define if you have the <langinfo.h> header. */
#undef HAVE_LANGINFO_H
/* Define to 1 if you have the 'lchmod' func */
#undef HAVE_LCHMOD
/* Define to 1 if you have the <lcrypt.h> header file. */
#undef HAVE_LCRYPT_H
/* Define if your <locale.h> file defines LC_MESSAGES. */
#undef HAVE_LC_MESSAGES