From 0c588813f0d7961a2176926094a0fe4a407c46ba Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Fri, 21 May 2010 15:00:41 -0500 Subject: libraries/libvmime-zarafa: Removed (build failure) --- .../zarafa-patches/vmime-missing-boundary.diff | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 libraries/libvmime-zarafa/zarafa-patches/vmime-missing-boundary.diff (limited to 'libraries/libvmime-zarafa/zarafa-patches/vmime-missing-boundary.diff') diff --git a/libraries/libvmime-zarafa/zarafa-patches/vmime-missing-boundary.diff b/libraries/libvmime-zarafa/zarafa-patches/vmime-missing-boundary.diff deleted file mode 100644 index 724a68427f67c..0000000000000 --- a/libraries/libvmime-zarafa/zarafa-patches/vmime-missing-boundary.diff +++ /dev/null @@ -1,31 +0,0 @@ -diff -Nurb libvmime-0.7.1.orig/src/body.cpp libvmime-0.7.1/src/body.cpp ---- libvmime-0.7.1.orig/src/body.cpp 2005-03-18 22:26:46.000000000 +0100 -+++ libvmime-0.7.1/src/body.cpp 2006-01-12 15:45:48.443911888 +0100 -@@ -200,6 +200,27 @@ - - if (partStart < end) - m_epilogText = string(buffer.begin() + partStart, buffer.begin() + end); -+ -+ // lastPart was not found, so the last boundary was missing -+ // m_epilogText will become a bodyPart -+ if (!lastPart && pos == string::npos) { -+ bodyPart* part = new bodyPart; -+ -+ try -+ { -+ part->parse(m_epilogText); -+ } -+ catch (std::exception&) -+ { -+ delete (part); -+ throw; -+ } -+ -+ part->m_parent = m_part; -+ -+ m_parts.push_back(part); -+ } -+ - } - // Treat the contents as 'simple' data - else -- cgit v1.2.3