From: Bernd Kuhls Date: Mon, 8 Mar 2021 12:04:34 +0000 (+0100) Subject: Fix uClibc build X-Git-Tag: exim-4.95-RC0~113 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/3083c9ca60beb9aacae81d0d108117251da5f276 Fix uClibc build structs.h:757:18: error: ‘NS_MAXMSG’ undeclared here (not in a function); did you mean ‘N_MASC’? uschar answer[NS_MAXMSG]; /* the answer itself */ --- diff --git a/src/OS/os.h-Linux b/src/OS/os.h-Linux index 2fa1b0b82..287e15465 100644 --- a/src/OS/os.h-Linux +++ b/src/OS/os.h-Linux @@ -94,5 +94,9 @@ then change the 0 to 1 in the next block. */ /* inotify(7) etc syscalls */ #define EXIM_HAVE_INOTIFY +/* Needed for uClibc */ +#ifndef NS_MAXMSG +# define NS_MAXMSG 65535 +#endif /* End */