summaryrefslogtreecommitdiff
path: root/source3/m4
diff options
context:
space:
mode:
authorTimur I. Bakeyev <timur@com.bat.ru>2009-06-07 15:46:07 +0000
committerStefan Metzmacher <metze@samba.org>2009-06-08 13:20:53 +0200
commit96eaa412e63847c1cb942ed220607350c6b20a95 (patch)
tree2ded2aef7dad66968f5d93b053765d7fabf72a64 /source3/m4
parentab88f9017c977af3bb669a638f77552defff3fbf (diff)
downloadsamba-96eaa412e63847c1cb942ed220607350c6b20a95.tar.gz
samba-96eaa412e63847c1cb942ed220607350c6b20a95.tar.bz2
samba-96eaa412e63847c1cb942ed220607350c6b20a95.zip
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.m43
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/m4/aclocal.m4 b/source3/m4/aclocal.m4
index c792057083..dedf6fbf50 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)