You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 11:08:46 UTC

svn commit: r1132258 - in /incubator/mesos/trunk/src/common: build.cpp build.hpp

Author: benh
Date: Sun Jun  5 09:08:46 2011
New Revision: 1132258

URL: http://svn.apache.org/viewvc?rev=1132258&view=rev
Log:
Oops, forgot to add the new common/build.* files.

Added:
    incubator/mesos/trunk/src/common/build.cpp
    incubator/mesos/trunk/src/common/build.hpp

Added: incubator/mesos/trunk/src/common/build.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/common/build.cpp?rev=1132258&view=auto
==============================================================================
--- incubator/mesos/trunk/src/common/build.cpp (added)
+++ incubator/mesos/trunk/src/common/build.cpp Sun Jun  5 09:08:46 2011
@@ -0,0 +1,12 @@
+#include <string>
+
+using std::string;
+
+
+namespace mesos { namespace internal { namespace build {
+
+extern const string DATE = BUILD_DATE;
+extern const string USER = BUILD_USER;
+extern const string FLAGS = BUILD_FLAGS;
+
+}}} // namespace mesos { namespace internal { namespace build {

Added: incubator/mesos/trunk/src/common/build.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/common/build.hpp?rev=1132258&view=auto
==============================================================================
--- incubator/mesos/trunk/src/common/build.hpp (added)
+++ incubator/mesos/trunk/src/common/build.hpp Sun Jun  5 09:08:46 2011
@@ -0,0 +1,10 @@
+#include <string>
+
+
+namespace mesos { namespace internal { namespace build {
+
+extern const std::string DATE;
+extern const std::string USER;
+extern const std::string FLAGS;
+
+}}} // namespace mesos { namespace internal { namespace build {