kdepimpi: fix the QMutexLocker build fix
authorMichael Krelin <hacker@klever.net>
Sun, 6 May 2007 13:44:47 +0000 (13:44 +0000)
committerMichael Krelin <hacker@klever.net>
Sun, 6 May 2007 13:44:47 +0000 (13:44 +0000)
- patch to provide the QMutexLocker implementation.

packages/kdepimpi/files/qt-mt.patch [new file with mode: 0644]
packages/kdepimpi/kdepimpi_2.2.7.bb

diff --git a/packages/kdepimpi/files/qt-mt.patch b/packages/kdepimpi/files/qt-mt.patch
new file mode 100644 (file)
index 0000000..c7e3f9d
--- /dev/null
@@ -0,0 +1,41 @@
+diff --git a/microkde/kresources/resource.cpp b/microkde/kresources/resource.cpp
+index cccd485..65d82e2 100644
+--- a/microkde/kresources/resource.cpp
++++ b/microkde/kresources/resource.cpp
+@@ -29,6 +29,23 @@
+ using namespace KRES;
++namespace fixme {
++    class QMutexLocker {
++      public:
++          QMutexLocker(QMutex *m)  : mtx(m) {
++              if(mtx) mtx->lock();
++          }
++          ~QMutexLocker() {
++              if(mtx) mtx->unlock();
++          }
++
++          QMutex *mutex() const { return mtx; }
++      private:
++          QMutex *mtx;
++    };
++}
++using namespace fixme;
++
+ class Resource::ResourcePrivate
+ {
+   public:
+diff --git a/microkde/kresources/resource.h b/microkde/kresources/resource.h
+index ed5af96..997fff6 100644
+--- a/microkde/kresources/resource.h
++++ b/microkde/kresources/resource.h
+@@ -25,7 +25,7 @@
+ //US
+ #ifdef QT_THREAD_SUPPORT
+-#include <qmutex.h>
++#include <qthread.h>
+ #endif //QT_THREAD_SUPPORT
+ #include <qvaluelist.h>
index 6059bf8..ca4d5c0 100644 (file)
@@ -1,5 +1,6 @@
 SRC_URI = "${SOURCEFORGE_MIRROR}/kdepimpi/kdepimpi-${PV}.tar.gz \
-           file://gcc4.patch;patch=1"
+           file://gcc4.patch;patch=1 \
+          file://qt-mt.patch;patch=1"
 
 require kdepimpi-base.inc