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