1/* Exim: OS-specific C header file for DGUX */ 2 3/* Written by Ken Bailey (K.Bailey@rbgkew.org.uk) Feb 1998 */ 4/* on dgux R4.11MU04 generic AViiON mc88100 */ 5/* Modified Dec 1998 by PH after message from Ken. */ 6 7#define HAVE_SYS_STATVFS_H 8#define F_FAVAIL f_favail 9 10#define NO_SYSEXITS /* DGUX doesn't ship sysexits.h */ 11#define NO_IP_VAR_H /* DGUX has no netinet/ip_var.h */ 12 13#define os_strsignal dg_strsignal 14#define OS_STRSIGNAL 15 16#define HAVE_MMAP 17 18/* The definition of ipoptions in netinet/in.h (masquerading as ip_opts) used 19in smtp_in.c is for Intel DG _IX86_ABI only. You may be able to get this to 20work on Intel DG but it's certainly easier to skip it on M88k. This means we 21forego the detection of some source-routing based IP attacks. */ 22 23#define NO_IP_OPTIONS 24 25/* default is non-const */ 26#define ICONV_ARG2_TYPE const char ** 27 28/* End */ 29