19fb36c
--- libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h.threading	2017-02-15 13:40:53.796004263 +0000
19fb36c
+++ libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h	2017-02-15 13:40:46.907000493 +0000
19fb36c
@@ -188,6 +188,7 @@
19fb36c
 /* classes for multithreading support
19fb36c
 */
19fb36c
 
19fb36c
+#if 0
19fb36c
 class DXXAPI Mutex
19fb36c
 {
19fb36c
 public:
19fb36c
@@ -243,9 +244,11 @@
19fb36c
 typedef bool (*CondVarWaitTimeoutFn)(CondVar *cv, Mutex *mx, int timeout);
19fb36c
 typedef void (*CondVarWakeOneFn)(CondVar *cv);
19fb36c
 typedef void (*CondVarWakeAllFn)(CondVar *cv);
19fb36c
+#endif
19fb36c
 
19fb36c
 void DXXAPI _init_threading();
19fb36c
 
19fb36c
+#if 0
19fb36c
 void DXXAPI _init_threading(
19fb36c
   MutexNewFn, MutexFreeFn, MutexLockFn, MutexUnlockFn,
19fb36c
   CondVarNewFn, CondVarFreeFn, CondVarWaitFn, CondVarWaitTimeoutFn, CondVarWakeOneFn, CondVarWakeAllFn
19fb36c
@@ -312,6 +315,7 @@
19fb36c
     cv->wake_all();
19fb36c
   }
19fb36c
 };
19fb36c
+#endif
19fb36c
 
19fb36c
 } /* namespace DBus */
19fb36c
 
19fb36c
--- libdbus-c++-0.9.0/src/dispatcher.cpp.threading	2017-02-15 13:48:22.627249868 +0000
19fb36c
+++ libdbus-c++-0.9.0/src/dispatcher.cpp	2017-02-15 13:48:29.164253445 +0000
19fb36c
@@ -253,6 +253,7 @@
19fb36c
 #endif//DBUS_HAS_THREADS_INIT_DEFAULT
19fb36c
 }
19fb36c
 
19fb36c
+#if 0
19fb36c
 void DBus::_init_threading(
19fb36c
   MutexNewFn m1,
19fb36c
   MutexFreeFn m2,
19fb36c
@@ -318,3 +319,4 @@
19fb36c
 #endif//DBUS_HAS_RECURSIVE_MUTEX
19fb36c
   dbus_threads_init(&functions);
19fb36c
 }
19fb36c
+#endif