This is an automated email from the ASF dual-hosted git repository.

tillt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit bfbb9e0ad12594c2d2b60567779b7542a0515589
Author: Till Toenshoff <[email protected]>
AuthorDate: Thu Oct 4 15:45:06 2018 +0200

    Removed unbundling by default for libevent on macOS when using CMake.
    
    Review: https://reviews.apache.org/r/68919/
---
 cmake/CompilationConfigure.cmake | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/cmake/CompilationConfigure.cmake b/cmake/CompilationConfigure.cmake
index a820c86..5d2be0a 100644
--- a/cmake/CompilationConfigure.cmake
+++ b/cmake/CompilationConfigure.cmake
@@ -80,17 +80,10 @@ option(
   FALSE)
 
 if (ENABLE_LIBEVENT)
-  # TODO(tillt): Consider adding Ubuntu 17 to this check. See MESOS-7076.
-  if (NOT APPLE)
-    set(DEFAULT_UNBUNDLED_LIBEVENT FALSE)
-  else ()
-    set(DEFAULT_UNBUNDLED_LIBEVENT TRUE)
-  endif ()
-
   option(
     UNBUNDLED_LIBEVENT
     "Build libprocess with an installed libevent version instead of the 
bundled."
-    ${DEFAULT_UNBUNDLED_LIBEVENT})
+    FALSE)
 
   if (UNBUNDLED_LIBEVENT)
     set(

Reply via email to