1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-06 01:57:40 +00:00
freebsd-ports/net/samba36/files/patch-lib__replace__system__wait.h
Timur I. Bakeyev 4bef4dd3c2 Add new version of Samba - 3.6.0.
Most significant improvement is the support of SMB2 protocol.
2011-10-16 22:35:25 +00:00

22 lines
404 B
C

--- ./lib/replace/system/wait.h.orig 2010-04-01 15:26:22.000000000 +0200
+++ ./lib/replace/system/wait.h 2010-04-23 01:08:35.000000000 +0200
@@ -32,6 +32,18 @@
#include <signal.h>
+#ifndef SIGRTMIN
+# ifdef NSIG
+# define SIGRTMIN (NSIG+1)
+# else
+# define SIGRTMIN 33
+# endif
+#endif
+
+#ifndef SIGRTMAX
+#define SIGRTMAX (SIGRTMIN+64)
+#endif
+
#ifndef SIGCLD
#define SIGCLD SIGCHLD
#endif