mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 08:40:06 +02:00
25 lines
551 B
Plaintext
25 lines
551 B
Plaintext
From 11bc61f57b9a67d7dc91efc94147f1787ac9df08 Mon Sep 17 00:00:00 2001
|
|
From: Gerasim Troeglazov <3dEyes@gmail.com>
|
|
Date: Sat, 2 Jan 2021 00:56:36 +1000
|
|
Subject: Disable dbus
|
|
|
|
|
|
diff --git a/main.cpp b/main.cpp
|
|
index b39fcc9..a2c09bd 100644
|
|
--- a/main.cpp
|
|
+++ b/main.cpp
|
|
@@ -50,8 +50,9 @@ int main(int argc, char *argv[])
|
|
aboutData.setupCommandLine(&parser);
|
|
parser.process(app);
|
|
aboutData.processCommandLine(&parser);
|
|
-
|
|
+#ifndef __HAIKU__
|
|
KDBusService service;
|
|
+#endif
|
|
TopLevel *toplevel=0;
|
|
|
|
if (app.isSessionRestored())
|
|
--
|
|
2.28.0
|
|
|