#ifndef __config_h__ #define __config_h__ /* Define if system calls automatically restart after interruption by a signal. */ #undef HAVE_RESTARTABLE_SYSCALLS /* Define if you have the gethostbyname_r function. */ #undef HAVE_GETHOSTBYNAME_R /* Define if you have the gethostbyaddr_r function. */ #undef HAVE_GETHOSTBYADDR_R /* Define if you have the gethostent_r function. */ #undef HAVE_GETHOSTENT_R /* Define if you have posix mmap function. */ #undef HAVE_MMAP /* Define if you have the getcwd function */ #undef HAVE_GETCWD /* Define if you have the getuid function */ #undef HAVE_GETUID /* Define if you have the getpwnam function */ #undef HAVE_GETPWNAM /* Define if you have the getpwuid function */ #undef HAVE_GETPWUID /* Define if you have the kill function */ #undef HAVE_KILL /* Define if you have the statvfs function */ #undef HAVE_STATVFS /* Define if you have the poll function */ #undef HAVE_POLL /* Define if you have the chown function */ #undef HAVE_CHOWN /* Define if you have the symlink function */ #undef HAVE_SYMLINK /* Define if you have the readlink function */ #undef HAVE_READLINK /* Define if you have the fsync function */ #undef HAVE_FSYNC /* Define if you have the opendir family of functions */ #undef HAVE_OPENDIR /* Define if you have the isatty function */ #undef HAVE_ISATTY /* Define if you have the ttyname function */ #undef HAVE_TTYNAME /* Define if you have the ttyname_r function */ #undef HAVE_TTYNAME_R /* Define if you have the header file. */ #undef HAVE_STRING_H /* Define if you have the header file. */ #undef HAVE_STRINGS_H /* Define if you have the header file */ #undef HAVE_MEMORY_H /* Define if you have the header file. */ #undef HAVE_STDLIB_H /* Define if you have the header file. */ #undef HAVE_LIMITS_H /* Define if you have the header file. */ #undef HAVE_LIBC_H /* Define if you have the header file */ #undef HAVE_SYS_STAT_H /* Define if you have the header file */ #undef HAVE_SYS_FCNTL_H /* Define if you have the header file */ #undef HAVE_FCNTL_H /* Define if you have the header file */ #undef HAVE_SYS_VFS_H /* Define if you have the header file */ #undef HAVE_SYS_STATFS_H /* Define if you have the header file */ #undef HAVE_SYS_STATVFS_H /* Define if you have the header file */ #undef HAVE_POLL_H /* Define if you have the header file */ #undef HAVE_SYS_POLL_H /* Define if you have the header file */ #undef HAVE_SYS_SOCKET_H /* Define if you have the header file */ #undef HAVE_UNISTD_H /* Define if you have the header file */ #undef HAVE_SYS_IOCTL_H /* Define if you have the header file */ #undef HAVE_SYS_FILIO_H /* Define if you have the header file */ #undef HAVE_NETINET_IN_H /* Define if you have the header file */ #undef HAVE_NETDB_H /* Define if you have the header file */ #undef HAVE_WINDOWS_H /* Define if you have the header file */ #undef HAVE_WINSOCK_H /* Define if you have the header file */ #undef HAVE_WINDOWS32_SOCKETS_H /* Define if you have the header file */ #undef HAVE_PWD_H /* Define if you have the header file */ #undef HAVE_PROCESS_H /* Define if you have the header file */ #undef HAVE_GRP_H /* Define if you have the header file */ #undef HAVE_SYS_FILE_H /* Define if you have the header file */ #undef HAVE_SYS_SELECT_H /* Define if you have the header file */ #undef HAVE_TIME_H /* Define if you have the header file */ #undef HAVE_SYS_TIME_H /* Define if you have the header file */ #undef HAVE_SYS_TYPES_H /* Define if you have the header file */ #undef HAVE_UTIME_H /* Define if you have the header file */ #undef HAVE_SYS_ERRNO_H /* Define if sys/wait.h is POSIX compatible */ #undef HAVE_SYS_WAIT_H /* Define this if you have the header file */ #undef HAVE_VFORK_H /* Define for vfork in case it's not defined */ #undef vfork /* Define for pid_t in case it's not defined */ #undef pid_t /* The following macros deal with directory entries. */ #undef HAVE_DIRENT_H #undef HAVE_SYS_NDIR_H #undef HAVE_SYS_DIR_H #undef HAVE_NDIR_H #undef HAVE_DIR_H /* The structure alignment as determined by configure */ #define STRUCT_ALIGNMENT @STRUCT_ALIGNMENT@ /* The name of the target platform, obtained by configure */ #define TARGET_PLATFORM "@host@" /* define POLL constants */ #if HAVE_POLL_H # include #endif #if HAVE_SYS_POLL_H # include #endif #ifndef POLLIN # ifdef HAVE_POLL # warning "manually declared POLLIN=1 .." # endif # define POLLIN 1 #endif #ifndef POLLOUT # ifdef HAVE_POLL # warning "manually declared POLLOUT=2 .." # endif # define POLLOUT 2 #endif #ifndef POLLERR # ifdef HAVE_POLL # warning "manually declared POLLERR=4 .." # endif # define POLLERR 4 #endif #ifndef POLLRDNORM # ifdef linux # define POLLRDNORM POLLIN # else /* !linux */ # ifdef POLLIN # ifdef HAVE_POLL # warning "manually declared POLLRDNORM=POLLIN .." # endif # define POLLRDNORM POLLIN # else # ifdef HAVE_POLL # warning "manually declared POLLRDNORM .." # endif # define POLLRDNORM 1 # endif # endif /* !linux */ #endif #ifndef POLLWRNORM # ifdef linux # define POLLWRNORM POLLOUT # else /* !linux */ # ifdef POLLOUT # ifdef HAVE_POLL # warning "manually declared POLLWRNORM=POLLOUT .." # endif # define POLLWRNORM POLLOUT # else # ifdef HAVE_POLL # warning "manually declared POLLWRNORM .." # endif # define POLLWRNORM 2 # endif # endif /* !linux */ #endif #endif /* __config_h__ */