diff options
author | Timur I. Bakeyev <timur@com.bat.ru> | 2009-06-07 15:46:07 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-06-08 13:20:53 +0200 |
commit | 96eaa412e63847c1cb942ed220607350c6b20a95 (patch) | |
tree | 2ded2aef7dad66968f5d93b053765d7fabf72a64 /source3/m4 | |
parent | ab88f9017c977af3bb669a638f77552defff3fbf (diff) | |
download | samba-96eaa412e63847c1cb942ed220607350c6b20a95.tar.gz |
SIGRTMIN additions
In addition to [FreeBSD 14] there is another place, where we (re)define
SIGRTMIN - in SMB_IF_RTSIGNAL_BUG macro in /source3/m4/aclocal.m4.
Here is another small patch.
With regards,
Timur Bakeyev.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/m4')
-rw-r--r-- | source3/m4/aclocal.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/m4/aclocal.m4 b/source3/m4/aclocal.m4 index c7920570833..dedf6fbf50b 100644 --- a/source3/m4/aclocal.m4 +++ b/source3/m4/aclocal.m4 @@ -828,6 +828,9 @@ AC_DEFUN([SMB_IF_RTSIGNAL_BUG], #include <fcntl.h> #include <signal.h> +#ifndef SIGRTMIN +#define SIGRTMIN NSIG +#endif /* from smbd/notify_kernel.c */ #ifndef RT_SIGNAL_NOTIFY #define RT_SIGNAL_NOTIFY (SIGRTMIN+2) |