From e87114d6ce5d245b3657ac1a177b86589b328336 Mon Sep 17 00:00:00 2001
From: Roman Tsisyk <roman@tsisyk.com>
Date: Wed, 10 Jul 2013 13:03:53 +0400
Subject: [PATCH] Disable plugins on OS X (See Bug#1199675)

---
 src/CMakeLists.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index fe000c8f2b..efd1e2b148 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -3,8 +3,9 @@
 #
 enable_tnt_compile_flags()
 
-
-add_subdirectory(plugin)
+if (NOT TARGET_OS_DARWIN)
+    add_subdirectory(plugin)
+endif()
 
 include_directories(${LIBEV_INCLUDE_DIR})
 include_directories(${LIBEIO_INCLUDE_DIR})
-- 
GitLab