/* ** QuickPage specific definitions */ /* Define if this is a Solaris 2.x machine. */ #undef SOLARIS2 /* Define if this is a SunOS 4.x machine. */ #undef SUNOS4 /* Define as the name(s) of the default SNPP server. */ #define SNPP_SERVER "localhost" /* Define as the location of a file containing the name(s) of the default SNPP server. */ #undef SNPP_SERVER_FILE /* Define as the location of the qpage configuration file. */ #define QPAGE_CONFIG "/etc/qpage.cf" /* Define as the location of the lock directory. */ #undef DEFAULT_LOCKDIR /* Define as the user the qpage daemon runs as. */ #define DAEMON_USER "daemon" /* Define as the syslog facility used to log messages (i.e. LOG_DAEMON). */ #define SYSLOG_FACILITY LOG_DAEMON /* Define if you want to link qpage with the "tcp_wrappers" package. */ #undef TCP_WRAPPERS /* Define as the complete path to sendmail (or equivalent). */ #undef SENDMAIL_PATH /* ** Generic platform definitions */ /* Define to `int' if doesn't define. */ #undef gid_t /* Define if you don't have vprintf but do have _doprnt. */ #undef HAVE_DOPRNT /* Define if you have a working fnmatch function. */ #undef HAVE_FNMATCH /* Define if you support file names longer than 14 characters. */ #undef HAVE_LONG_FILE_NAMES /* Define if you have sys_siglist. */ #undef SYS_SIGLIST_DECLARED /* Define if you have a working `mmap' system call. */ #undef HAVE_MMAP /* Define if you have the memcpy function. */ #undef HAVE_MEMCPY /* Define if your struct stat has st_rdev. */ #undef HAVE_ST_RDEV /* Define if you have the strchr function. */ #undef HAVE_STRCHR /* Define if you have that is POSIX.1 compatible. */ #undef HAVE_SYS_WAIT_H /* Define if you have the waitpid function. */ #undef HAVE_WAITPID /* Define if you have the vprintf function. */ #undef HAVE_VPRINTF /* Define if you have the vsyslog function. */ #undef HAVE_VSYSLOG /* Define if major, minor, and makedev are declared in . */ #undef MAJOR_IN_MKDEV /* Define if major, minor, and makedev are declared in . */ #undef MAJOR_IN_SYSMACROS /* Define to `int' if doesn't define. */ #undef mode_t /* Define if you have , and doesn't declare the mem* functions. */ #undef HAVE_MEMORY_H /* Define to `long' if doesn't define. */ #undef off_t /* Define to `int' if doesn't define. */ #undef pid_t /* Define as the return type of signal handlers (int or void). */ #undef RETSIGTYPE /* Define to `unsigned' if doesn't define. */ #undef size_t /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define if you can safely include both and . */ #undef TIME_WITH_SYS_TIME /* Define if your declares struct tm. */ #undef TM_IN_SYS_TIME /* Define to `int' if doesn't define. */ #undef uid_t /* Define if you have the mktime function. */ #undef HAVE_MKTIME /* Define if you have the poll function. */ #undef HAVE_POLL /* Define if you have the select function. */ #undef HAVE_SELECT /* Define if you have the socket function. */ #undef HAVE_SOCKET /* Define if you have the strdup function. */ #undef HAVE_STRDUP /* Define if you have the strerror function. */ #undef HAVE_STRERROR /* Define if you have the strstr function. */ #undef HAVE_STRSTR /* Define if you have the uname function. */ #undef HAVE_UNAME /* Define if you have the header file. */ #undef HAVE_DIRENT_H /* Define if you have the header file. */ #undef HAVE_FCNTL_H /* Define if you have the header file. */ #undef HAVE_NDIR_H /* Define if you have the header file. */ #undef HAVE_SETJMP_H /* Define if you have the header file. */ #undef HAVE_STRING_H /* Define if you have the header file. */ #undef HAVE_SYSLOG_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_DIR_H /* Define if you have the header file. */ #undef HAVE_SYS_IOCTL_H /* Define if you have the header file. */ #undef HAVE_SYS_MODEM_H /* Define if you have the header file. */ #undef HAVE_SYS_MKDEV_H /* Define if you have the header file. */ #undef HAVE_SYS_NDIR_H /* Define if you have the header file. */ #undef HAVE_SYS_SELECT_H /* Define if you have the header file. */ #undef HAVE_SYS_SYSTEMINFO_H /* Define if you have the header file. */ #undef HAVE_SYS_TIME_H /* Define if you have the header file. */ #undef HAVE_SYS_UTSNAME_H /* Define if you have the header file. */ #undef HAVE_UNISTD_H /* Define if you have the header file. */ #undef HAVE_IOCTL_TYPES_H /* Define if you have the header file. */ #undef HAVE_SYS_DIGI_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_WAIT_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_MEMORY_H #include #endif #ifdef HAVE_POLL # ifdef HAVE_POLL_H # include # else # ifdef HAVE_SYS_POLL_H # include # endif # endif #endif #ifdef HAVE_SYS_MKDEV_H #include #endif #ifdef HAVE_SYS_SYSTEMINFO_H #include #endif #ifdef HAVE_SYS_UTSNAME_H #include #endif #ifdef HAVE_SYS_SELECT_H #include #endif #ifdef HAVE_SYS_IOCTL_H /* ** has namespace conflict with in SunOS 4.x */ #ifndef SUNOS4 #include #endif #endif #ifdef HAVE_SYS_MODEM_H #include #endif #ifdef HAVE_IOCTL_TYPES_H #include #endif /* ** SCO apparently needs this (?) */ #ifdef HAVE_SYS_DIGI_H #include #endif #ifdef HAVE_SYSLOG_H #include #endif #ifdef HAVE_STRING_H #include #endif #ifdef HAVE_SETJMP_H #include #endif #if TIME_WITH_SYS_TIME # include # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #if HAVE_DIRENT_H # include # define NAMLEN(dirent) strlen((dirent)->d_name) #else # define dirent direct # define NAMLEN(dirent) (dirent)->d_namlen # if HAVE_SYS_NDIR_H # include # endif # if HAVE_SYS_DIR_H # include # endif # if HAVE_NDIR_H # include # endif #endif #if STDC_HEADERS # include #else # ifndef HAVE_STRCHR # define strchr index # define strrchr rindex # endif char *strchr(), *strrchr(); # ifndef HAVE_MEMCPY # define memcpy(d, s, n) bcopy ((s), (d), (n)) # define memmove(d, s, n) bcopy ((s), (d), (n)) # endif #endif