d417c4
diff -up firefox-60.1.0/toolkit/components/remote/moz.build.disable-dbus-remote firefox-60.1.0/toolkit/components/remote/moz.build
d417c4
--- firefox-60.1.0/toolkit/components/remote/moz.build.disable-dbus-remote	2018-06-21 09:29:35.975729500 +0200
d417c4
+++ firefox-60.1.0/toolkit/components/remote/moz.build	2018-06-21 09:29:53.863631963 +0200
d417c4
@@ -22,11 +22,6 @@ if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']
d417c4
         'nsGTKRemoteService.cpp',
d417c4
         'nsRemoteService.cpp',
d417c4
     ]
d417c4
-    if CONFIG['MOZ_ENABLE_DBUS']:
d417c4
-        SOURCES += [
d417c4
-            'nsDBusRemoteService.cpp',
d417c4
-        ]
d417c4
-        CXXFLAGS += CONFIG['MOZ_DBUS_GLIB_CFLAGS']
d417c4
 
d417c4
 FINAL_LIBRARY = 'xul'
d417c4
 
d417c4
diff -up firefox-60.1.0/toolkit/components/remote/nsRemoteService.cpp.disable-dbus-remote firefox-60.1.0/toolkit/components/remote/nsRemoteService.cpp
d417c4
--- firefox-60.1.0/toolkit/components/remote/nsRemoteService.cpp.disable-dbus-remote	2018-06-19 22:35:27.000000000 +0200
d417c4
+++ firefox-60.1.0/toolkit/components/remote/nsRemoteService.cpp	2018-06-21 09:30:24.949462465 +0200
d417c4
@@ -6,7 +6,7 @@
d417c4
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
d417c4
 
d417c4
 #include "nsGTKRemoteService.h"
d417c4
-#ifdef MOZ_ENABLE_DBUS
d417c4
+#if 0 // Disable DBus remote
d417c4
 #include "nsDBusRemoteService.h"
d417c4
 #endif
d417c4
 #include "nsRemoteService.h"
d417c4
@@ -34,7 +34,7 @@ NS_IMPL_ISUPPORTS(nsRemoteService,
d417c4
 NS_IMETHODIMP
d417c4
 nsRemoteService::Startup(const char* aAppName, const char* aProfileName)
d417c4
 {
d417c4
-#if defined(MOZ_ENABLE_DBUS)
d417c4
+#if 0 // Disable DBus remote
d417c4
     nsresult rv;
d417c4
     mDBusRemoteService = new nsDBusRemoteService();
d417c4
     rv = mDBusRemoteService->Startup(aAppName, aProfileName);