diff options
author | Changhyeok Bae <changhyeok.bae@gmail.com> | 2017-12-25 16:26:23 +0000 |
---|---|---|
committer | ronan <ronan.lemartret@gmail.com> | 2018-02-13 17:22:38 +0100 |
commit | 5aa7c89101a7f6beeacef5bafbd9549297ad4741 (patch) | |
tree | 83bb22b5d5aa3d896bf717e3f11a20694b400478 | |
parent | 706ea4ba002b6a8f49e3513dbe08b4dbbdce48f4 (diff) |
libdbus-c++:Fix build error in GCC-7
See: https://sourceforge.net/p/dbus-cplusplus/patches/18/
Bug-AGL: SPEC-1181
Change-Id: Ic8f923a03407e58aff2133747a65799f90d15286
Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
-rw-r--r-- | recipes-core/dbus/libdbus-c++/dbus-c++-threading.patch | 45 | ||||
-rw-r--r-- | recipes-core/dbus/libdbus-c++_0.9.0.bbappend | 2 |
2 files changed, 47 insertions, 0 deletions
diff --git a/recipes-core/dbus/libdbus-c++/dbus-c++-threading.patch b/recipes-core/dbus/libdbus-c++/dbus-c++-threading.patch new file mode 100644 index 000000000..c4fafef62 --- /dev/null +++ b/recipes-core/dbus/libdbus-c++/dbus-c++-threading.patch @@ -0,0 +1,45 @@ +--- libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h.threading 2017-02-15 13:40:53.796004263 +0000 ++++ libdbus-c++-0.9.0/include/dbus-c++/dispatcher.h 2017-02-15 13:40:46.907000493 +0000 +@@ -188,6 +188,7 @@ + /* classes for multithreading support + */ + ++#if 0 + class DXXAPI Mutex + { + public: +@@ -243,9 +244,11 @@ + typedef bool (*CondVarWaitTimeoutFn)(CondVar *cv, Mutex *mx, int timeout); + typedef void (*CondVarWakeOneFn)(CondVar *cv); + typedef void (*CondVarWakeAllFn)(CondVar *cv); ++#endif + + void DXXAPI _init_threading(); + ++#if 0 + void DXXAPI _init_threading( + MutexNewFn, MutexFreeFn, MutexLockFn, MutexUnlockFn, + CondVarNewFn, CondVarFreeFn, CondVarWaitFn, CondVarWaitTimeoutFn, CondVarWakeOneFn, CondVarWakeAllFn +@@ -312,6 +315,7 @@ + cv->wake_all(); + } + }; ++#endif + + } /* namespace DBus */ + +--- libdbus-c++-0.9.0/src/dispatcher.cpp.threading 2017-02-15 13:48:22.627249868 +0000 ++++ libdbus-c++-0.9.0/src/dispatcher.cpp 2017-02-15 13:48:29.164253445 +0000 +@@ -253,6 +253,7 @@ + #endif//DBUS_HAS_THREADS_INIT_DEFAULT + } + ++#if 0 + void DBus::_init_threading( + MutexNewFn m1, + MutexFreeFn m2, +@@ -318,3 +319,4 @@ + #endif//DBUS_HAS_RECURSIVE_MUTEX + dbus_threads_init(&functions); + } ++#endif diff --git a/recipes-core/dbus/libdbus-c++_0.9.0.bbappend b/recipes-core/dbus/libdbus-c++_0.9.0.bbappend new file mode 100644 index 000000000..dac44b5e6 --- /dev/null +++ b/recipes-core/dbus/libdbus-c++_0.9.0.bbappend @@ -0,0 +1,2 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" +SRC_URI_append = "file://dbus-c++-threading.patch" |