Skip to content
Snippets Groups Projects
Commit ae11dfe1 authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

build fix

parent 3623e6eb
No related branches found
No related tags found
No related merge requests found
...@@ -388,7 +388,7 @@ void LLApp::setupErrorHandling(bool second_instance) ...@@ -388,7 +388,7 @@ void LLApp::setupErrorHandling(bool second_instance)
#if defined(LL_BUGSPLAT) #if defined(LL_BUGSPLAT)
// Don't install our own signal handlers -- BugSplat needs to hook them, // Don't install our own signal handlers -- BugSplat needs to hook them,
// or it's completely ineffectual. // or it's completely ineffectual.
bool installHandler = false; //bool installHandler = false;
#else // ! LL_BUGSPLAT #else // ! LL_BUGSPLAT
// //
...@@ -400,7 +400,7 @@ void LLApp::setupErrorHandling(bool second_instance) ...@@ -400,7 +400,7 @@ void LLApp::setupErrorHandling(bool second_instance)
setup_signals(); setup_signals();
// Add google breakpad exception handler configured for Darwin/Linux. // Add google breakpad exception handler configured for Darwin/Linux.
bool installHandler = true; //bool installHandler = true;
#endif // ! LL_BUGSPLAT #endif // ! LL_BUGSPLAT
#if LL_DARWIN #if LL_DARWIN
...@@ -427,13 +427,13 @@ void LLApp::setupErrorHandling(bool second_instance) ...@@ -427,13 +427,13 @@ void LLApp::setupErrorHandling(bool second_instance)
{ {
// P_TRACED flag is set, so this process is being debugged; do not install // P_TRACED flag is set, so this process is being debugged; do not install
// the handler // the handler
if(info.kp_proc.p_flag & P_TRACED) installHandler = false; //if(info.kp_proc.p_flag & P_TRACED) installHandler = false;
} }
else else
{ {
// Failed to discover if the process is being debugged; default to // Failed to discover if the process is being debugged; default to
// installing the handler. // installing the handler.
installHandler = true; //installHandler = true;
} }
#endif // ! LL_RELEASE_FOR_DOWNLOAD #endif // ! LL_RELEASE_FOR_DOWNLOAD
......
...@@ -243,11 +243,11 @@ bool LLAppViewerMacOSX::init() ...@@ -243,11 +243,11 @@ bool LLAppViewerMacOSX::init()
bool success = LLAppViewer::init(); bool success = LLAppViewer::init();
#if LL_SEND_CRASH_REPORTS #if LL_SEND_CRASH_REPORTS
if (success) /*if (success)
{ {
LLAppViewer* pApp = LLAppViewer::instance(); LLAppViewer* pApp = LLAppViewer::instance();
pApp->initCrashReporting(); pApp->initCrashReporting();
} }*/
#endif #endif
return success; return success;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment