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