mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
4bef4dd3c2
Most significant improvement is the support of SMB2 protocol.
22 lines
404 B
C
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
|