freebsd-ports/biology/ugene/files/patch-src_plugins__checker_src_Main.cpp
Alexey Dokuchaev 8f46816990 - Update Unipro UGENE port to version 37.0
- Drop no longer used WebEngine dependencies
- Force SSE2 on i386 (required for the build)
- Chase HTTP 301 redirection in the WWW line
2020-12-31 13:43:09 +00:00

32 lines
837 B
C++

--- src/plugins_checker/src/Main.cpp.orig 2018-08-16 13:59:06 UTC
+++ src/plugins_checker/src/Main.cpp
@@ -39,7 +39,7 @@
#include <ServiceRegistryImpl.h>
#include <SettingsImpl.h>
#include <TaskSchedulerImpl.h>
-#include <crash_handler/CrashHandler.h>
+//#include <crash_handler/CrashHandler.h>
#define TR_SETTINGS_ROOT QString("test_runner/")
@@ -55,8 +55,10 @@ static void registerCoreServices() {
}
#endif
+#if 0
CrashHandler::setupHandler();
CrashHandler::setSendCrashReports(false);
+#endif
const char* build = QT_VERSION_STR, *runtime = qVersion();
if (strcmp(build, runtime) > 0){
@@ -141,7 +143,7 @@ int main(int argc, char **argv)
delete cmdLineRegistry;
appContext->setCMDLineRegistry(NULL);
- CrashHandler::shutdown();
+ //CrashHandler::shutdown();
return rc;
}