-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h.in
2197 lines (1472 loc) · 56.4 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.in by autoheader. */
/*
* Start of am-utils-6.x config.h file.
* Erez Zadok <ezk @ cs.sunysb.edu>
*
* DO NOT EDIT BY HAND.
* Note: generated by autoheader from configure.in.
*/
#ifndef _CONFIG_H
#define _CONFIG_H
/* define name of am-utils' NFS protocol header */
#undef AMU_NFS_PROTOCOL_HEADER
/* Type of the 5rd argument to authunix_create() */
#undef AUTH_CREATE_GIDLIST_TYPE
/* Define configuration date */
#undef CONFIG_DATE
/* Turn off general debugging by default */
#undef DEBUG
/* Turn off memory debugging by default */
#undef DEBUG_MEM
/* Define name of host OS's distribution name (eg. debian, redhat, suse, etc.)
*/
#undef DISTRO_NAME
/* Define to the type of elements in the array set by `getgroups'. Usually
this is either `int' or `gid_t'. */
#undef GETGROUPS_T
/* Define to 1 if the `getpgrp' function requires zero arguments. */
#undef GETPGRP_VOID
/* Define if have automount filesystem */
#undef HAVE_AMU_FS_AUTO
/* Define if have direct automount filesystem */
#undef HAVE_AMU_FS_DIRECT
/* Define if have error filesystem */
#undef HAVE_AMU_FS_ERROR
/* Define if have NFS host-tree filesystem */
#undef HAVE_AMU_FS_HOST
/* Define if have symbolic-link filesystem */
#undef HAVE_AMU_FS_LINK
/* Define if have symlink with existence check filesystem */
#undef HAVE_AMU_FS_LINKX
/* Define if have nfsl (NFS with local link check) filesystem */
#undef HAVE_AMU_FS_NFSL
/* Define if have multi-NFS filesystem */
#undef HAVE_AMU_FS_NFSX
/* Define if have program filesystem */
#undef HAVE_AMU_FS_PROGRAM
/* Define if have "top-level" filesystem */
#undef HAVE_AMU_FS_TOPLVL
/* Define if have union filesystem */
#undef HAVE_AMU_FS_UNION
/* Define to 1 if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H
/* Define to 1 if you have the <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H
/* Define to 1 if you have the <assert.h> header file. */
#undef HAVE_ASSERT_H
/* Define to 1 if `addr' is member of `autofs_args_t'. */
#undef HAVE_AUTOFS_ARGS_T_ADDR
/* define if have a bad version of hasmntopt() */
#undef HAVE_BAD_HASMNTOPT
/* define if have a bad version of memcmp() */
#undef HAVE_BAD_MEMCMP
/* define if have a bad version of yp_all() */
#undef HAVE_BAD_YP_ALL
/* Define to 1 if you have the `bcmp' function. */
#undef HAVE_BCMP
/* Define to 1 if you have the `bcopy' function. */
#undef HAVE_BCOPY
/* Define to 1 if you have the <bsd/rpc/rpc.h> header file. */
#undef HAVE_BSD_RPC_RPC_H
/* Define to 1 if you have the `bzero' function. */
#undef HAVE_BZERO
/* System supports C99-style variable-length argument macros */
#undef HAVE_C99_VARARGS_MACROS
/* Define to 1 if `flags' is member of `cdfs_args_t'. */
#undef HAVE_CDFS_ARGS_T_FLAGS
/* Define to 1 if `fspec' is member of `cdfs_args_t'. */
#undef HAVE_CDFS_ARGS_T_FSPEC
/* Define to 1 if `iso_flags' is member of `cdfs_args_t'. */
#undef HAVE_CDFS_ARGS_T_ISO_FLAGS
/* Define to 1 if `iso_pgthresh' is member of `cdfs_args_t'. */
#undef HAVE_CDFS_ARGS_T_ISO_PGTHRESH
/* Define to 1 if `norrip' is member of `cdfs_args_t'. */
#undef HAVE_CDFS_ARGS_T_NORRIP
/* Define to 1 if `ssector' is member of `cdfs_args_t'. */
#undef HAVE_CDFS_ARGS_T_SSECTOR
/* Define to 1 if you have the <cdfs/cdfsmount.h> header file. */
#undef HAVE_CDFS_CDFSMOUNT_H
/* Define to 1 if you have the <cdfs/cdfs_mount.h> header file. */
#undef HAVE_CDFS_CDFS_MOUNT_H
/* Define to 1 if you have the `clnt_create' function. */
#undef HAVE_CLNT_CREATE
/* Define to 1 if you have the `clnt_create_vers' function. */
#undef HAVE_CLNT_CREATE_VERS
/* Define to 1 if you have the `clnt_create_vers_timed' function. */
#undef HAVE_CLNT_CREATE_VERS_TIMED
/* Define to 1 if you have the `clnt_spcreateerror' function. */
#undef HAVE_CLNT_SPCREATEERROR
/* Define to 1 if you have the `clnt_sperrno' function. */
#undef HAVE_CLNT_SPERRNO
/* Define to 1 if you have the `clock_gettime' function. */
#undef HAVE_CLOCK_GETTIME
/* Define to 1 if you have the <cluster.h> header file. */
#undef HAVE_CLUSTER_H
/* Define to 1 if you have the `cnodeid' function. */
#undef HAVE_CNODEID
/* Define to 1 if you have the <ctype.h> header file. */
#undef HAVE_CTYPE_H
/* Define to 1 if you have the <db1/ndbm.h> header file. */
#undef HAVE_DB1_NDBM_H
/* Define to 1 if you have the `dbm_open' function. */
#undef HAVE_DBM_OPEN
/* Define to 1 if you have the `dg_mount' function. */
#undef HAVE_DG_MOUNT
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#undef HAVE_DIRENT_H
/* Define to 1 if you have the <dlfcn.h> header file. */
#undef HAVE_DLFCN_H
/* Define to 1 if `flags' is member of `efs_args_t'. */
#undef HAVE_EFS_ARGS_T_FLAGS
/* Define to 1 if `fspec' is member of `efs_args_t'. */
#undef HAVE_EFS_ARGS_T_FSPEC
/* Define to 1 if you have the <errno.h> header file. */
#undef HAVE_ERRNO_H
/* does extern definition for clnt_spcreateerror() exist? */
#undef HAVE_EXTERN_CLNT_SPCREATEERROR
/* does extern definition for clnt_sperrno() exist? */
#undef HAVE_EXTERN_CLNT_SPERRNO
/* does extern definition for free() exist? */
#undef HAVE_EXTERN_FREE
/* does extern definition for getccent() (hpux) exist? */
#undef HAVE_EXTERN_GETCCENT
/* does extern definition for getdomainname() exist? */
#undef HAVE_EXTERN_GETDOMAINNAME
/* does extern definition for getdtablesize() exist? */
#undef HAVE_EXTERN_GETDTABLESIZE
/* does extern definition for gethostname() exist? */
#undef HAVE_EXTERN_GETHOSTNAME
/* does extern definition for getlogin() exist? */
#undef HAVE_EXTERN_GETLOGIN
/* does extern definition for getpagesize() exist? */
#undef HAVE_EXTERN_GETPAGESIZE
/* does extern definition for gettablesize() exist? */
#undef HAVE_EXTERN_GETTABLESIZE
/* does extern definition for getwd() exist? */
#undef HAVE_EXTERN_GETWD
/* does extern definition for get_myaddress() exist? */
#undef HAVE_EXTERN_GET_MYADDRESS
/* does extern definition for hosts_ctl() exist? */
#undef HAVE_EXTERN_HOSTS_CTL
/* does extern definition for innetgr() exist? */
#undef HAVE_EXTERN_INNETGR
/* does extern definition for ldap_enable_cache() exist? */
#undef HAVE_EXTERN_LDAP_ENABLE_CACHE
/* does extern definition for mkstemp() exist? */
#undef HAVE_EXTERN_MKSTEMP
/* does extern definition for mntctl() exist? */
#undef HAVE_EXTERN_MNTCTL
/* does extern definition for optarg exist? */
#undef HAVE_EXTERN_OPTARG
/* does extern definition for sbrk() exist? */
#undef HAVE_EXTERN_SBRK
/* does extern definition for seteuid() exist? */
#undef HAVE_EXTERN_SETEUID
/* does extern definition for setitimer() exist? */
#undef HAVE_EXTERN_SETITIMER
/* does extern definition for sleep() exist? */
#undef HAVE_EXTERN_SLEEP
/* does extern definition for strcasecmp() exist? */
#undef HAVE_EXTERN_STRCASECMP
/* does extern definition for strdup() exist? */
#undef HAVE_EXTERN_STRDUP
/* does extern definition for strlcat() exist? */
#undef HAVE_EXTERN_STRLCAT
/* does extern definition for strlcpy() exist? */
#undef HAVE_EXTERN_STRLCPY
/* does extern definition for strstr() exist? */
#undef HAVE_EXTERN_STRSTR
/* does extern definition for sys_errlist[] exist? */
#undef HAVE_EXTERN_SYS_ERRLIST
/* does extern definition for ualarm() exist? */
#undef HAVE_EXTERN_UALARM
/* does extern definition for usleep() exist? */
#undef HAVE_EXTERN_USLEEP
/* does extern definition for vsnprintf() exist? */
#undef HAVE_EXTERN_VSNPRINTF
/* does extern definition for wait3() exist? */
#undef HAVE_EXTERN_WAIT3
/* does extern definition for xdr_callmsg() exist? */
#undef HAVE_EXTERN_XDR_CALLMSG
/* does extern definition for xdr_opaque_auth() exist? */
#undef HAVE_EXTERN_XDR_OPAQUE_AUTH
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
/* Define to 1 if `fds_bits' is member of `fd_set'. */
#undef HAVE_FD_SET_FDS_BITS
/* Define to 1 if you have the `fgets' function. */
#undef HAVE_FGETS
/* Define if plain fhandle type exists */
#undef HAVE_FHANDLE
/* Define to 1 if you have the `flock' function. */
#undef HAVE_FLOCK
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
/* Define to 1 if you have the `fsmount' function. */
#undef HAVE_FSMOUNT
/* Define if have AUTOFS filesystem */
#undef HAVE_FS_AUTOFS
/* Define if have CACHEFS filesystem */
#undef HAVE_FS_CACHEFS
/* Define if have CDFS filesystem */
#undef HAVE_FS_CDFS
/* Define if have CFS (crypto) filesystem */
#undef HAVE_FS_CFS
/* Define if have EFS filesystem (irix) */
#undef HAVE_FS_EFS
/* Define if have FFS filesystem */
#undef HAVE_FS_FFS
/* Define if have HSFS filesystem */
#undef HAVE_FS_HSFS
/* Define if have LOFS filesystem */
#undef HAVE_FS_LOFS
/* Define if have MFS filesystem */
#undef HAVE_FS_MFS
/* Define to 1 if you have the <fs/msdosfs/msdosfsmount.h> header file. */
#undef HAVE_FS_MSDOSFS_MSDOSFSMOUNT_H
/* Define if have NFS filesystem */
#undef HAVE_FS_NFS
/* Define if have NFS3 filesystem */
#undef HAVE_FS_NFS3
/* Define if have NULLFS (loopback on bsd44) filesystem */
#undef HAVE_FS_NULLFS
/* Define if have PCFS filesystem */
#undef HAVE_FS_PCFS
/* Define if have TFS filesystem */
#undef HAVE_FS_TFS
/* Define if have TMPFS filesystem */
#undef HAVE_FS_TMPFS
/* Define if have UFS filesystem */
#undef HAVE_FS_UFS
/* Define if have UMAPFS (uid/gid mapping) filesystem */
#undef HAVE_FS_UMAPFS
/* Define if have UNIONFS filesystem */
#undef HAVE_FS_UNIONFS
/* Define if have XFS filesystem (irix) */
#undef HAVE_FS_XFS
/* System supports GCC-style variable-length argument macros */
#undef HAVE_GCC_VARARGS_MACROS
/* Define to 1 if you have the <gdbm-ndbm.h> header file. */
#undef HAVE_GDBM_NDBM_H
/* Define to 1 if you have the `getccent' function. */
#undef HAVE_GETCCENT
/* Define to 1 if you have the `getcwd' function. */
#undef HAVE_GETCWD
/* Define to 1 if you have the `getdomainname' function. */
#undef HAVE_GETDOMAINNAME
/* Define to 1 if you have the `getdtablesize' function. */
#undef HAVE_GETDTABLESIZE
/* Define to 1 if you have the `gethostname' function. */
#undef HAVE_GETHOSTNAME
/* Define to 1 if you have the `getifaddrs' function. */
#undef HAVE_GETIFADDRS
/* Define to 1 if you have the `getmntinfo' function. */
#undef HAVE_GETMNTINFO
/* Define to 1 if you have the `getmountent' function. */
#undef HAVE_GETMOUNTENT
/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE
/* Define to 1 if you have the `getpwnam' function. */
#undef HAVE_GETPWNAM
/* Define to 1 if you have the `gettimeofday' function. */
#undef HAVE_GETTIMEOFDAY
/* Define to 1 if you have the `get_myaddress' function. */
#undef HAVE_GET_MYADDRESS
/* define if your system's getopt() is GNU getopt() (are you using glibc) */
#undef HAVE_GNU_GETOPT
/* Define to 1 if you have the <grp.h> header file. */
#undef HAVE_GRP_H
/* Define to 1 if you have the `hasmntopt' function. */
#undef HAVE_HASMNTOPT
/* Define to 1 if you have the <hesiod.h> header file. */
#undef HAVE_HESIOD_H
/* Define to 1 if you have the `hesiod_init' function. */
#undef HAVE_HESIOD_INIT
/* Define to 1 if you have the `hesiod_reload' function. */
#undef HAVE_HESIOD_RELOAD
/* Define to 1 if you have the `hesiod_to_bind' function. */
#undef HAVE_HESIOD_TO_BIND
/* Define to 1 if you have the `hes_init' function. */
#undef HAVE_HES_INIT
/* Define to 1 if you have the <hsfs/hsfs.h> header file. */
#undef HAVE_HSFS_HSFS_H
/* Define to 1 if you have the `hstrerror' function. */
#undef HAVE_HSTRERROR
/* Define to 1 if you have the <ifaddrs.h> header file. */
#undef HAVE_IFADDRS_H
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the <irs.h> header file. */
#undef HAVE_IRS_H
/* Define to 1 if you have the <isofs/cd9660/cd9660_mount.h> header file. */
#undef HAVE_ISOFS_CD9660_CD9660_MOUNT_H
/* Define to 1 if you have the <lber.h> header file. */
#undef HAVE_LBER_H
/* Define to 1 if you have the `ldap_enable_cache' function. */
#undef HAVE_LDAP_ENABLE_CACHE
/* Define to 1 if you have the <ldap.h> header file. */
#undef HAVE_LDAP_H
/* Define to 1 if you have the `ldap_open' function. */
#undef HAVE_LDAP_OPEN
/* Define to 1 if you have the <libgen.h> header file. */
#undef HAVE_LIBGEN_H
/* Define to 1 if you have the `malloc' library (-lmalloc). */
#undef HAVE_LIBMALLOC
/* Define to 1 if you have the `mapmalloc' library (-lmapmalloc). */
#undef HAVE_LIBMAPMALLOC
/* Define to 1 if you have the `nsl' library (-lnsl). */
#undef HAVE_LIBNSL
/* Define to 1 if you have the `posix4' library (-lposix4). */
#undef HAVE_LIBPOSIX4
/* Define to 1 if you have the `resolv' library (-lresolv). */
#undef HAVE_LIBRESOLV
/* Define to 1 if you have the `rpc' library (-lrpc). */
#undef HAVE_LIBRPC
/* Define to 1 if you have the `rpcsvc' library (-lrpcsvc). */
#undef HAVE_LIBRPCSVC
/* Define to 1 if you have the `rt' library (-lrt). */
#undef HAVE_LIBRT
/* does libwrap exist? */
#undef HAVE_LIBWRAP
/* Define to 1 if you have the <limits.h> header file. */
#undef HAVE_LIMITS_H
/* Define to 1 if you have the <linux/auto_fs4.h> header file. */
#undef HAVE_LINUX_AUTO_FS4_H
/* Define to 1 if you have the <linux/auto_fs.h> header file. */
#undef HAVE_LINUX_AUTO_FS_H
/* Define to 1 if you have the <linux/fs.h> header file. */
#undef HAVE_LINUX_FS_H
/* Define to 1 if you have the <linux/kdev_t.h> header file. */
#undef HAVE_LINUX_KDEV_T_H
/* Define to 1 if you have the <linux/list.h> header file. */
#undef HAVE_LINUX_LIST_H
/* Define to 1 if you have the <linux/loop.h> header file. */
#undef HAVE_LINUX_LOOP_H
/* Define to 1 if you have the <linux/nfs2.h> header file. */
#undef HAVE_LINUX_NFS2_H
/* Define to 1 if you have the <linux/nfs.h> header file. */
#undef HAVE_LINUX_NFS_H
/* Define to 1 if you have the <linux/nfs_mount.h> header file. */
#undef HAVE_LINUX_NFS_MOUNT_H
/* Define to 1 if you have the <linux/posix_types.h> header file. */
#undef HAVE_LINUX_POSIX_TYPES_H
/* Define to 1 if you have the <linux/socket.h> header file. */
#undef HAVE_LINUX_SOCKET_H
/* Define to 1 if you support file names longer than 14 characters. */
#undef HAVE_LONG_FILE_NAMES
/* Define to 1 if you have the <machine/endian.h> header file. */
#undef HAVE_MACHINE_ENDIAN_H
/* Define to 1 if you have the `madvise' function. */
#undef HAVE_MADVISE
/* Define to 1 if you have the <malloc.h> header file. */
#undef HAVE_MALLOC_H
/* Define if have DBM maps */
#undef HAVE_MAP_DBM
/* Define if have executable maps */
#undef HAVE_MAP_EXEC
/* Define if have file maps (everyone should have it!) */
#undef HAVE_MAP_FILE
/* Define if have HESIOD maps */
#undef HAVE_MAP_HESIOD
/* Define if have LDAP maps */
#undef HAVE_MAP_LDAP
/* Define if have NDBM maps */
#undef HAVE_MAP_NDBM
/* Define if have NIS maps */
#undef HAVE_MAP_NIS
/* Define if have NIS+ maps */
#undef HAVE_MAP_NISPLUS
/* Define if have PASSWD maps */
#undef HAVE_MAP_PASSWD
/* Define if have UNION maps */
#undef HAVE_MAP_UNION
/* Define to 1 if you have the `memcmp' function. */
#undef HAVE_MEMCMP
/* Define to 1 if you have the `memcpy' function. */
#undef HAVE_MEMCPY
/* Define to 1 if you have the `memmove' function. */
#undef HAVE_MEMMOVE
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET
/* Define to 1 if you have the `mkdir' function. */
#undef HAVE_MKDIR
/* Define to 1 if you have the `mkstemp' function. */
#undef HAVE_MKSTEMP
/* Define to 1 if you have the `mlockall' function. */
#undef HAVE_MLOCKALL
/* Define to 1 if you have the `mntctl' function. */
#undef HAVE_MNTCTL
/* Define to 1 if you have the <mntent.h> header file. */
#undef HAVE_MNTENT_H
/* Define to 1 if `mnt_cnode' is member of `mntent_t'. */
#undef HAVE_MNTENT_T_MNT_CNODE
/* Define to 1 if `mnt_ro' is member of `mntent_t'. */
#undef HAVE_MNTENT_T_MNT_RO
/* Define to 1 if `mnt_time' is member of `mntent_t'. */
#undef HAVE_MNTENT_T_MNT_TIME
/* does mntent_t have mnt_time field and is of type "char *" ? */
#undef HAVE_MNTENT_T_MNT_TIME_STRING
/* Define to 1 if you have the <mnttab.h> header file. */
#undef HAVE_MNTTAB_H
/* Define to 1 if you have the `mount' function. */
#undef HAVE_MOUNT
/* Define to 1 if `optptr' is member of `mounta'. */
#undef HAVE_MOUNTA_OPTPTR
/* Define to 1 if you have the `mountsyscall' function. */
#undef HAVE_MOUNTSYSCALL
/* Define to 1 if you have the <mount.h> header file. */
#undef HAVE_MOUNT_H
/* Define to 1 if you have the <msdosfs/msdosfsmount.h> header file. */
#undef HAVE_MSDOSFS_MSDOSFSMOUNT_H
/* Define to 1 if you have the <ndbm.h> header file. */
#undef HAVE_NDBM_H
/* Define to 1 if you have the <ndir.h> header file. */
#undef HAVE_NDIR_H
/* Define to 1 if you have the <netconfig.h> header file. */
#undef HAVE_NETCONFIG_H
/* Define to 1 if you have the <netdb.h> header file. */
#undef HAVE_NETDB_H
/* Define to 1 if you have the <netdir.h> header file. */
#undef HAVE_NETDIR_H
/* Define to 1 if you have the <netinet/if_ether.h> header file. */
#undef HAVE_NETINET_IF_ETHER_H
/* Define to 1 if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H
/* Define to 1 if you have the <net/errno.h> header file. */
#undef HAVE_NET_ERRNO_H
/* Define to 1 if you have the <net/if.h> header file. */
#undef HAVE_NET_IF_H
/* Define to 1 if you have the <net/if_var.h> header file. */
#undef HAVE_NET_IF_VAR_H
/* Define to 1 if you have the <net/route.h> header file. */
#undef HAVE_NET_ROUTE_H
/* Define to 1 if you have the <nfsclient/nfsargs.h> header file. */
#undef HAVE_NFSCLIENT_NFSARGS_H
/* Define to 1 if `acdirmax' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_ACDIRMAX
/* Define to 1 if `acdirmin' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_ACDIRMIN
/* Define to 1 if `acregmax' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_ACREGMAX
/* Define to 1 if `acregmin' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_ACREGMIN
/* Define to 1 if `addrlen' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_ADDRLEN
/* Define to 1 if `bsize' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_BSIZE
/* Define to 1 if `fhsize' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_FHSIZE
/* Define to 1 if `fh_len' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_FH_LEN
/* Define to 1 if `gfs_flags' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_GFS_FLAGS
/* Define to 1 if `namlen' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_NAMLEN
/* Define to 1 if `optstr' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_OPTSTR
/* Define to 1 if `proto' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_PROTO
/* Define to 1 if `sotype' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_SOTYPE
/* Define to 1 if `version' is member of `nfs_args_t'. */
#undef HAVE_NFS_ARGS_T_VERSION
/* Define to 1 if you have the <nfs/export.h> header file. */
#undef HAVE_NFS_EXPORT_H
/* Define to 1 if you have the <nfs/mount.h> header file. */
#undef HAVE_NFS_MOUNT_H
/* Define to 1 if you have the <nfs/nfsmount.h> header file. */
#undef HAVE_NFS_NFSMOUNT_H
/* Define to 1 if you have the <nfs/nfsproto.h> header file. */
#undef HAVE_NFS_NFSPROTO_H
/* Define to 1 if you have the <nfs/nfsv2.h> header file. */
#undef HAVE_NFS_NFSV2_H
/* Define to 1 if you have the <nfs/nfs_clnt.h> header file. */
#undef HAVE_NFS_NFS_CLNT_H
/* Define to 1 if you have the <nfs/nfs_gfs.h> header file. */
#undef HAVE_NFS_NFS_GFS_H
/* Define to 1 if you have the <nfs/nfs.h> header file. */
#undef HAVE_NFS_NFS_H
/* Define to 1 if you have the <nfs/nfs_mount.h> header file. */
#undef HAVE_NFS_NFS_MOUNT_H
/* Define to 1 if you have the <nfs/pathconf.h> header file. */
#undef HAVE_NFS_PATHCONF_H
/* define if the host has NFS protocol headers in system headers */
#undef HAVE_NFS_PROT_HEADERS
/* Define to 1 if you have the <nfs/rpcv2.h> header file. */
#undef HAVE_NFS_RPCV2_H
/* Define to 1 if you have the `nis_domain_of' function. */
#undef HAVE_NIS_DOMAIN_OF
/* Define to 1 if you have the <nsswitch.h> header file. */
#undef HAVE_NSSWITCH_H
/* Define to 1 if you have the `opendir' function. */
#undef HAVE_OPENDIR
/* Define to 1 if `dirmask' is member of `pcfs_args_t'. */
#undef HAVE_PCFS_ARGS_T_DIRMASK
/* Define to 1 if `dsttime' is member of `pcfs_args_t'. */
#undef HAVE_PCFS_ARGS_T_DSTTIME
/* Define to 1 if `fspec' is member of `pcfs_args_t'. */
#undef HAVE_PCFS_ARGS_T_FSPEC
/* Define to 1 if `gid' is member of `pcfs_args_t'. */
#undef HAVE_PCFS_ARGS_T_GID
/* Define to 1 if `mask' is member of `pcfs_args_t'. */
#undef HAVE_PCFS_ARGS_T_MASK
/* Define to 1 if `secondswest' is member of `pcfs_args_t'. */
#undef HAVE_PCFS_ARGS_T_SECONDSWEST
/* Define to 1 if `uid' is member of `pcfs_args_t'. */
#undef HAVE_PCFS_ARGS_T_UID
/* Define to 1 if you have the `plock' function. */
#undef HAVE_PLOCK
/* Define to 1 if you have the <pwd.h> header file. */
#undef HAVE_PWD_H
/* Define to 1 if you have the `regcomp' function. */
#undef HAVE_REGCOMP
/* Define to 1 if you have the `regexec' function. */
#undef HAVE_REGEXEC
/* Define to 1 if you have the <regex.h> header file. */
#undef HAVE_REGEX_H
/* Define to 1 if you have the <resolv.h> header file. */
#undef HAVE_RESOLV_H
/* Define to 1 if system calls automatically restart after interruption by a
signal. */
#undef HAVE_RESTARTABLE_SYSCALLS
/* Define to 1 if you have the `rmdir' function. */
#undef HAVE_RMDIR
/* Define to 1 if you have the <rpcsvc/autofs_prot.h> header file. */
#undef HAVE_RPCSVC_AUTOFS_PROT_H
/* Define to 1 if you have the <rpcsvc/mountv3.h> header file. */
#undef HAVE_RPCSVC_MOUNTV3_H
/* Define to 1 if you have the <rpcsvc/mount.h> header file. */
#undef HAVE_RPCSVC_MOUNT_H
/* Define to 1 if you have the <rpcsvc/nfs_prot.h> header file. */
#undef HAVE_RPCSVC_NFS_PROT_H
/* Define to 1 if you have the <rpcsvc/nis.h> header file. */
#undef HAVE_RPCSVC_NIS_H
/* Define to 1 if you have the <rpcsvc/ypclnt.h> header file. */
#undef HAVE_RPCSVC_YPCLNT_H
/* Define to 1 if you have the <rpcsvc/yp_prot.h> header file. */
#undef HAVE_RPCSVC_YP_PROT_H
/* Define to 1 if you have the <rpc/auth_des.h> header file. */
#undef HAVE_RPC_AUTH_DES_H
/* Define to 1 if you have the <rpc/pmap_clnt.h> header file. */
#undef HAVE_RPC_PMAP_CLNT_H
/* Define to 1 if you have the <rpc/pmap_prot.h> header file. */
#undef HAVE_RPC_PMAP_PROT_H
/* Define to 1 if you have the <rpc/rpc.h> header file. */
#undef HAVE_RPC_RPC_H
/* Define to 1 if you have the <rpc/types.h> header file. */
#undef HAVE_RPC_TYPES_H
/* Define to 1 if you have the <rpc/xdr.h> header file. */
#undef HAVE_RPC_XDR_H
/* Define to 1 if you have the `select' function. */
#undef HAVE_SELECT
/* Define to 1 if you have the `seteuid' function. */
#undef HAVE_SETEUID
/* Define to 1 if you have the `setitimer' function. */
#undef HAVE_SETITIMER
/* Define to 1 if you have the <setjmp.h> header file. */
#undef HAVE_SETJMP_H
/* Define to 1 if you have the `setresuid' function. */
#undef HAVE_SETRESUID
/* Define to 1 if you have the `setsid' function. */
#undef HAVE_SETSID
/* Define to 1 if you have the `sigaction' function. */
#undef HAVE_SIGACTION
/* Define to 1 if you have the `signal' function. */
#undef HAVE_SIGNAL
/* Define to 1 if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H
/* Define to 1 if you have the `sigsuspend' function. */
#undef HAVE_SIGSUSPEND
/* Define to 1 if you have the `socket' function. */
#undef HAVE_SOCKET
/* Define to 1 if you have the <socketbits.h> header file. */
#undef HAVE_SOCKETBITS_H
/* Define to 1 if you have the <statbuf.h> header file. */
#undef HAVE_STATBUF_H
/* Define to 1 if you have the `statfs' function. */
#undef HAVE_STATFS
/* Define to 1 if you have the `statvfs' function. */
#undef HAVE_STATVFS
/* Define to 1 if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_H
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the `strcasecmp' function. */
#undef HAVE_STRCASECMP
/* Define to 1 if you have the `strchr' function. */
#undef HAVE_STRCHR
/* Define to 1 if you have the `strcspn' function. */
#undef HAVE_STRCSPN
/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP
/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the `strlcat' function. */
#undef HAVE_STRLCAT
/* Define to 1 if you have the `strlcpy' function. */
#undef HAVE_STRLCPY
/* Define to 1 if you have the `strspn' function. */
#undef HAVE_STRSPN
/* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR
/* Define to 1 if `fhs_fh' is member of `struct fhstatus'. */
#undef HAVE_STRUCT_FHSTATUS_FHS_FH
/* Define to 1 if `ifa_next' is member of `struct ifaddrs'. */
#undef HAVE_STRUCT_IFADDRS_IFA_NEXT
/* Define to 1 if `ifr_addr' is member of `struct ifreq'. */
#undef HAVE_STRUCT_IFREQ_IFR_ADDR
/* Define if have struct mntent in one of the standard headers */
#undef HAVE_STRUCT_MNTENT
/* Define if have struct mnttab in one of the standard headers */
#undef HAVE_STRUCT_MNTTAB
/* Define if have struct nfs_args in one of the standard nfs headers */
#undef HAVE_STRUCT_NFS_ARGS
/* Define if have struct nfs_gfs_mount in one of the standard nfs headers */
#undef HAVE_STRUCT_NFS_GFS_MOUNT
/* Define to 1 if `sa_len' is member of `struct sockaddr'. */
#undef HAVE_STRUCT_SOCKADDR_SA_LEN
/* Define to 1 if `f_fstypename' is member of `struct statfs'. */
#undef HAVE_STRUCT_STATFS_F_FSTYPENAME
/* Define to 1 if `devid' is member of `struct umntrequest'. */
#undef HAVE_STRUCT_UMNTREQUEST_DEVID
/* Define to 1 if you have the `svc_getreq' function. */
#undef HAVE_SVC_GETREQ
/* Define to 1 if you have the `svc_getreqset' function. */
#undef HAVE_SVC_GETREQSET
/* Define to 1 if you have the `sysfs' function. */
#undef HAVE_SYSFS
/* Define to 1 if you have the `syslog' function. */
#undef HAVE_SYSLOG
/* Define to 1 if you have the <syslog.h> header file. */
#undef HAVE_SYSLOG_H
/* Define to 1 if you have the <sys/config.h> header file. */
#undef HAVE_SYS_CONFIG_H
/* Define to 1 if you have the <sys/dg_mount.h> header file. */
#undef HAVE_SYS_DG_MOUNT_H
/* Define to 1 if you have the <sys/dir.h> header file. */
#undef HAVE_SYS_DIR_H
/* Define to 1 if you have the <sys/errno.h> header file. */
#undef HAVE_SYS_ERRNO_H
/* Define to 1 if you have the <sys/file.h> header file. */
#undef HAVE_SYS_FILE_H
/* Define to 1 if you have the <sys/fsid.h> header file. */
#undef HAVE_SYS_FSID_H
/* Define to 1 if you have the <sys/fstyp.h> header file. */
#undef HAVE_SYS_FSTYP_H
/* Define to 1 if you have the <sys/fs/autofs.h> header file. */
#undef HAVE_SYS_FS_AUTOFS_H