Disable "process.macosx" plugin, since it is not being actively supported
at the moment, and no longer works properly (bit rot).



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116626 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/lldb.cpp b/source/lldb.cpp
index 0f85c57..2ae9330 100644
--- a/source/lldb.cpp
+++ b/source/lldb.cpp
@@ -80,7 +80,7 @@
         ObjectContainerUniversalMachO::Initialize();
         ObjectFileMachO::Initialize();
         ProcessGDBRemote::Initialize();
-        ProcessMacOSX::Initialize();
+        //ProcessMacOSX::Initialize();
         SymbolVendorMacOSX::Initialize();
 #endif
 	Debugger::GetSettingsController (false);
@@ -117,7 +117,7 @@
     ObjectContainerUniversalMachO::Terminate();
     ObjectFileMachO::Terminate();
     ProcessGDBRemote::Terminate();
-    ProcessMacOSX::Terminate();
+    //ProcessMacOSX::Terminate();
     SymbolVendorMacOSX::Terminate();
 #endif