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

[4/4] mesos git commit: Emit the build options at the end of configure.

Emit the build options at the end of configure.

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


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

Branch: refs/heads/master
Commit: 7214df1e26a7b998ed5c7d8bbc782ab695572246
Parents: 3be16ee
Author: James Peach <jp...@apache.org>
Authored: Thu Nov 3 15:50:55 2016 -0400
Committer: Kapil Arya <ka...@mesosphere.io>
Committed: Thu Nov 3 17:51:02 2016 -0400

----------------------------------------------------------------------
 configure.ac              | 8 ++++++++
 src/launcher/executor.cpp | 2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/7214df1e/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index c8d48be..5b2309e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2206,3 +2206,11 @@ AC_SUBST(MESOS_PATCH_VERSION, m4_car(m4_shift2(major_minor_patch)))
 
 
 AC_OUTPUT
+
+AC_MSG_NOTICE([Build option summary:
+    CXX:        $CXX
+    CXXFLAGS:   $CXXFLAGS
+    CPPFLAGS:   $CPPFLAGS
+    LDFLAGS:    $LDFLAGS
+    LIBS:       $LIBS
+])

http://git-wip-us.apache.org/repos/asf/mesos/blob/7214df1e/src/launcher/executor.cpp
----------------------------------------------------------------------
diff --git a/src/launcher/executor.cpp b/src/launcher/executor.cpp
index 46fa676..ce0b199 100644
--- a/src/launcher/executor.cpp
+++ b/src/launcher/executor.cpp
@@ -38,8 +38,8 @@
 #include <process/io.hpp>
 #include <process/process.hpp>
 #include <process/protobuf.hpp>
-#include <process/reap.hpp>
 #include <process/subprocess.hpp>
+#include <process/reap.hpp>
 #include <process/time.hpp>
 #include <process/timer.hpp>