You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2016/04/01 04:32:10 UTC

mesos git commit: Revert "Upgraded libev to 4.22 to support PowerPC LE platform [mesos]."

Repository: mesos
Updated Branches:
  refs/heads/master df29bf033 -> 53e8c0859


Revert "Upgraded libev to 4.22 to support PowerPC LE platform [mesos]."

This reverts commit df29bf0338771c92d1b1d3848181a35429cdcf0f.

Accidentally committed this review without first committing its dependent
reviews.


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

Branch: refs/heads/master
Commit: 53e8c0859d7b336bcd2925ac72efb0020a9c2f60
Parents: df29bf0
Author: Vinod Kone <vi...@gmail.com>
Authored: Thu Mar 31 19:31:37 2016 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Thu Mar 31 19:31:37 2016 -0700

----------------------------------------------------------------------
 3rdparty/cmake/Versions.cmake              | 2 +-
 LICENSE                                    | 2 +-
 src/python/native_common/ext_modules.py.in | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/53e8c085/3rdparty/cmake/Versions.cmake
----------------------------------------------------------------------
diff --git a/3rdparty/cmake/Versions.cmake b/3rdparty/cmake/Versions.cmake
index 35d7e98..b89efd5 100644
--- a/3rdparty/cmake/Versions.cmake
+++ b/3rdparty/cmake/Versions.cmake
@@ -5,7 +5,7 @@ set(GMOCK_VERSION       "1.7.0")
 set(HTTP_PARSER_VERSION "2.6.1")
 set(LEVELDB_VERSION     "1.4")
 set(LIBAPR_VERSION      "1.5.2")
-set(LIBEV_VERSION       "4.22")
+set(LIBEV_VERSION       "4.15")
 # TODO(hausdorff): (MESOS-3529) transition this back to a non-beta version.
 set(LIBEVENT_VERSION    "2.1.5-beta")
 set(PICOJSON_VERSION    "1.3.0")

http://git-wip-us.apache.org/repos/asf/mesos/blob/53e8c085/LICENSE
----------------------------------------------------------------------
diff --git a/LICENSE b/LICENSE
index 1c0355c..bbea085 100644
--- a/LICENSE
+++ b/LICENSE
@@ -472,7 +472,7 @@ support library is itself covered by the above license.
 
 
 ======================================================================
-For libev-4.22 (3rdparty/libprocess/3rdparty/libev-4.22.tar.gz):
+For libev-4.15 (3rdparty/libprocess/3rdparty/libev.tar.gz):
 ======================================================================
 
 All files in libev are

http://git-wip-us.apache.org/repos/asf/mesos/blob/53e8c085/src/python/native_common/ext_modules.py.in
----------------------------------------------------------------------
diff --git a/src/python/native_common/ext_modules.py.in b/src/python/native_common/ext_modules.py.in
index 125b55e..1c2fc49 100644
--- a/src/python/native_common/ext_modules.py.in
+++ b/src/python/native_common/ext_modules.py.in
@@ -107,7 +107,7 @@ def _create_module(module_name):
     # TODO(hartem): this entire block MUST be removed once libev is deprecated
     # in favor of libevent.
     if '@ENABLE_LIBEVENT_TRUE@' == '#':
-        libev = os.path.join(libprocess, '3rdparty', 'libev-4.22')
+        libev = os.path.join(libprocess, '3rdparty', 'libev-4.15')
         libev = os.path.join(abs_top_builddir, libev, '.libs', 'libev.a')
 
         if os.path.exists(libev):