summaryrefslogtreecommitdiff
path: root/misc/kdepim3/patches
diff options
context:
space:
mode:
authormarkd <markd>2005-10-13 13:12:25 +0000
committermarkd <markd>2005-10-13 13:12:25 +0000
commitdf43c02c1e692143cb544f7a0bda7da249364498 (patch)
tree64e51ec5983d2250bb57a5eb3ace89dad377452c /misc/kdepim3/patches
parent414a3ffd72084a273bac0aae7eeac84a790b52d0 (diff)
downloadpkgsrc-df43c02c1e692143cb544f7a0bda7da249364498.tar.gz
Update to KDE 3.4.3
Changes: backported bug fixes.
Diffstat (limited to 'misc/kdepim3/patches')
-rw-r--r--misc/kdepim3/patches/patch-ac16
-rw-r--r--misc/kdepim3/patches/patch-ad16
-rw-r--r--misc/kdepim3/patches/patch-ae21
3 files changed, 0 insertions, 53 deletions
diff --git a/misc/kdepim3/patches/patch-ac b/misc/kdepim3/patches/patch-ac
deleted file mode 100644
index 40b9ac0a4c5..00000000000
--- a/misc/kdepim3/patches/patch-ac
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ac,v 1.7 2005/06/19 11:02:41 markd Exp $
-
---- kmailcvt/filter_oe.cxx.orig 2005-06-16 21:37:13.000000000 +1200
-+++ kmailcvt/filter_oe.cxx
-@@ -397,7 +397,11 @@ QString FilterOE::getFolderName(QString
- while (!found)
- {
- for ( QValueList<QString[4]>::Iterator it = folderStructure.begin(); it != folderStructure.end(); it++) {
-+#if defined(__GNUC__) && __GNUC__ <= 2
-+ QString tmp[4]; tmp = *it;
-+#else
- QString tmp[4] = *it;
-+#endif
- if(foundFilename == false) {
- QString _tmpFileName = tmp[1];
- _tmpFileName = _tmpFileName.lower();
diff --git a/misc/kdepim3/patches/patch-ad b/misc/kdepim3/patches/patch-ad
deleted file mode 100644
index 93806617748..00000000000
--- a/misc/kdepim3/patches/patch-ad
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ad,v 1.5 2005/06/19 11:02:41 markd Exp $
-
---- kmailcvt/filter_pmail.cxx.orig 2005-05-24 00:12:15.000000000 +1200
-+++ kmailcvt/filter_pmail.cxx
-@@ -326,7 +326,11 @@ QString FilterPMail::getFolderName(QStri
- while (!found)
- {
- for ( QValueList<QString[5]>::Iterator it = folderMatrix.begin(); it != folderMatrix.end(); it++) {
-+#if defined (__GNUC__) && __GNUC__ <= 2
-+ QString tmp[5]; tmp = *it;
-+#else
- QString tmp[5] = *it;
-+#endif
-
- QString _ID = tmp[2];
- if(_ID == search) {
diff --git a/misc/kdepim3/patches/patch-ae b/misc/kdepim3/patches/patch-ae
deleted file mode 100644
index d6dfdb41f96..00000000000
--- a/misc/kdepim3/patches/patch-ae
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ae,v 1.5 2005/08/02 10:29:20 markd Exp $
-
---- kmail/partNode.cpp.orig 2005-08-02 21:49:46.000000000 +1200
-+++ kmail/partNode.cpp
-@@ -36,6 +36,7 @@
- #include "kmmimeparttree.h"
- #include <mimelib/utility.h>
- #include <qregexp.h>
-+#include <kasciistricmp.h>
-
- /*
- ===========================================================================
-@@ -414,7 +415,7 @@ partNode* partNode::findType( int type,
- partNode* partNode::findNodeForDwPart( DwBodyPart* part )
- {
- partNode* found = 0;
-- if( dwPart()->partId() == part->partId() )
-+ if( kasciistricmp( dwPart()->partId(), part->partId() ) == 0 )
- return this;
- if( mChild )
- found = mChild->findNodeForDwPart( part );