Added firewall.cpp to the process library CMakeLists. Right now, if you try to build on a non-Windows machine with CMakeLists, you'll get a linker error claiming that we can't find a symbol from the process library's firewall.cpp.
This commit simply adds that source file, which fixes the problem. Review: https://reviews.apache.org/r/37369 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/588b94e7 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/588b94e7 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/588b94e7 Branch: refs/heads/master Commit: 588b94e7806b4fb5ad2abb02b6229405858eef76 Parents: 788580c Author: Alex Clemmer <[email protected]> Authored: Thu Sep 10 12:07:56 2015 -0700 Committer: Joris Van Remoortere <[email protected]> Committed: Thu Sep 10 17:15:24 2015 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/588b94e7/3rdparty/libprocess/src/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/src/CMakeLists.txt b/3rdparty/libprocess/src/CMakeLists.txt index 9d1b1f5..fb9bd04 100644 --- a/3rdparty/libprocess/src/CMakeLists.txt +++ b/3rdparty/libprocess/src/CMakeLists.txt @@ -23,6 +23,7 @@ set(PROCESS_SRC decoder.hpp encoder.hpp event_loop.hpp + firewall.cpp gate.hpp help.cpp http.cpp
