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
|
/* mk/config.h. Generated automatically by configure. */
/* mk/config.h.in. Generated automatically from configure.in by autoheader. */
/* acconfig.h
Descriptive text for the C preprocessor macros that
the fptools configuration script can define.
The current version may not use all of them; autoheader copies the ones
your configure.in uses into your configuration header file templates.
The entries are in sort -df order: alphabetical, case insensitive,
ignoring punctuation (such as underscores). Although this order
can split up related entries, it makes it easier to check whether
a given entry is in the file.
Leave the following blank line there!! Autoheader needs it. */
/* Define to alignment constraint on chars */
#define ALIGNMENT_CHAR 1
/* Define to alignment constraint on doubles */
#define ALIGNMENT_DOUBLE 4
/* Define to alignment constraint on floats */
#define ALIGNMENT_FLOAT 4
/* Define to alignment constraint on ints */
#define ALIGNMENT_INT 4
/* Define to alignment constraint on longs */
#define ALIGNMENT_LONG 4
/* Define to alignment constraint on long longs */
#define ALIGNMENT_LONG_LONG 4
/* Define to alignment constraint on shorts */
#define ALIGNMENT_SHORT 2
/* Define to alignment constraint on unsigned chars */
#define ALIGNMENT_UNSIGNED_CHAR 1
/* Define to alignment constraint on unsigned ints */
#define ALIGNMENT_UNSIGNED_INT 4
/* Define to alignment constraint on unsigned longs */
#define ALIGNMENT_UNSIGNED_LONG 4
/* Define to alignment constraint on unsigned long longs */
#define ALIGNMENT_UNSIGNED_LONG_LONG 4
/* Define to alignment constraint on unsigned shorts */
#define ALIGNMENT_UNSIGNED_SHORT 2
/* Define to alignment constraint on void pointers */
#define ALIGNMENT_VOID_P 4
/* The value of E2BIG. */
#define CCONST_E2BIG 7
/* The value of EACCES. */
#define CCONST_EACCES 13
/* The value of EADDRINUSE. */
#define CCONST_EADDRINUSE 98
/* The value of EADDRNOTAVAIL. */
#define CCONST_EADDRNOTAVAIL 99
/* The value of EADV. */
#define CCONST_EADV 68
/* The value of EAFNOSUPPORT. */
#define CCONST_EAFNOSUPPORT 97
/* The value of EAGAIN. */
#define CCONST_EAGAIN 11
/* The value of EALREADY. */
#define CCONST_EALREADY 114
/* The value of EBADF. */
#define CCONST_EBADF 9
/* The value of EBADMSG. */
#define CCONST_EBADMSG 74
/* The value of EBADRPC. */
#define CCONST_EBADRPC -1
/* The value of EBUSY. */
#define CCONST_EBUSY 16
/* The value of ECHILD. */
#define CCONST_ECHILD 10
/* The value of ECOMM. */
#define CCONST_ECOMM 70
/* The value of ECONNABORTED. */
#define CCONST_ECONNABORTED 103
/* The value of ECONNREFUSED. */
#define CCONST_ECONNREFUSED 111
/* The value of ECONNRESET. */
#define CCONST_ECONNRESET 104
/* The value of EDEADLK. */
#define CCONST_EDEADLK 35
/* The value of EDESTADDRREQ. */
#define CCONST_EDESTADDRREQ 89
/* The value of EDIRTY. */
#define CCONST_EDIRTY -1
/* The value of EDOM. */
#define CCONST_EDOM 33
/* The value of EDQUOT. */
#define CCONST_EDQUOT 122
/* The value of EEXIST. */
#define CCONST_EEXIST 17
/* The value of EFAULT. */
#define CCONST_EFAULT 14
/* The value of EFBIG. */
#define CCONST_EFBIG 27
/* The value of EFTYPE. */
#define CCONST_EFTYPE -1
/* The value of EHOSTDOWN. */
#define CCONST_EHOSTDOWN 112
/* The value of EHOSTUNREACH. */
#define CCONST_EHOSTUNREACH 113
/* The value of EIDRM. */
#define CCONST_EIDRM 43
/* The value of EILSEQ. */
#define CCONST_EILSEQ 84
/* The value of EINPROGRESS. */
#define CCONST_EINPROGRESS 115
/* The value of EINTR. */
#define CCONST_EINTR 4
/* The value of EINVAL. */
#define CCONST_EINVAL 22
/* The value of EIO. */
#define CCONST_EIO 5
/* The value of EISCONN. */
#define CCONST_EISCONN 106
/* The value of EISDIR. */
#define CCONST_EISDIR 21
/* The value of ELOOP. */
#define CCONST_ELOOP 40
/* The value of EMFILE. */
#define CCONST_EMFILE 24
/* The value of EMLINK. */
#define CCONST_EMLINK 31
/* The value of EMSGSIZE. */
#define CCONST_EMSGSIZE 90
/* The value of EMULTIHOP. */
#define CCONST_EMULTIHOP 72
/* The value of ENAMETOOLONG. */
#define CCONST_ENAMETOOLONG 36
/* The value of ENETDOWN. */
#define CCONST_ENETDOWN 100
/* The value of ENETRESET. */
#define CCONST_ENETRESET 102
/* The value of ENETUNREACH. */
#define CCONST_ENETUNREACH 101
/* The value of ENFILE. */
#define CCONST_ENFILE 23
/* The value of ENOBUFS. */
#define CCONST_ENOBUFS 105
/* The value of ENODATA. */
#define CCONST_ENODATA 61
/* The value of ENODEV. */
#define CCONST_ENODEV 19
/* The value of ENOENT. */
#define CCONST_ENOENT 2
/* The value of ENOEXEC. */
#define CCONST_ENOEXEC 8
/* The value of ENOLCK. */
#define CCONST_ENOLCK 37
/* The value of ENOLINK. */
#define CCONST_ENOLINK 67
/* The value of ENOMEM. */
#define CCONST_ENOMEM 12
/* The value of ENOMSG. */
#define CCONST_ENOMSG 42
/* The value of ENONET. */
#define CCONST_ENONET 64
/* The value of ENOPROTOOPT. */
#define CCONST_ENOPROTOOPT 92
/* The value of ENOSPC. */
#define CCONST_ENOSPC 28
/* The value of ENOSR. */
#define CCONST_ENOSR 63
/* The value of ENOSTR. */
#define CCONST_ENOSTR 60
/* The value of ENOSYS. */
#define CCONST_ENOSYS 38
/* The value of ENOTBLK. */
#define CCONST_ENOTBLK 15
/* The value of ENOTCONN. */
#define CCONST_ENOTCONN 107
/* The value of ENOTDIR. */
#define CCONST_ENOTDIR 20
/* The value of ENOTEMPTY. */
#define CCONST_ENOTEMPTY 39
/* The value of ENOTSOCK. */
#define CCONST_ENOTSOCK 88
/* The value of ENOTTY. */
#define CCONST_ENOTTY 25
/* The value of ENXIO. */
#define CCONST_ENXIO 6
/* The value of EOPNOTSUPP. */
#define CCONST_EOPNOTSUPP 95
/* The value of EPERM. */
#define CCONST_EPERM 1
/* The value of EPFNOSUPPORT. */
#define CCONST_EPFNOSUPPORT 96
/* The value of EPIPE. */
#define CCONST_EPIPE 32
/* The value of EPROCLIM. */
#define CCONST_EPROCLIM -1
/* The value of EPROCUNAVAIL. */
#define CCONST_EPROCUNAVAIL -1
/* The value of EPROGMISMATCH. */
#define CCONST_EPROGMISMATCH -1
/* The value of EPROGUNAVAIL. */
#define CCONST_EPROGUNAVAIL -1
/* The value of EPROTO. */
#define CCONST_EPROTO 71
/* The value of EPROTONOSUPPORT. */
#define CCONST_EPROTONOSUPPORT 93
/* The value of EPROTOTYPE. */
#define CCONST_EPROTOTYPE 91
/* The value of ERANGE. */
#define CCONST_ERANGE 34
/* The value of EREMCHG. */
#define CCONST_EREMCHG 78
/* The value of EREMOTE. */
#define CCONST_EREMOTE 66
/* The value of EROFS. */
#define CCONST_EROFS 30
/* The value of ERPCMISMATCH. */
#define CCONST_ERPCMISMATCH -1
/* The value of ERREMOTE. */
#define CCONST_ERREMOTE -1
/* The value of ESHUTDOWN. */
#define CCONST_ESHUTDOWN 108
/* The value of ESOCKTNOSUPPORT. */
#define CCONST_ESOCKTNOSUPPORT 94
/* The value of ESPIPE. */
#define CCONST_ESPIPE 29
/* The value of ESRCH. */
#define CCONST_ESRCH 3
/* The value of ESRMNT. */
#define CCONST_ESRMNT 69
/* The value of ESTALE. */
#define CCONST_ESTALE 116
/* The value of ETIME. */
#define CCONST_ETIME 62
/* The value of ETIMEDOUT. */
#define CCONST_ETIMEDOUT 110
/* The value of ETOOMANYREFS. */
#define CCONST_ETOOMANYREFS 109
/* The value of ETXTBSY. */
#define CCONST_ETXTBSY 26
/* The value of EUSERS. */
#define CCONST_EUSERS 87
/* The value of EWOULDBLOCK. */
#define CCONST_EWOULDBLOCK 11
/* The value of EXDEV. */
#define CCONST_EXDEV 18
/* Define if time.h or sys/time.h define the altzone variable */
/* #undef HAVE_ALTZONE */
/* Define if you have /bin/sh */
#define HAVE_BIN_SH 1
/* Define if the HaskellSupport.framework is installed (Mac OS X only) */
/* #undef HAVE_FRAMEWORK_HASKELLSUPPORT */
/* Define if gcc supports -mno-omit-leaf-frame-pointer */
#define HAVE_GCC_MNO_OMIT_LFPTR 1
/* Define if you have the GetModuleFileName function. */
/* #undef HAVE_GETMODULEFILENAME */
/* Define if in_addr_t is available */
#define HAVE_IN_ADDR_T 1
/* Define if you need -ldl to get dlopen() */
#define HAVE_LIBDL 1
/* Define if you have the mingwex library. */
/* #undef HAVE_MINGWEX */
/* Define if struct msghdr contains msg_accrights field */
/* #undef HAVE_MSGHDR_MSG_ACCRIGHTS */
/* Define if struct msghdr contains msg_control field */
#define HAVE_MSGHDR_MSG_CONTROL 1
/* Define if RTLD_GLOBAL is available */
#define HAVE_RTLDGLOBAL 1
/* Define if RTLD_LOCAL is available */
#define HAVE_RTLDLOCAL 1
/* Define if we can see RTLD_NEXT in dlfcn.h */
/* #undef HAVE_RTLDNEXT */
/* Define if we can see RTLD_NOW in dlfcn.h */
#define HAVE_RTLDNOW 1
/* Define if usleep returns void */
/* #undef USLEEP_RETURNS_VOID */
/* Define if it looks like a Linux sendfile(2) implementation */
#define HAVE_LINUX_SENDFILE 1
/* Define if it looks like a BSDish sendfile(2) implementation */
/* #undef HAVE_BSD_SENDFILE */
/* Define if C compiler supports long long types */
#define HAVE_LONG_LONG 1
/* Define if fcntl.h defines O_BINARY */
/* #undef HAVE_O_BINARY */
/* Define if compiler supports prototypes. */
#define HAVE_PROTOTYPES 1
/* Define if readline/readline.h and readline/history.h exist */
#define HAVE_READLINE_HEADERS 1
/* Define if readline plus any additional libs needed for it exist */
#define HAVE_READLINE_LIBS 1
/* Define if readline has version >= 4.0. */
#define HAVE_READLINE_4 1
/* Define if readline has version >= 4.2. */
#define HAVE_READLINE_4_2 1
/* Define if <unistd.h> defines _SC_GETGR_R_SIZE_MAX */
/* #undef HAVE_SC_GETGR_R_SIZE_MAX */
/* Define if <unistd.h> defines _SC_GETPW_R_SIZE_MAX */
/* #undef HAVE_SC_GETPW_R_SIZE_MAX */
/* Define if you have the sigpoll() function */
#define HAVE_SIGPOLL 1
/* Define if time.h or sys/time.h define the timezone variable */
#define HAVE_TIMEZONE 1
/* Define if you support the production (and use) of Win32 DLLs. */
/* #undef HAVE_WIN32_DLL_SUPPORT */
/* Define if you have the WinExec function. */
/* #undef HAVE_WINEXEC */
/* Define to Haskell type for blkcnt_t */
#define HTYPE_BLKCNT_T Int32
/* Define to Haskell type for cc_t */
#define HTYPE_CC_T Word8
/* Define to Haskell type for char */
#define HTYPE_CHAR Int8
/* Define to Haskell type for clock_t */
#define HTYPE_CLOCK_T Int32
/* Define to Haskell type for dev_t */
#define HTYPE_DEV_T Word64
/* Define to Haskell type for signed double */
#define HTYPE_DOUBLE Double
/* Define to Haskell type for float */
#define HTYPE_FLOAT Float
/* Define to Haskell type for gid_t */
#define HTYPE_GID_T Word32
/* Define to Haskell type for GLbitfield */
/* #undef HTYPE_GLBITFIELD */
/* Define to Haskell type for GLboolean */
/* #undef HTYPE_GLBOOLEAN */
/* Define to Haskell type for GLbyte */
/* #undef HTYPE_GLBYTE */
/* Define to Haskell type for GLclampd */
/* #undef HTYPE_GLCLAMPD */
/* Define to Haskell type for GLclampf */
/* #undef HTYPE_GLCLAMPF */
/* Define to Haskell type for GLdouble */
/* #undef HTYPE_GLDOUBLE */
/* Define to Haskell type for GLenum */
/* #undef HTYPE_GLENUM */
/* Define to Haskell type for GLfloat */
/* #undef HTYPE_GLFLOAT */
/* Define to Haskell type for GLint */
/* #undef HTYPE_GLINT */
/* Define to Haskell type for GLshort */
/* #undef HTYPE_GLSHORT */
/* Define to Haskell type for GLsizei */
/* #undef HTYPE_GLSIZEI */
/* Define to Haskell type for GLubyte */
/* #undef HTYPE_GLUBYTE */
/* Define to Haskell type for GLuint */
/* #undef HTYPE_GLUINT */
/* Define to Haskell type for GLushort */
/* #undef HTYPE_GLUSHORT */
/* Define to Haskell type for int */
#define HTYPE_INT Int32
/* Define to Haskell type for ino_t */
#define HTYPE_INO_T Word32
/* Define to Haskell type for long */
#define HTYPE_LONG Int32
/* Define to Haskell type for long long */
#define HTYPE_LONG_LONG Int64
/* Define to Haskell type for mode_t */
#define HTYPE_MODE_T Word32
/* Define to Haskell type for nlink_t */
#define HTYPE_NLINK_T Word32
/* Define to Haskell type for off_t */
#define HTYPE_OFF_T Int32
/* Define to Haskell type for pid_t */
#define HTYPE_PID_T Int32
/* Define to Haskell type for ptrdiff_t */
#define HTYPE_PTRDIFF_T Int32
/* Define to Haskell type for short */
#define HTYPE_SHORT Int16
/* Define to Haskell type for sig_atomic_t */
#define HTYPE_SIG_ATOMIC_T Int32
/* Define to Haskell type for signed char */
#define HTYPE_SIGNED_CHAR Int8
/* Define to Haskell type for size_t */
#define HTYPE_SIZE_T Word32
/* Define to Haskell type for speed_t */
#define HTYPE_SPEED_T Word32
/* Define to Haskell type for ssize_t */
#define HTYPE_SSIZE_T Int32
/* Define to Haskell type for time_t */
#define HTYPE_TIME_T Int32
/* Define to Haskell type for tcflag_t */
#define HTYPE_TCFLAG_T Word32
/* Define to Haskell type for uid_t */
#define HTYPE_UID_T Word32
/* Define to Haskell type for unsigned char */
#define HTYPE_UNSIGNED_CHAR Word8
/* Define to Haskell type for unsigned int */
#define HTYPE_UNSIGNED_INT Word32
/* Define to Haskell type for unsigned long */
#define HTYPE_UNSIGNED_LONG Word32
/* Define to Haskell type for unsigned long long */
#define HTYPE_UNSIGNED_LONG_LONG Word64
/* Define to Haskell type for unsigned short */
#define HTYPE_UNSIGNED_SHORT Word16
/* Define to Haskell type for wchar_t */
#define HTYPE_WCHAR_T Int32
/* Define if C Symbols have a leading underscore added by the compiler */
/* #undef LEADING_UNDERSCORE */
/* Define to the type of the timezone variable (usually long or time_t) */
#define TYPE_TIMEZONE time_t
/* Define if signal handlers have type void (*)(int)
* (Otherwise, they're assumed to have type int (*)(void).)
*/
#define VOID_INT_SIGNALS 1
/* Leave that blank line there!! Autoheader needs it.
If you're adding to this file, keep in mind:
The entries are in sort -df order: alphabetical, case insensitive,
ignoring punctuation (such as underscores). */
/* autoheader doesn't grok AC_CHECK_LIB_NOWARN so we have to add them
manually. */
/* 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 CRAY_STACKSEG_END */
/* Define if using `alloca.c'. */
/* #undef C_ALLOCA */
/* Define if you have the `access' function. */
#define HAVE_ACCESS 1
/* Define if you have `alloca', as a function or macro. */
#define HAVE_ALLOCA 1
/* Define if you have <alloca.h> and it should be used (not on Ultrix). */
#define HAVE_ALLOCA_H 1
/* Define if you have the <arpa/inet.h> header file. */
#define HAVE_ARPA_INET_H 1
/* Define if you have the <assert.h> header file. */
#define HAVE_ASSERT_H 1
/* Define if you have the <bfd.h> header file. */
#define HAVE_BFD_H 1
/* Define if you have the <conio.h> header file. */
/* #undef HAVE_CONIO_H */
/* Define if you have the <console.h> header file. */
/* #undef HAVE_CONSOLE_H */
/* Define if you have the <ctype.h> header file. */
#define HAVE_CTYPE_H 1
/* Define if you have the <dirent.h> header file. */
#define HAVE_DIRENT_H 1
/* Define if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1
/* Define if you have the `dlopen' function. */
#define HAVE_DLOPEN 1
/* Define if you have the <dl.h> header file. */
/* #undef HAVE_DL_H */
/* Define if you have the <dos.h> header file. */
/* #undef HAVE_DOS_H */
/* Define if you have the <errno.h> header file. */
#define HAVE_ERRNO_H 1
/* Define if you have the `farcalloc' function. */
/* #undef HAVE_FARCALLOC */
/* Define if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define if you have the `fgetpos' function. */
#define HAVE_FGETPOS 1
/* Define if you have the <Files.h> header file. */
/* #undef HAVE_FILES_H */
/* Define if you have the <float.h> header file. */
#define HAVE_FLOAT_H 1
/* Define if you have the `fseek' function. */
#define HAVE_FSEEK 1
/* Define if you have the `fsetpos' function. */
#define HAVE_FSETPOS 1
/* Define if you have the `ftell' function. */
#define HAVE_FTELL 1
/* Define if you have the `ftime' function. */
#define HAVE_FTIME 1
/* Define if you have the <ftw.h> header file. */
#define HAVE_FTW_H 1
/* Define if you have the `getclock' function. */
/* #undef HAVE_GETCLOCK */
/* Define if you have the `getgrgid_r' function. */
#define HAVE_GETGRGID_R 1
/* Define if you have the `getgrnam_r' function. */
#define HAVE_GETGRNAM_R 1
/* Define if you have the `getpagesize' function. */
#define HAVE_GETPAGESIZE 1
/* Define if you have the `getpwnam_r' function. */
#define HAVE_GETPWNAM_R 1
/* Define if you have the `getpwuid_r' function. */
#define HAVE_GETPWUID_R 1
/* Define if you have the `getrusage' function. */
#define HAVE_GETRUSAGE 1
/* Define if you have the `gettimeofday' function. */
#define HAVE_GETTIMEOFDAY 1
/* Define if you have the <GL/gl.h> header file. */
#define HAVE_GL_GL_H 1
/* Define if you have the `gmtime_r' function. */
#define HAVE_GMTIME_R 1
/* Define if you have the <grp.h> header file. */
#define HAVE_GRP_H 1
/* Define if you have the <ieee754.h> header file. */
#define HAVE_IEEE754_H 1
/* Define if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define if you have the <io.h> header file. */
/* #undef HAVE_IO_H */
/* Define if you have the `lchown' function. */
#define HAVE_LCHOWN 1
/* Define if you have the `bfd' library (-lbfd). */
#define HAVE_LIBBFD 1
/* Define if you have the `iberty' library (-liberty). */
#define HAVE_LIBIBERTY 1
/* Define if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1
/* Define if you have the `localtime_r' function. */
#define HAVE_LOCALTIME_R 1
/* Define if you have the `lstat' function. */
#define HAVE_LSTAT 1
/* Define if you have the `macsystem' function. */
/* #undef HAVE_MACSYSTEM */
/* Define if you have the <malloc.h> header file. */
#define HAVE_MALLOC_H 1
/* Define if you have the <memory.h> header file. */
#define HAVE_MEMORY_H 1
/* Define if you have the `mktime' function. */
#define HAVE_MKTIME 1
/* Define if you have the `mprotect' function. */
#define HAVE_MPROTECT 1
/* Define if you have the <netdb.h> header file. */
#define HAVE_NETDB_H 1
/* Define if you have the <netinet/in.h> header file. */
#define HAVE_NETINET_IN_H 1
/* Define if you have the <netinet/tcp.h> header file. */
#define HAVE_NETINET_TCP_H 1
/* Define if you have the <nlist.h> header file. */
/* #undef HAVE_NLIST_H */
/* Define if you have the <pascal.h> header file. */
/* #undef HAVE_PASCAL_H */
/* Define if you have the `PBHSetVolSync' function. */
/* #undef HAVE_PBHSETVOLSYNC */
/* Define if you have the `pclose' function. */
#define HAVE_PCLOSE 1
/* Define if you have the `popen' function. */
#define HAVE_POPEN 1
/* Define if you have the <pthread.h> header file. */
#define HAVE_PTHREAD_H 1
/* Define if you have the <pwd.h> header file. */
#define HAVE_PWD_H 1
/* Define if you have the `readdir_r' function. */
#define HAVE_READDIR_R 1
/* Define if you have the `readlink' function. */
#define HAVE_READLINK 1
/* Define if you have the `realpath' function. */
#define HAVE_REALPATH 1
/* Define if you have the `setitimer' function. */
#define HAVE_SETITIMER 1
/* Define if you have the <sgtty.h> header file. */
#define HAVE_SGTTY_H 1
/* Define if you have the <siginfo.h> header file. */
/* #undef HAVE_SIGINFO_H */
/* Define if you have the <signal.h> header file. */
#define HAVE_SIGNAL_H 1
/* Define if you have the `snprintf' function. */
#define HAVE_SNPRINTF 1
/* Define if you have the `stat' function. */
#define HAVE_STAT 1
/* Define if you have the <stat.h> header file. */
/* #undef HAVE_STAT_H */
/* Define if you have the <stdarg.h> header file. */
#define HAVE_STDARG_H 1
/* Define if you have the <stddef.h> header file. */
#define HAVE_STDDEF_H 1
/* Define if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
/* Define if you have the <stdlib.h> header file. */
#define HAVE_STDLIB_H 1
/* Define if you have the <std.h> header file. */
/* #undef HAVE_STD_H */
/* Define if you have the `strcasecmp' function. */
#define HAVE_STRCASECMP 1
/* Define if you have the `strcmp' function. */
#define HAVE_STRCMP 1
/* Define if you have the `strcmpi' function. */
/* #undef HAVE_STRCMPI */
/* Define if you have the `stricmp' function. */
/* #undef HAVE_STRICMP */
/* Define if you have the <strings.h> header file. */
/* #undef HAVE_STRINGS_H */
/* Define if you have the <string.h> header file. */
#define HAVE_STRING_H 1
/* Define if `st_blksize' is member of `struct stat'. */
/* #undef HAVE_STRUCT_STAT_ST_BLKSIZE */
/* Define if `tm_zone' is member of `struct tm'. */
/* #undef HAVE_STRUCT_TM_TM_ZONE */
/* Define if your `struct stat' has `st_blksize'. Deprecated, use
`HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
#define HAVE_ST_BLKSIZE 1
/* Define if you have the `symlink' function. */
#define HAVE_SYMLINK 1
/* Define if you have the `sysconf' function. */
#define HAVE_SYSCONF 1
/* Define if you have the <sys/fault.h> header file. */
/* #undef HAVE_SYS_FAULT_H */
/* Define if you have the <sys/file.h> header file. */
#define HAVE_SYS_FILE_H 1
/* Define if you have the <sys/ioctl.h> header file. */
#define HAVE_SYS_IOCTL_H 1
/* Define if you have the <sys/limits.h> header file. */
/* #undef HAVE_SYS_LIMITS_H */
/* Define if you have the <sys/mman.h> header file. */
#define HAVE_SYS_MMAN_H 1
/* Define if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1
/* Define if you have the <sys/procfs.h> header file. */
#define HAVE_SYS_PROCFS_H 1
/* Define if you have the <sys/resource.h> header file. */
#define HAVE_SYS_RESOURCE_H 1
/* Define if you have the <sys/signal.h> header file. */
#define HAVE_SYS_SIGNAL_H 1
/* Define if you have the <sys/socket.h> header file. */
#define HAVE_SYS_SOCKET_H 1
/* Define if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define if you have the <sys/syscall.h> header file. */
#define HAVE_SYS_SYSCALL_H 1
/* Define if you have the <sys/timeb.h> header file. */
#define HAVE_SYS_TIMEB_H 1
/* Define if you have the <sys/timers.h> header file. */
/* #undef HAVE_SYS_TIMERS_H */
/* Define if you have the <sys/times.h> header file. */
#define HAVE_SYS_TIMES_H 1
/* Define if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1
/* Define if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define if you have the <sys/uio.h> header file. */
#define HAVE_SYS_UIO_H 1
/* Define if you have the <sys/un.h> header file. */
#define HAVE_SYS_UN_H 1
/* Define if you have the <sys/utsname.h> header file. */
#define HAVE_SYS_UTSNAME_H 1
/* Define if you have the <sys/vadvise.h> header file. */
/* #undef HAVE_SYS_VADVISE_H */
/* Define if you have the <sys/wait.h> header file. */
#define HAVE_SYS_WAIT_H 1
/* Define if you have the <termios.h> header file. */
#define HAVE_TERMIOS_H 1
/* Define if you have the <termio.h> header file. */
#define HAVE_TERMIO_H 1
/* Define if you have the `timelocal' function. */
#define HAVE_TIMELOCAL 1
/* Define if you have the `times' function. */
#define HAVE_TIMES 1
/* Define if you have the <time.h> header file. */
#define HAVE_TIME_H 1
/* Define if your `struct tm' has `tm_zone'. Deprecated, use
`HAVE_STRUCT_TM_TM_ZONE' instead. */
#define HAVE_TM_ZONE 1
/* Define if you have the <types.h> header file. */
/* #undef HAVE_TYPES_H */
/* Define if you don't have `tm_zone' but do have the external array `tzname'.
*/
/* #undef HAVE_TZNAME */
/* Define if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define if you have the <utime.h> header file. */
#define HAVE_UTIME_H 1
/* Define if you have the `vadvise' function. */
/* #undef HAVE_VADVISE */
/* Define if you have the `valloc' function. */
#define HAVE_VALLOC 1
/* Define if you have the <values.h> header file. */
#define HAVE_VALUES_H 1
/* Define if you have the `vfork' function. */
#define HAVE_VFORK 1
/* Define if you have the <vfork.h> header file. */
/* #undef HAVE_VFORK_H */
/* Define if you have the `vsnprintf' function. */
#define HAVE_VSNPRINTF 1
/* Define if you have the <windows.h> header file. */
/* #undef HAVE_WINDOWS_H */
/* Define if you have the <winsock.h> header file. */
/* #undef HAVE_WINSOCK_H */
/* Define if you have the `_fullpath' function. */
/* #undef HAVE__FULLPATH */
/* Define if you have the `_pclose' function. */
/* #undef HAVE__PCLOSE */
/* Define if you have the `_popen' function. */
/* #undef HAVE__POPEN */
/* Define if you have the `_snprintf' function. */
/* #undef HAVE__SNPRINTF */
/* Define if you have the `_stricmp' function. */
/* #undef HAVE__STRICMP */
/* Define if you have the `_vsnprintf' function. */
/* #undef HAVE__VSNPRINTF */
/* Define as the return type of signal handlers (`int' or `void'). */
#define RETSIGTYPE void
/* The size of a `char', as computed by sizeof. */
#define SIZEOF_CHAR 1
/* The size of a `double', as computed by sizeof. */
#define SIZEOF_DOUBLE 8
/* The size of a `float', as computed by sizeof. */
#define SIZEOF_FLOAT 4
/* The size of a `int', as computed by sizeof. */
#define SIZEOF_INT 4
/* The size of a `long', as computed by sizeof. */
#define SIZEOF_LONG 4
/* The size of a `long long', as computed by sizeof. */
#define SIZEOF_LONG_LONG 8
/* The size of a `short', as computed by sizeof. */
#define SIZEOF_SHORT 2
/* The size of a `unsigned char', as computed by sizeof. */
#define SIZEOF_UNSIGNED_CHAR 1
/* The size of a `unsigned int', as computed by sizeof. */
#define SIZEOF_UNSIGNED_INT 4
/* The size of a `unsigned long', as computed by sizeof. */
#define SIZEOF_UNSIGNED_LONG 4
/* The size of a `unsigned long long', as computed by sizeof. */
#define SIZEOF_UNSIGNED_LONG_LONG 8
/* The size of a `unsigned short', as computed by sizeof. */
#define SIZEOF_UNSIGNED_SHORT 2
/* The size of a `void *', as computed by sizeof. */
#define SIZEOF_VOID_P 4
/* 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 run-time.
STACK_DIRECTION > 0 => grows toward higher addresses
STACK_DIRECTION < 0 => grows toward lower addresses
STACK_DIRECTION = 0 => direction of growth unknown */
/* #undef STACK_DIRECTION */
/* Define if you have the ANSI C header files. */
#define STDC_HEADERS 1
/* Define if you can safely include both <sys/time.h> and <time.h>. */
#define TIME_WITH_SYS_TIME 1
/* Define if your <sys/time.h> declares `struct tm'. */
/* #undef TM_IN_SYS_TIME */
/* Define if the system headers declare usleep to return void. */
/* #undef USLEEP_RETURNS_VOID */
/* Define if your processor stores words with the most significant byte first
(like Motorola and SPARC, unlike Intel and VAX). */
/* #undef WORDS_BIGENDIAN */
/* Define if the X Window System is missing or not being used. */
/* #undef X_DISPLAY_MISSING */
/* Define to empty if `const' does not conform to ANSI C. */
/* #undef const */
|