You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2016/11/29 22:31:21 UTC

[1/2] mesos git commit: CMake: Fixed missing dependencies on libmesos.

Repository: mesos
Updated Branches:
  refs/heads/master 4dcc42790 -> a8a7ea6b8


CMake: Fixed missing dependencies on libmesos.

The dependency from libmesos to libprocess was accidentally
removed during the refactoring here:
https://reviews.apache.org/r/53768/diff/2#chunk1.28

This adds the dependency back.


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

Branch: refs/heads/master
Commit: a8a7ea6b8fb4f4e117e067e9e5331995a75c8f3a
Parents: 727cbef
Author: Joseph Wu <jo...@apache.org>
Authored: Tue Nov 29 14:21:25 2016 -0800
Committer: Joseph Wu <jo...@apache.org>
Committed: Tue Nov 29 14:31:10 2016 -0800

----------------------------------------------------------------------
 src/CMakeLists.txt | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/a8a7ea6b/src/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 0884c6b..ea6e399 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -518,7 +518,11 @@ set_target_properties(
 # ADD LIBRARY DEPENDENCIES (tells CMake what to compile/build first).
 ####################################################################
 add_dependencies(${MESOS_TARGET} ${MESOS_LIBS_TARGET})
-add_dependencies(${MESOS_LIBS_TARGET} ${MESOS_PROTOBUF_TARGET})
+add_dependencies(
+  ${MESOS_LIBS_TARGET}
+  ${MESOS_PROTOBUF_TARGET}
+  ${AGENT_DEPENDENCIES}
+  )
 
 # ADD LINKER FLAGS (generates, e.g., -lglog on Linux).
 ######################################################


[2/2] mesos git commit: CMake: Added socket_tests.cpp to the libprocess tests.

Posted by jo...@apache.org.
CMake: Added socket_tests.cpp to the libprocess tests.

This test was added in: https://reviews.apache.org/r/53460/


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

Branch: refs/heads/master
Commit: 727cbef97a3a1a51abf0d2df9076eac157d35c42
Parents: 4dcc427
Author: Joseph Wu <jo...@apache.org>
Authored: Tue Nov 29 14:16:21 2016 -0800
Committer: Joseph Wu <jo...@apache.org>
Committed: Tue Nov 29 14:31:10 2016 -0800

----------------------------------------------------------------------
 3rdparty/libprocess/src/tests/CMakeLists.txt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/727cbef9/3rdparty/libprocess/src/tests/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/tests/CMakeLists.txt b/3rdparty/libprocess/src/tests/CMakeLists.txt
index 66597fd..9f7f450 100644
--- a/3rdparty/libprocess/src/tests/CMakeLists.txt
+++ b/3rdparty/libprocess/src/tests/CMakeLists.txt
@@ -32,11 +32,12 @@ set(PROCESS_TESTS_SRC
   queue_tests.cpp
   sequence_tests.cpp
   shared_tests.cpp
+  socket_tests.cpp
   statistics_tests.cpp
   subprocess_tests.cpp
   system_tests.cpp
-  timeseries_tests.cpp
   time_tests.cpp
+  timeseries_tests.cpp
   )
 
 if (NOT WIN32)