Annotation of fam/acconfig.h, Revision 1.1
1.1 ! trev 1: /*
! 2: ** acconfig.h
! 3: **
! 4: ** This file contains macro definitions & comments which are used by
! 5: ** "autoheader" and "configure" to generate config.h.
! 6: */
! 7:
! 8: /* Define if the C++ compiler supports a built-in bool type. */
! 9: #undef HAVE_BOOL
! 10:
! 11: /* Define if the C++ compiler supports namespaces. */
! 12: #undef HAVE_NAMESPACE
! 13:
! 14: /* Define if we have nfs_clnt.h */
! 15: #undef HAVE_SYS_FS_NFS_CLNT_H
! 16:
! 17: /* Define if the system has imon and IMONIOC_ ioctl flags. */
! 18: #undef HAVE_IMON
! 19:
! 20: /* Define if the system has the struct revokdi and the IMONIOC_REVOKDI
! 21: ** ioctl flag. (IRIX 5.3 doesn't.)
! 22: */
! 23: #undef HAVE_IMON_REVOKDI
! 24:
! 25: /* Define if we have statvfs. Otherwise, statfs will be used. */
! 26: #undef HAVE_STATVFS
! 27:
! 28: /* Define if we have stat.st_fstype (a char array). */
! 29: #undef HAVE_STAT_ST_FSTYPE_STRING
! 30:
! 31: /* Define if we have stat.st_ctim.tv_nsec (nanoseconds). */
! 32: #undef HAVE_STAT_ST_CTIM_TV_NSEC
! 33:
! 34: /* Define if we have syssgi. */
! 35: #undef HAVE_SYSSGI
! 36:
! 37: /* Define if we have sgi nohang. */
! 38: #undef HAVE_SGI_NOHANG
! 39:
! 40: /* Define if we have _daemonize (IRIX). */
! 41: #undef HAVE_DAEMONIZE
! 42:
! 43: /* Define if we have daemon (Linux/BSD). */
! 44: #undef HAVE_DAEMON
! 45:
! 46: /* Define if we have prmap_sgi_t */
! 47: #undef HAVE_PRMAP_SGI_T
! 48:
! 49: /* Define if we have FSID_NFS, FSID_NFS2, FSID_NFS3, and FSID_CACHEFS.
! 50: ** Otherwise, we'll use MNTTYPE_NFS. */
! 51: #undef HAVE_FSID_NFS2
! 52:
! 53: /* Define if we have MNTTYPE_NFS2 */
! 54: #define HAVE_MNTTYPE_NFS2 0
! 55:
! 56: /* Define if we have MNTTYPE_NFS3 */
! 57: #define HAVE_MNTTYPE_NFS3 0
! 58:
! 59: /* Define if we have MNTTYPE_CACHEFS */
! 60: #define HAVE_MNTTYPE_CACHEFS 0
! 61:
! 62: /* Define if we have a prototype for bindresvport(). */
! 63: #undef HAVE_BINDRESVPORT_PROTO
! 64:
! 65: /* Define if mountlist is a struct in rpcsvc/mount.h containing the member
! 66: ** ml_host.
! 67: */
! 68: #undef HAVE_MOUNTLIST_STRUCT
! 69:
! 70: /* Define if mountlist is a pointer-to-struct in rpcsvc/mount.h containing
! 71: ** the member ml_hostname.
! 72: */
! 73: #undef HAVE_MOUNTLIST_PTR
! 74:
! 75: /* Define if we have getgrmember.
! 76: */
! 77: #undef HAVE_GETGRMEMBER
! 78:
! 79: /* Define if we have sys/sat.h, satvwrite(), and _SC_AUDIT. */
! 80: #undef HAVE_AUDIT
! 81:
! 82: /* Define if we have sys/mac.h and t6net.h, tsix_get_mac and mac_get_file(),
! 83: ** and _SC_MAC and _SC_IP_SECOPTS.
! 84: */
! 85: #undef HAVE_MAC
! 86:
! 87: /* Define if we have snprintf in stdio.h. */
! 88: /* #undef HAVE_SNPRINTF */
! 89:
! 90: /* Define if you have /etc/xtab in the IRIX format.
! 91: */
! 92: #undef HAVE_IRIX_XTAB_VERIFICATION
! 93:
! 94: /* Define to be statvfs_t.f_fsid's type (ulong_t or __fsid_t)
! 95: */
! 96: #undef CONFIG_FSID_T
! 97:
! 98: /* Define to be the type of the third argument to accept(2) (socklen_t or
! 99: ** int)
! 100: */
! 101: #undef CONFIG_SOCKLEN_T
! 102:
! 103: /* why do I have to have these? PACKAGE and VERSION are defined by
! 104: AM_INIT_AUTOMAKE, and the examples don't say anything about having
! 105: to mess with these things elsewhere. */
! 106: #undef PACKAGE
! 107: #undef VERSION
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>