Skip to content

Commit

Permalink
Fix uClibc build
Browse files Browse the repository at this point in the history
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 */
  • Loading branch information
bkuhls authored and HeikoSchlittermann committed Mar 9, 2021
1 parent 8b67c55 commit 3083c9c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/OS/os.h-Linux
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit 3083c9c

Please sign in to comment.