blob: f96423b5831f1b1582bca920d8f009112e26fd82 (
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
|
/* include/config.h. Generated automatically by configure. */
/* include/config.h.in. Generated automatically from configure.in by autoheader. */
/* Define to empty if the keyword does not work. */
/* #undef const */
/* Define if you have a working `mmap' system call. */
#define HAVE_MMAP 1
/* Define as __inline if that's what the C compiler calls it. */
/* #undef inline */
/* Define as the return type of signal handlers (int or void). */
#define RETSIGTYPE void
/* 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 the X Window System is missing or not being used. */
/* #undef X_DISPLAY_MISSING */
/* Define if you have the asnprintf function. */
/* #undef HAVE_ASNPRINTF */
/* Define if you have the asprintf function. */
#define HAVE_ASPRINTF 1
/* Define if you have the bool function. */
/* #undef HAVE_BOOL */
/* Define if you have the chown function. */
#define HAVE_CHOWN 1
/* Define if you have the copyhostent function. */
/* #undef HAVE_COPYHOSTENT */
/* Define if you have the daemon function. */
#define HAVE_DAEMON 1
/* Define if you have the dn_expand function. */
#define HAVE_DN_EXPAND 1
/* Define if you have the el_init function. */
/* #undef HAVE_EL_INIT */
/* Define if you have the err function. */
#define HAVE_ERR 1
/* Define if you have the errx function. */
#define HAVE_ERRX 1
/* Define if you have the fchown function. */
#define HAVE_FCHOWN 1
/* Define if you have the fcntl function. */
#define HAVE_FCNTL 1
/* Define if you have the fhopen function. */
#define HAVE_FHOPEN 1
/* Define if you have the flock function. */
#define HAVE_FLOCK 1
/* Define if you have the freeaddrinfo function. */
#define HAVE_FREEADDRINFO 1
/* Define if you have the freehostent function. */
/* #undef HAVE_FREEHOSTENT */
/* Define if you have the gai_strerror function. */
#define HAVE_GAI_STRERROR 1
/* Define if you have the get_progname function. */
/* #undef HAVE_GET_PROGNAME */
/* Define if you have the getaddrinfo function. */
#define HAVE_GETADDRINFO 1
/* Define if you have the getcwd function. */
#define HAVE_GETCWD 1
/* Define if you have the getdtablesize function. */
#define HAVE_GETDTABLESIZE 1
/* Define if you have the getfh function. */
#define HAVE_GETFH 1
/* Define if you have the gethostbyname function. */
#define HAVE_GETHOSTBYNAME 1
/* Define if you have the gethostbyname2 function. */
#define HAVE_GETHOSTBYNAME2 1
/* Define if you have the getipnodebyaddr function. */
/* #undef HAVE_GETIPNODEBYADDR */
/* Define if you have the getipnodebyname function. */
/* #undef HAVE_GETIPNODEBYNAME */
/* Define if you have the getitimer function. */
#define HAVE_GETITIMER 1
/* Define if you have the getlogin function. */
#define HAVE_GETLOGIN 1
/* Define if you have the getnameinfo function. */
#define HAVE_GETNAMEINFO 1
/* Define if you have the getopt function. */
#define HAVE_GETOPT 1
/* Define if you have the getpagesize function. */
#define HAVE_GETPAGESIZE 1
/* Define if you have the getrlimit function. */
#define HAVE_GETRLIMIT 1
/* Define if you have the getrusage function. */
#define HAVE_GETRUSAGE 1
/* Define if you have the getspnam function. */
/* #undef HAVE_GETSPNAM */
/* Define if you have the getspuid function. */
/* #undef HAVE_GETSPUID */
/* Define if you have the getusershell function. */
#define HAVE_GETUSERSHELL 1
/* Define if you have the hstrerror function. */
#define HAVE_HSTRERROR 1
/* Define if you have the inet_aton function. */
#define HAVE_INET_ATON 1
/* Define if you have the inet_ntop function. */
#define HAVE_INET_NTOP 1
/* Define if you have the inet_pton function. */
#define HAVE_INET_PTON 1
/* Define if you have the initgroups function. */
#define HAVE_INITGROUPS 1
/* Define if you have the int16 function. */
/* #undef HAVE_INT16 */
/* Define if you have the int16_t function. */
#define HAVE_INT16_T 1
/* Define if you have the int32 function. */
/* #undef HAVE_INT32 */
/* Define if you have the int32_t function. */
#define HAVE_INT32_T 1
/* Define if you have the int64_t function. */
#define HAVE_INT64_T 1
/* Define if you have the int8_t function. */
#define HAVE_INT8_T 1
/* Define if you have the intptr_t function. */
/* #undef HAVE_INTPTR_T */
/* Define if you have the kernel_aout_sysent function. */
/* #undef HAVE_KERNEL_AOUT_SYSENT */
/* Define if you have the kernel_cache_purgevfs function. */
#define HAVE_KERNEL_CACHE_PURGEVFS 1
/* Define if you have the kernel_cdevsw_add function. */
/* #undef HAVE_KERNEL_CDEVSW_ADD */
/* Define if you have the kernel_debuglockmgr function. */
/* #undef HAVE_KERNEL_DEBUGLOCKMGR */
/* Define if you have the kernel_devtoname function. */
/* #undef HAVE_KERNEL_DEVTONAME */
/* Define if you have the kernel_doforce function. */
#define HAVE_KERNEL_DOFORCE 1
/* Define if you have the kernel_genfs_revoke function. */
/* #undef HAVE_KERNEL_GENFS_REVOKE */
/* Define if you have the kernel_lockmgr function. */
#define HAVE_KERNEL_LOCKMGR 1
/* Define if you have the kernel_lockstatus function. */
#define HAVE_KERNEL_LOCKSTATUS 1
/* Define if you have the kernel_make_dev function. */
/* #undef HAVE_KERNEL_MAKE_DEV */
/* Define if you have the kernel_memcpy function. */
#define HAVE_KERNEL_MEMCPY 1
/* Define if you have the kernel_nosys function. */
/* #undef HAVE_KERNEL_NOSYS */
/* Define if you have the kernel_snprintf function. */
#define HAVE_KERNEL_SNPRINTF 1
/* Define if you have the kernel_strlcpy function. */
#define HAVE_KERNEL_STRLCPY 1
/* Define if you have the kernel_sys_lkmnosys function. */
#define HAVE_KERNEL_SYS_LKMNOSYS 1
/* Define if you have the kernel_sys_nosys function. */
#define HAVE_KERNEL_SYS_NOSYS 1
/* Define if you have the kernel_udev2dev function. */
/* #undef HAVE_KERNEL_UDEV2DEV */
/* Define if you have the kernel_vfs_add_vnodeops function. */
/* #undef HAVE_KERNEL_VFS_ADD_VNODEOPS */
/* Define if you have the kernel_vfs_attach function. */
/* #undef HAVE_KERNEL_VFS_ATTACH */
/* Define if you have the kernel_vfs_cache_lookup function. */
/* #undef HAVE_KERNEL_VFS_CACHE_LOOKUP */
/* Define if you have the kernel_vfs_deallocate_syncvnode function. */
/* #undef HAVE_KERNEL_VFS_DEALLOCATE_SYNCVNODE */
/* Define if you have the kernel_vfs_getnewfsid function. */
#define HAVE_KERNEL_VFS_GETNEWFSID 1
/* Define if you have the kernel_vfs_getvfs function. */
#define HAVE_KERNEL_VFS_GETVFS 1
/* Define if you have the kernel_vfs_name_hash function. */
/* #undef HAVE_KERNEL_VFS_NAME_HASH */
/* Define if you have the kernel_vfs_object_create function. */
/* #undef HAVE_KERNEL_VFS_OBJECT_CREATE */
/* Define if you have the kernel_vfs_opv_init function. */
#define HAVE_KERNEL_VFS_OPV_INIT 1
/* Define if you have the kernel_vfs_opv_init_default function. */
#define HAVE_KERNEL_VFS_OPV_INIT_DEFAULT 1
/* Define if you have the kernel_vfs_opv_init_explicit function. */
#define HAVE_KERNEL_VFS_OPV_INIT_EXPLICIT 1
/* Define if you have the kernel_vfs_register function. */
#define HAVE_KERNEL_VFS_REGISTER 1
/* Define if you have the kernel_vgonel function. */
#define HAVE_KERNEL_VGONEL 1
/* Define if you have the kernel_vnode_pager_generic_getpages function. */
/* #undef HAVE_KERNEL_VNODE_PAGER_GENERIC_GETPAGES */
/* Define if you have the kernel_vnode_pager_generic_putpages function. */
/* #undef HAVE_KERNEL_VNODE_PAGER_GENERIC_PUTPAGES */
/* Define if you have the kernel_vnode_pager_setsize function. */
/* #undef HAVE_KERNEL_VNODE_PAGER_SETSIZE */
/* Define if you have the kernel_vop_revoke function. */
/* #undef HAVE_KERNEL_VOP_REVOKE */
/* Define if you have the kernel_zfreei function. */
/* #undef HAVE_KERNEL_ZFREEI */
/* Define if you have the krb_afslog_uid function. */
#define HAVE_KRB_AFSLOG_UID 1
/* Define if you have the kvm_nlist function. */
#define HAVE_KVM_NLIST 1
/* Define if you have the kvm_open function. */
#define HAVE_KVM_OPEN 1
/* Define if you have the linux_kernel_int16_t function. */
/* #undef HAVE_LINUX_KERNEL_INT16_T */
/* Define if you have the linux_kernel_int32_t function. */
/* #undef HAVE_LINUX_KERNEL_INT32_T */
/* Define if you have the linux_kernel_int64_t function. */
/* #undef HAVE_LINUX_KERNEL_INT64_T */
/* Define if you have the linux_kernel_int8_t function. */
/* #undef HAVE_LINUX_KERNEL_INT8_T */
/* Define if you have the linux_kernel_u_int16_t function. */
/* #undef HAVE_LINUX_KERNEL_U_INT16_T */
/* Define if you have the linux_kernel_u_int32_t function. */
/* #undef HAVE_LINUX_KERNEL_U_INT32_T */
/* Define if you have the linux_kernel_u_int64_t function. */
/* #undef HAVE_LINUX_KERNEL_U_INT64_T */
/* Define if you have the linux_kernel_u_int8_t function. */
/* #undef HAVE_LINUX_KERNEL_U_INT8_T */
/* 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 memmove function. */
#define HAVE_MEMMOVE 1
/* Define if you have the mkstemp function. */
#define HAVE_MKSTEMP 1
/* Define if you have the mktime function. */
#define HAVE_MKTIME 1
/* Define if you have the off64_t function. */
/* #undef HAVE_OFF64_T */
/* Define if you have the pthread_create function. */
/* #undef HAVE_PTHREAD_CREATE */
/* Define if you have the putenv function. */
#define HAVE_PUTENV 1
/* Define if you have the rcmd function. */
#define HAVE_RCMD 1
/* Define if you have the readline function. */
#define HAVE_READLINE 1
/* Define if you have the readv function. */
#define HAVE_READV 1
/* Define if you have the recvmsg function. */
#define HAVE_RECVMSG 1
/* Define if you have the register_t function. */
#define HAVE_REGISTER_T 1
/* Define if you have the res_init function. */
#define HAVE_RES_INIT 1
/* Define if you have the res_search function. */
#define HAVE_RES_SEARCH 1
/* Define if you have the sa_family_t function. */
#define HAVE_SA_FAMILY_T 1
/* Define if you have the sendmsg function. */
#define HAVE_SENDMSG 1
/* Define if you have the set_progname function. */
/* #undef HAVE_SET_PROGNAME */
/* Define if you have the setegid function. */
#define HAVE_SETEGID 1
/* Define if you have the setenv function. */
#define HAVE_SETENV 1
/* Define if you have the seteuid function. */
#define HAVE_SETEUID 1
/* Define if you have the setlogin function. */
#define HAVE_SETLOGIN 1
/* Define if you have the setregid function. */
#define HAVE_SETREGID 1
/* Define if you have the setresuid function. */
/* #undef HAVE_SETRESUID */
/* Define if you have the setreuid function. */
#define HAVE_SETREUID 1
/* Define if you have the setsid function. */
#define HAVE_SETSID 1
/* Define if you have the setsockopt function. */
#define HAVE_SETSOCKOPT 1
/* Define if you have the socket function. */
#define HAVE_SOCKET 1
/* Define if you have the socklen_t function. */
#define HAVE_SOCKLEN_T 1
/* Define if you have the ssize_t function. */
#define HAVE_SSIZE_T 1
/* Define if you have the strcasecmp function. */
#define HAVE_STRCASECMP 1
/* Define if you have the strdup function. */
#define HAVE_STRDUP 1
/* Define if you have the strerror function. */
#define HAVE_STRERROR 1
/* Define if you have the strftime function. */
#define HAVE_STRFTIME 1
/* Define if you have the strlcat function. */
#define HAVE_STRLCAT 1
/* Define if you have the strlcpy function. */
#define HAVE_STRLCPY 1
/* Define if you have the strlwr function. */
/* #undef HAVE_STRLWR */
/* Define if you have the strnlen function. */
/* #undef HAVE_STRNLEN */
/* Define if you have the strptime function. */
#define HAVE_STRPTIME 1
/* Define if you have the strsep function. */
#define HAVE_STRSEP 1
/* Define if you have the strsep_copy function. */
/* #undef HAVE_STRSEP_COPY */
/* Define if you have the strtok_r function. */
#define HAVE_STRTOK_R 1
/* Define if you have the struct_addrinfo function. */
#define HAVE_STRUCT_ADDRINFO 1
/* Define if you have the struct_sockaddr function. */
#define HAVE_STRUCT_SOCKADDR 1
/* Define if you have the struct_sockaddr_storage function. */
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
/* Define if you have the strupr function. */
/* #undef HAVE_STRUPR */
/* Define if you have the sysconf function. */
#define HAVE_SYSCONF 1
/* Define if you have the sysctl function. */
#define HAVE_SYSCTL 1
/* Define if you have the syslog function. */
#define HAVE_SYSLOG 1
/* Define if you have the tf_init function. */
#define HAVE_TF_INIT 1
/* Define if you have the tgetent function. */
#define HAVE_TGETENT 1
/* Define if you have the thr_yield function. */
/* #undef HAVE_THR_YIELD */
/* Define if you have the u_int16 function. */
/* #undef HAVE_U_INT16 */
/* Define if you have the u_int16_t function. */
#define HAVE_U_INT16_T 1
/* Define if you have the u_int32 function. */
/* #undef HAVE_U_INT32 */
/* Define if you have the u_int32_t function. */
#define HAVE_U_INT32_T 1
/* Define if you have the u_int64_t function. */
#define HAVE_U_INT64_T 1
/* Define if you have the u_int8_t function. */
#define HAVE_U_INT8_T 1
/* Define if you have the unsetenv function. */
#define HAVE_UNSETENV 1
/* Define if you have the vasnprintf function. */
/* #undef HAVE_VASNPRINTF */
/* Define if you have the vasprintf function. */
#define HAVE_VASPRINTF 1
/* Define if you have the verr function. */
#define HAVE_VERR 1
/* Define if you have the verrx function. */
#define HAVE_VERRX 1
/* Define if you have the vsnprintf function. */
#define HAVE_VSNPRINTF 1
/* Define if you have the vsyslog function. */
#define HAVE_VSYSLOG 1
/* Define if you have the vwarn function. */
#define HAVE_VWARN 1
/* Define if you have the vwarnx function. */
#define HAVE_VWARNX 1
/* Define if you have the warn function. */
#define HAVE_WARN 1
/* Define if you have the warnerr function. */
/* #undef HAVE_WARNERR */
/* Define if you have the warnx function. */
#define HAVE_WARNX 1
/* Define if you have the writev function. */
#define HAVE_WRITEV 1
/* Define if you have the <arpa/inet.h> header file. */
#define HAVE_ARPA_INET_H 1
/* Define if you have the <arpa/nameser.h> header file. */
#define HAVE_ARPA_NAMESER_H 1
/* Define if you have the <com_err.h> header file. */
#define HAVE_COM_ERR_H 1
/* Define if you have the <crypt.h> header file. */
/* #undef HAVE_CRYPT_H */
/* Define if you have the <dbm.h> header file. */
#define HAVE_DBM_H 1
/* Define if you have the <dirent.h> header file. */
#define HAVE_DIRENT_H 1
/* Define if you have the <errno.h> header file. */
#define HAVE_ERRNO_H 1
/* Define if you have the <et/com_err.h> header file. */
/* #undef HAVE_ET_COM_ERR_H */
/* Define if you have the <fcntl.h> header file. */
#define HAVE_FCNTL_H 1
/* Define if you have the <grp.h> header file. */
#define HAVE_GRP_H 1
/* Define if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define if you have the <ktypes.h> header file. */
/* #undef HAVE_KTYPES_H */
/* Define if you have the <kvm.h> header file. */
#define HAVE_KVM_H 1
/* Define if you have the <libelf/nlist.h> header file. */
/* #undef HAVE_LIBELF_NLIST_H */
/* Define if you have the <linux/devfs_fs.h> header file. */
/* #undef HAVE_LINUX_DEVFS_FS_H */
/* Define if you have the <linux/devfs_fs_kernel.h> header file. */
/* #undef HAVE_LINUX_DEVFS_FS_KERNEL_H */
/* Define if you have the <linux/stddef.h> header file. */
/* #undef HAVE_LINUX_STDDEF_H */
/* Define if you have the <machine/alpha/asm.h> header file. */
/* #undef HAVE_MACHINE_ALPHA_ASM_H */
/* Define if you have the <machine/asm.h> header file. */
#define HAVE_MACHINE_ASM_H 1
/* Define if you have the <machine/endian.h> header file. */
#define HAVE_MACHINE_ENDIAN_H 1
/* Define if you have the <machine/regdef.h> header file. */
/* #undef HAVE_MACHINE_REGDEF_H */
/* Define if you have the <miscfs/genfs/genfs.h> header file. */
/* #undef HAVE_MISCFS_GENFS_GENFS_H */
/* Define if you have the <ndbm.h> header file. */
#define HAVE_NDBM_H 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/in6.h> header file. */
/* #undef HAVE_NETINET_IN6_H */
/* Define if you have the <netinet/in6_machtypes.h> header file. */
/* #undef HAVE_NETINET_IN6_MACHTYPES_H */
/* Define if you have the <netinet6/in6.h> header file. */
/* #undef HAVE_NETINET6_IN6_H */
/* Define if you have the <nlist.h> header file. */
#define HAVE_NLIST_H 1
/* Define if you have the <paths.h> header file. */
#define HAVE_PATHS_H 1
/* Define if you have the <pwd.h> header file. */
#define HAVE_PWD_H 1
/* Define if you have the <regdef.h> header file. */
/* #undef HAVE_REGDEF_H */
/* Define if you have the <resolv.h> header file. */
#define HAVE_RESOLV_H 1
/* Define if you have the <rpcsvc/dbm.h> header file. */
/* #undef HAVE_RPCSVC_DBM_H */
/* Define if you have the <shadow.h> header file. */
/* #undef HAVE_SHADOW_H */
/* Define if you have the <sys/attr.h> header file. */
/* #undef HAVE_SYS_ATTR_H */
/* Define if you have the <sys/bitypes.h> header file. */
/* #undef HAVE_SYS_BITYPES_H */
/* Define if you have the <sys/cdefs.h> header file. */
#define HAVE_SYS_CDEFS_H 1
/* Define if you have the <sys/dir.h> header file. */
#define HAVE_SYS_DIR_H 1
/* Define if you have the <sys/filedesc.h> header file. */
#define HAVE_SYS_FILEDESC_H 1
/* Define if you have the <sys/ioccom.h> header file. */
#define HAVE_SYS_IOCCOM_H 1
/* Define if you have the <sys/ioctl.h> header file. */
#define HAVE_SYS_IOCTL_H 1
/* Define if you have the <sys/libkern.h> header file. */
/* #undef HAVE_SYS_LIBKERN_H */
/* Define if you have the <sys/lkm.h> header file. */
#define HAVE_SYS_LKM_H 1
/* Define if you have the <sys/mman.h> header file. */
#define HAVE_SYS_MMAN_H 1
/* Define if you have the <sys/module.h> header file. */
/* #undef HAVE_SYS_MODULE_H */
/* Define if you have the <sys/mount.h> header file. */
#define HAVE_SYS_MOUNT_H 1
/* Define if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1
/* Define if you have the <sys/poll.h> header file. */
#define HAVE_SYS_POLL_H 1
/* Define if you have the <sys/prctl.h> header file. */
/* #undef HAVE_SYS_PRCTL_H */
/* Define if you have the <sys/proc.h> header file. */
#define HAVE_SYS_PROC_H 1
/* Define if you have the <sys/queue.h> header file. */
#define HAVE_SYS_QUEUE_H 1
/* Define if you have the <sys/resource.h> header file. */
#define HAVE_SYS_RESOURCE_H 1
/* Define if you have the <sys/select.h> header file. */
#define HAVE_SYS_SELECT_H 1
/* Define if you have the <sys/signalvar.h> header file. */
#define HAVE_SYS_SIGNALVAR_H 1
/* Define if you have the <sys/socket.h> header file. */
#define HAVE_SYS_SOCKET_H 1
/* Define if you have the <sys/sockio.h> header file. */
#define HAVE_SYS_SOCKIO_H 1
/* Define if you have the <sys/stat.h> header file. */
#define HAVE_SYS_STAT_H 1
/* Define if you have the <sys/syscallargs.h> header file. */
#define HAVE_SYS_SYSCALLARGS_H 1
/* Define if you have the <sys/sysconfig.h> header file. */
/* #undef HAVE_SYS_SYSCONFIG_H */
/* Define if you have the <sys/sysctl.h> header file. */
#define HAVE_SYS_SYSCTL_H 1
/* Define if you have the <sys/sysent.h> header file. */
/* #undef HAVE_SYS_SYSENT_H */
/* Define if you have the <sys/sysproto.h> header file. */
/* #undef HAVE_SYS_SYSPROTO_H */
/* Define if you have the <sys/systm.h> header file. */
/* #undef HAVE_SYS_SYSTM_H */
/* Define if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1
/* Define if you have the <sys/tty.h> header file. */
#define HAVE_SYS_TTY_H 1
/* Define if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
/* Define if you have the <sys/ubc.h> header file. */
/* #undef HAVE_SYS_UBC_H */
/* Define if you have the <sys/uio.h> header file. */
#define HAVE_SYS_UIO_H 1
/* Define if you have the <sys/user.h> header file. */
#define HAVE_SYS_USER_H 1
/* Define if you have the <sys/utsname.h> header file. */
#define HAVE_SYS_UTSNAME_H 1
/* Define if you have the <sys/vfs.h> header file. */
/* #undef HAVE_SYS_VFS_H */
/* Define if you have the <sys/vfs_proto.h> header file. */
/* #undef HAVE_SYS_VFS_PROTO_H */
/* Define if you have the <sys/vnode.h> header file. */
#define HAVE_SYS_VNODE_H 1
/* Define if you have the <sys/wait.h> header file. */
#define HAVE_SYS_WAIT_H 1
/* Define if you have the <syslog.h> header file. */
#define HAVE_SYSLOG_H 1
/* Define if you have the <termios.h> header file. */
#define HAVE_TERMIOS_H 1
/* Define if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
/* Define if you have the <uvm/uvm_extern.h> header file. */
#define HAVE_UVM_UVM_EXTERN_H 1
/* Define if you have the <vm/vm.h> header file. */
/* #undef HAVE_VM_VM_H */
/* Define if you have the <vm/vm_extern.h> header file. */
/* #undef HAVE_VM_VM_EXTERN_H */
/* Define if you have the <vm/vm_object.h> header file. */
/* #undef HAVE_VM_VM_OBJECT_H */
/* Define if you have the <vm/vm_pager.h> header file. */
/* #undef HAVE_VM_VM_PAGER_H */
/* Define if you have the <vm/vm_zone.h> header file. */
/* #undef HAVE_VM_VM_ZONE_H */
/* Define if you have the <vm/vnode_pager.h> header file. */
/* #undef HAVE_VM_VNODE_PAGER_H */
/* Define if you have the curses library (-lcurses). */
/* #undef HAVE_LIBCURSES */
/* Define if you have the edit library (-ledit). */
/* #undef HAVE_LIBEDIT */
/* Define if you have the editline library (-leditline). */
/* #undef HAVE_LIBEDITLINE */
/* Define if you have the inet6 library (-linet6). */
/* #undef HAVE_LIBINET6 */
/* Define if you have the ip6 library (-lip6). */
/* #undef HAVE_LIBIP6 */
/* Define if you have the kvm library (-lkvm). */
#define HAVE_LIBKVM 1
/* Define if you have the ncurses library (-lncurses). */
/* #undef HAVE_LIBNCURSES */
/* Define if you have the nsl library (-lnsl). */
/* #undef HAVE_LIBNSL */
/* Define if you have the pthread library (-lpthread). */
/* #undef HAVE_LIBPTHREAD */
/* Define if you have the readline library (-lreadline). */
#define HAVE_LIBREADLINE 1
/* Define if you have the resolv library (-lresolv). */
/* #undef HAVE_LIBRESOLV */
/* Define if you have the socket library (-lsocket). */
/* #undef HAVE_LIBSOCKET */
/* Define if you have the syslog library (-lsyslog). */
/* #undef HAVE_LIBSYSLOG */
/* Define if you have the termcap library (-ltermcap). */
#define HAVE_LIBTERMCAP 1
/* what package is this? */
#define PACKAGE "arla"
/* and what version? */
#define VERSION "0.35.7"
/* how should ntohl be done? */
#define EFF_NTOHL ntohl
/* define if you need 32 bit compat pioctl */
/* #undef NEED_VICEIOCTL32 */
/* define this if on Irix6.4 or higher */
/* #undef IRIX_64 */
/* define if you need 32 bit compat pioctl */
/* #undef NEED_VICEIOCTL32 */
/* define if you have kerberos 4 compat */
/* #undef HAVE_KRB5_COMPAT_KRB4 */
/* define if you have kerberos 5 */
#define HAVE_KRB5 1
/* define if you have kerberos */
#define KERBEROS 1
/* define if you have kerberos */
#define KERBEROS 1
/* define if you have kerberos 4 */
#define HAVE_KRB4 1
/* define if you have struct msghdr */
#define HAVE_STRUCT_MSGHDR 1
/* define if you have struct iovec */
#define HAVE_STRUCT_IOVEC 1
/* define if you have a struct krb_principal */
#define HAVE_KRB_PRINCIPAL 1
/* define if you have krb_get_err_text */
#define HAVE_KRB_GET_ERR_TEXT 1
/* define if you have krb_get_default_tkt_root */
#define HAVE_KRB_GET_DEFAULT_TKT_ROOT 1
/* define if you have krb_get_default_principal */
#define HAVE_KRB_GET_DEFAULT_PRINCIPAL 1
/* define if you have krb_kdctimeofday */
#define HAVE_KRB_KDCTIMEOFDAY 1
/* Define if you have the readline package. */
/* #undef READLINE */
/* define if you have a function readline */
#define HAVE_READLINE 1
/* define if you want to use mmaptime */
/* #undef USE_MMAPTIME */
/* define if you have a glibc-based system */
/* #undef HAVE_GLIBC */
/* define if target is big endian */
/* #undef WORDS_BIGENDIAN */
/* define if sys/param.h defines the endiness */
#define ENDIANESS_IN_SYS_PARAM_H 1
/* define if your compiler has __FUNCTION__ */
#define HAVE___FUNCTION__ 1
/* define if your compiler has __attribute__ */
#define HAVE___ATTRIBUTE__ 1
/* Define if NDBM really is DB (creates files ending in .db). */
#define HAVE_NEW_DB 1
/* Define if you have NDBM (and not DBM) */
#define NDBM 1
/* define if struct winsize is declared in sys/termios.h */
#define HAVE_STRUCT_WINSIZE 1
/* define if struct winsize has ws_xpixel */
#define HAVE_WS_XPIXEL 1
/* define if struct winsize has ws_ypixel */
#define HAVE_WS_YPIXEL 1
/* Define if you have IPv6. */
#define HAVE_IPV6 1
/* define if you have a working snprintf */
#define HAVE_SNPRINTF 1
/* define if the system is missing a prototype for snprintf() */
/* #undef NEED_SNPRINTF_PROTO */
/* define if you have sigaction */
#define HAVE_POSIX_SIGNALS 1
/* Define if getlogin has POSIX flavour (and not BSD). */
/* #undef POSIX_GETLOGIN */
/* define if the system is missing a prototype for hstrerror() */
/* #undef NEED_HSTRERROR_PROTO */
/* define if hstrerror is const */
#define NEED_HSTRERROR_CONST 1
/* define if the system is missing a prototype for inet_aton() */
/* #undef NEED_INET_ATON_PROTO */
/* define if you have optreset */
#define HAVE_OPTRESET 1
/* define if your system declares optreset */
#define HAVE_OPTRESET_DECLARATION 1
/* define if your system declares optreset */
#define HAVE_OPTRESET_DECLARATION 1
/* define if the system is missing a prototype for strtok_r() */
/* #undef NEED_STRTOK_R_PROTO */
/* define if the system is missing a prototype for select() */
/* #undef NEED_SELECT_PROTO */
/* define if you can include both dirent.h and sys/dir.h */
#define DIRENT_AND_SYS_DIR_H 1
/* Define if struct dirent has field d_type. */
#define HAVE_STRUCT_DIRENT_D_TYPE 1
/* Define if struct sockaddr has field sa_len. */
#define HAVE_STRUCT_SOCKADDR_SA_LEN 1
/* Define if struct sockaddr_in has field sin_len. */
#define HAVE_STRUCT_SOCKADDR_IN_SIN_LEN 1
/* define if you have h_errno */
#define HAVE_H_ERRNO 1
/* define if your system declares h_errno */
#define HAVE_H_ERRNO_DECLARATION 1
/* define if you have h_errlist */
#define HAVE_H_ERRLIST 1
/* define if your system declares h_errlist */
/* #undef HAVE_H_ERRLIST_DECLARATION */
/* define if you have h_nerr */
#define HAVE_H_NERR 1
/* define if your system declares h_nerr */
/* #undef HAVE_H_NERR_DECLARATION */
/* define this if your as understands .register */
/* #undef AS_UNDERSTANDS_REGISTER */
/* define if the system is missing a prototype for vgonel() */
/* #undef NEED_VGONEL_PROTO */
/* define if the system is missing a prototype for issignal() */
/* #undef NEED_ISSIGNAL_PROTO */
/* define if the system is missing a prototype for vn_writechk() */
/* #undef NEED_VN_WRITECHK_PROTO */
/* define if the system is missing a prototype for ubc_pushdirty() */
#define NEED_UBC_PUSHDIRTY_PROTO 1
/* define if the system is missing a prototype for strncmp() */
#define NEED_STRNCMP_PROTO 1
/* define if you have a vop_t */
/* #undef HAVE_VOP_T */
/* if vfs_object_create takes four arguments */
/* #undef HAVE_FOUR_ARGUMENT_VFS_OBJECT_CREATE */
/* define if VOP_LOCK takes one argument */
/* #undef HAVE_ONE_ARGUMENT_VOP_LOCK */
/* define if VOP_LOCK takes two arguments */
/* #undef HAVE_TWO_ARGUMENT_VOP_LOCK */
/* define if VOP_LOCK takes three arguments */
#define HAVE_THREE_ARGUMENT_VOP_LOCK 1
/* define if vfs_busy takes three arguments */
/* #undef HAVE_THREE_ARGUMENT_VFS_BUSY */
/* define if vfs_busy takes four arguments */
#define HAVE_FOUR_ARGUMENT_VFS_BUSY 1
/* define if vget takes one argument */
/* #undef HAVE_ONE_ARGUMENT_VGET */
/* define if vget takes two arguments */
/* #undef HAVE_TWO_ARGUMENT_VGET */
/* define if vget takes three arguments */
#define HAVE_THREE_ARGUMENT_VGET 1
/* define if suser takes two arguments */
#define HAVE_TWO_ARGUMENT_SUSER 1
/* define if vfs_getnewfsid takes two arguments */
/* #undef HAVE_TWO_ARGUMENT_VFS_GETNEWFSID */
/* define if lockmgr takes four arguments */
#define HAVE_FOUR_ARGUMENT_LOCKMGR 1
/* define if lockstatus takes two arguments */
/* #undef HAVE_TWO_ARGUMENT_LOCKSTATUS */
/* define if lockstatus takes one argument */
#define HAVE_ONE_ARGUMENT_LOCKSTATUS 1
/* define if selrecord takes three arguments */
/* #undef HAVE_THREE_ARGUMENT_SELRECORD */
/* define if ubc_lookup takes six arguments */
/* #undef HAVE_SIX_ARGUMENT_UBC_LOOKUP */
/* define if vfs_name_hash takes four arguments */
/* #undef HAVE_FOUR_ARGUMENT_VFS_NAME_HASH */
/* define if vfs_name_hash takes three arguments */
/* #undef HAVE_THREE_ARGUMENT_VFS_NAME_HASH */
/* define if DIRSIZ is defined in dirent.h */
/* #undef DIRSIZ_IN_DIRENT_H */
/* define if DIRSIZ is defined in sys/dir.h */
#define DIRSIZ_IN_SYS_DIR_H 1
/* define if DIRSIZ is defined in sys/dirent.h */
/* #undef GENERIC_DIRSIZ_IN_SYS_DIRENT_H */
/* Define if struct proc has field p_sigmask. */
#define HAVE_STRUCT_PROC_P_SIGMASK 1
/* Define if struct proc has field p_sigctx. */
/* #undef HAVE_STRUCT_PROC_P_SIGCTX */
/* Define if struct mount has field mnt_syncer */
#define HAVE_STRUCT_MOUNT_MNT_SYNCER 1
/* Define if struct mount has field mnt_nvnodelist */
/* #undef HAVE_STRUCT_MOUNT_MNT_NVNODELIST */
/* Define if struct mount has field m_info */
/* #undef HAVE_STRUCT_MOUNT_M_INFO */
/* Define if struct vfsconf has field vfc_refcount */
#define HAVE_STRUCT_VFSCONF_VFC_REFCOUNT 1
/* Define if struct vfsconf has field vfc_mountroot */
/* #undef HAVE_STRUCT_VFSCONF_VFC_MOUNTROOT */
/* Define if struct uio has field uio_procp */
#define HAVE_STRUCT_UIO_UIO_PROCP 1
/* Define if struct vfsops has field vfs_opv_descs */
/* #undef HAVE_STRUCT_VFSOPS_VFS_OPV_DESCS */
/* Define if struct vfsops has field vfs_name */
/* #undef HAVE_STRUCT_VFSOPS_VFS_NAME */
/* Define if struct vfsops has field vfs_uninit */
/* #undef HAVE_STRUCT_VFSOPS_VFS_UNINIT */
/* Define if struct vfsops has field vfs_reinit */
/* #undef HAVE_STRUCT_VFSOPS_VFS_REINIT */
/* Define if struct vfsops has field vfs_oid */
/* #undef HAVE_STRUCT_VFSOPS_VFS_OID */
/* Define if struct vfsops has field vfs_done */
/* #undef HAVE_STRUCT_VFSOPS_VFS_DONE */
/* Define if struct vfsops has field vfs_checkexp */
#define HAVE_STRUCT_VFSOPS_VFS_CHECKEXP 1
/* Define if struct vfsops has field vfs_mountroot */
/* #undef HAVE_STRUCT_VFSOPS_VFS_MOUNTROOT */
/* Define if struct vfsops has field vfs_swapvp */
/* #undef HAVE_STRUCT_VFSOPS_VFS_SWAPVP */
/* Define if struct vfsops has field vfs_smoothsync */
/* #undef HAVE_STRUCT_VFSOPS_VFS_SMOOTHSYNC */
/* Define if struct sysent has field sy_flags */
/* #undef HAVE_STRUCT_SYSENT_SY_FLAGS */
/* Define if struct sysent has field sy_info */
/* #undef HAVE_STRUCT_SYSENT_SY_INFO */
/* Define if struct vop_fsync_args has field a_flags */
/* #undef HAVE_STRUCT_VOP_FSYNC_ARGS_A_FLAGS */
/* Define if struct vop_putpages_args has field a_sync */
/* #undef HAVE_STRUCT_VOP_PUTPAGES_ARGS_A_SYNC */
/* Define if struct proc has field p_retval */
/* #undef HAVE_STRUCT_PROC_P_RETVAL */
/* Define if you have struct setgroups_args */
/* #undef HAVE_DEF_STRUCT_SETGROUPS_ARGS */
/* Define if you have struct sys_setgroups_args */
#define HAVE_DEF_STRUCT_SYS_SETGROUPS_ARGS 1
/* Define if struct cdevsw has field d_stop */
/* #undef HAVE_STRUCT_CDEVSW_D_STOP */
/* Define if struct cdevsw has field d_reset */
/* #undef HAVE_STRUCT_CDEVSW_D_RESET */
/* Define if struct cdevsw has field d_bogoreset */
/* #undef HAVE_STRUCT_CDEVSW_D_BOGORESET */
/* Define if struct cdevsw has field d_devtotty */
/* #undef HAVE_STRUCT_CDEVSW_D_DEVTOTTY */
/* Define if struct cdevsw has field d_bogoparms */
/* #undef HAVE_STRUCT_CDEVSW_D_BOGOPARMS */
/* Define if struct cdevsw has field d_spare */
/* #undef HAVE_STRUCT_CDEVSW_D_SPARE */
/* Define if struct cdevsw has field d_maxio */
/* #undef HAVE_STRUCT_CDEVSW_D_MAXIO */
/* Define if struct cdevsw has field d_bmaj */
/* #undef HAVE_STRUCT_CDEVSW_D_BMAJ */
/* Define if struct componentname has field cn_hash */
#define HAVE_STRUCT_COMPONENTNAME_CN_HASH 1
/* define if we only can include uvm headers */
/* #undef HAVE_KERNEL_UVM_ONLY */
/* define if d_alloc_root takes two arguments */
/* #undef HAVE_D_ALLOC_ROOT_TWO_ARGS */
/* define if devfs_register takes eleven arguments */
/* #undef HAVE_DEVFS_REGISTER_ELEVEN_ARGS */
/* Define if struct ViceIoctl has field in */
/* #undef HAVE_STRUCT_VICEIOCTL_IN */
/* Define if struct super_operations has field notify_change */
/* #undef HAVE_STRUCT_SUPER_OPERATIONS_NOTIFY_CHANGE */
/* Define if struct inode_operations has field default_file_ops */
/* #undef HAVE_STRUCT_INODE_OPERATIONS_DEFAULT_FILE_OPS */
/* Define if struct inode_operations has field updatepage */
/* #undef HAVE_STRUCT_INODE_OPERATIONS_UPDATEPAGE */
/* Define if struct inode_operations has field bmap */
/* #undef HAVE_STRUCT_INODE_OPERATIONS_BMAP */
/* Define if struct inode_operations has field smap */
/* #undef HAVE_STRUCT_INODE_OPERATIONS_SMAP */
/* define if you have a wait_queue_head_t */
/* #undef HAVE_WAIT_QUEUE_HEAD_T */
/* define if you have a wait_queue_task_list */
/* #undef HAVE_WAIT_QUEUE_TASK_LIST */
/* define if you have a init_waitqueue_head */
/* #undef HAVE_INIT_WAITQUEUE_HEAD */
/* define if you have a function init_MUTEX */
/* #undef HAVE_INIT_MUTEX */
/* define if you have a function list_del_init */
/* #undef HAVE_LIST_DEL_INIT */
/* define if filldir_t takes a dt_type argument */
/* #undef HAVE_FILLDIR_T_DT_TYPE */
/* define if you have a function dget_locked */
/* #undef HAVE_DGET_LOCKED */
/* Define if struct task_struct has field pending */
/* #undef HAVE_STRUCT_TASK_STRUCT_PENDING */
/* define if d_delete in struct dentry_operations returns void */
/* #undef HAVE_D_DELETE_VOID */
/* Define if struct vfsops has field vfs_freevfs */
/* #undef HAVE_STRUCT_VFSOPS_VFS_FREEVFS */
/* define? */
/* #undef HAVE_REPAIRABLE_HTONL */
/* RCSID */
#define RCSID(msg) \
static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
/* Maximum values on all known systems */
#define MaxHostNameLen (64+4)
#define MaxPathLen (1024+4)
/* we always have stds.h */
#define HAVE_STDS_H
/*
* Defintions that are ugly but needed to get all the symbols used
*/
/*
* Defining this enables lots of useful (and used) extensions on
* glibc-based systems such as Linux
*/
#define _GNU_SOURCE
/*
* Defining this enables us to get the definition of `sigset_t' and
* other importatnt definitions on Solaris.
*/
#ifndef __EXTENSIONS__
#define __EXTENSIONS__
#endif
#ifndef HAVE___ATTRIBUTE__
#define __attribute__(x)
#endif
|