Blame SOURCES/evolution-shared-secondary-process.patch

69b638
diff --git a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
a477ed
index af43f9acfd24..3ac762417a98 100644
69b638
--- a/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
69b638
+++ b/Source/WebKit/UIProcess/API/glib/WebKitWebContext.cpp
a477ed
@@ -397,7 +397,7 @@ static void webkitWebContextConstructed(GObject* object)
a477ed
     configuration.setProcessSwapsOnNavigation(priv->psonEnabled);
a477ed
     if (!priv->psonEnabled) {
69b638
         const char* useSingleWebProcess = getenv("WEBKIT_USE_SINGLE_WEB_PROCESS");
a477ed
-        if (useSingleWebProcess && strcmp(useSingleWebProcess, "0"))
a477ed
+        if ((useSingleWebProcess && strcmp(useSingleWebProcess, "0")) || !g_strcmp0(g_get_prgname(), "evolution"))
69b638
             configuration.setUsesSingleWebProcess(true);
69b638
     }
69b638