1 /* Exim: OS-specific C header file for SunOS5 aka Solaris */
5 #define HAVE_SYS_STATVFS_H
6 #define F_FAVAIL f_favail
7 #define SIOCGIFCONF_GIVES_ADDR
9 #define HAVE_GETIPNODEBYNAME 1
10 #define HAVE_GETIPNODEBYADDR 1
11 #define EXIM_HAVE_OPENAT
14 #define LOAD_AVG_KSTAT "system_misc"
15 #define LOAD_AVG_KSTAT_MODULE "unix"
16 #define LOAD_AVG_SYMBOL "avenrun_1min"
17 #define LOAD_AVG_FIELD value.ui32
19 #define os_strsignal strsignal
22 /* This is needed for some early Solaris releases, but causes trouble
23 in the current ones, so it is out by default. */
25 /* #define EXIM_SOCKLEN_T size_t */
27 /* This is different from Linux and all other PAM implementations,
30 #define PAM_CONVERSE_ARG2_TYPE struct pam_message
33 /* default is non-const */
34 #define ICONV_ARG2_TYPE const char **
36 #if _POSIX_C_SOURCE < 200112L
37 # define MISSING_UNSETENV_3
41 /* SunOS5 doesn't accept getcwd(NULL, 0) to auto-allocate
48 # define MIN(a,b) (((a)<(b))?(a):(b))
49 # define MAX(a,b) (((a)>(b))?(a):(b))