You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by id...@apache.org on 2016/12/03 00:37:01 UTC

[4/7] mesos git commit: Fix wait macros on FreeBSD.

Fix wait macros on FreeBSD.

Review: https://reviews.apache.org/r/53925/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/587b892d
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/587b892d
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/587b892d

Branch: refs/heads/master
Commit: 587b892d76da0e90aee7365d10a7b9477603e726
Parents: 06b9fbf
Author: David Forsythe <df...@gmail.com>
Authored: Fri Dec 2 16:34:22 2016 -0800
Committer: Ian Downes <id...@twitter.com>
Committed: Fri Dec 2 16:34:22 2016 -0800

----------------------------------------------------------------------
 3rdparty/stout/include/stout/gtest.hpp | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/587b892d/3rdparty/stout/include/stout/gtest.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/include/stout/gtest.hpp b/3rdparty/stout/include/stout/gtest.hpp
index b2f75b6..5b4d677 100644
--- a/3rdparty/stout/include/stout/gtest.hpp
+++ b/3rdparty/stout/include/stout/gtest.hpp
@@ -21,6 +21,11 @@
 #include <stout/result.hpp>
 #include <stout/try.hpp>
 
+#ifdef __FreeBSD__
+#include <sys/types.h>
+#include <sys/wait.h>
+#endif
+
 #ifdef __WINDOWS__
 #include <stout/windows.hpp>
 #endif