Copyright updates:
[exim.git] / src / OS / os.h-OpenBSD
1 /* Exim: OS-specific C header file for OpenBSD */
2 /* Copyright (c) University of Cambridge 1995 - 2018 */
3 /* Copyright (c) The Exim Maintainers 2021 */
4 /* See the file NOTICE for conditions of use and distribution. */
5
6
7 #define HAVE_BSD_GETLOADAVG
8 #define HAVE_MMAP
9 #define HAVE_SYS_MOUNT_H
10 #define HAVE_GETIFADDRS
11 #define EXIM_HAVE_OPENAT
12 #define EXIM_HAVE_FUTIMENS
13 #define HAVE_ARC4RANDOM
14 /* In May 2014, OpenBSD 5.5 was released which cleaned up the arc4random_* API
15    which removed the arc4random_stir() function. Set NOT_HAVE_ARC4RANDOM_STIR
16    if the version released is past that point. */
17 #include <sys/param.h>
18 #if OpenBSD >= 201405
19 # define NOT_HAVE_ARC4RANDOM_STIR
20 #endif
21
22 typedef struct flock flock_t;
23
24 #define os_strsignal strsignal
25 #define OS_STRSIGNAL
26
27 typedef struct __res_state *res_state;
28
29 /* default is non-const */
30 #define ICONV_ARG2_TYPE const char **
31
32 #ifndef EPROTO
33 # define EPROTO 71
34 #endif
35
36 /* We need to force this; the automatic in buildconfig.c gets %ld */
37 #ifdef OFF_T_FMT
38 # undef OFF_T_FMT
39 # undef LONGLONG_T
40 #endif
41 #define OFF_T_FMT "%lld"
42 #define LONGLONG_T long long int
43
44 #ifdef PID_T_FMT
45 # undef PID_T_FMT
46 #endif
47 #define PID_T_FMT "%d"
48
49 #ifdef INO_T_FMT
50 # undef INO_T_FMT
51 #endif
52 #define INO_T_FMT "%llu"
53
54 #ifdef TIME_T_FMT
55 # undef TIME_T_FMT
56 #endif
57 #define TIME_T_FMT "%lld"
58
59 /* seems arpa/nameser.h does not define this.
60 Space-constrained devices could use much smaller; a few k. */
61 #define NS_MAXMSG 65535
62
63 #define EXIM_HAVE_KEVENT
64
65 /* End */