aboutsummaryrefslogtreecommitdiffstats
path: root/main/openvswitch/0002-fix-wait-any.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/openvswitch/0002-fix-wait-any.patch')
-rw-r--r--main/openvswitch/0002-fix-wait-any.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/main/openvswitch/0002-fix-wait-any.patch b/main/openvswitch/0002-fix-wait-any.patch
deleted file mode 100644
index a4f731da29..0000000000
--- a/main/openvswitch/0002-fix-wait-any.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-POSIX uses -1 and does not define WAIT_ANY so we need to define it if
-needed.
-
-See:
-http://pubs.opengroup.org/onlinepubs/9699919799/functions/waitpid.html
-http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_wait.h.html
-
---- openvswitch-2.6.0/tests/test-ovn.c
-+++ openvswitch-2.6.0/tests/test-ovn.c.new
-@@ -18,6 +18,11 @@
- #include <errno.h>
- #include <getopt.h>
- #include <sys/wait.h>
-+
-+#ifndef WAIT_ANY
-+#define WAIT_ANY (-1)
-+#endif
-+
- #include "command-line.h"
- #include "fatal-signal.h"
- #include "flow.h"