Remove patch patch const-correctness.patch, applied upstream.
authorgregor herrmann <gregoa@debian.org>
Sat, 10 Sep 2011 15:17:20 +0000 (15:17 -0000)
committergregor herrmann <gregoa@debian.org>
Sat, 10 Sep 2011 15:17:20 +0000 (15:17 -0000)
debian/changelog
debian/patches/const-correctness.patch [deleted file]
debian/patches/series [deleted file]

index c62d2509e8fb197b7f7ef1dc8e51699ede68010b..3874f46c93da99d004764cfce90c9e2a5edfe2dd 100644 (file)
@@ -2,6 +2,7 @@ mimetic (0.9.7-1) UNRELEASED; urgency=low
 
   * New upstream release.
   * Update years of packaging copyright.
+  * Remove patch patch const-correctness.patch, applied upstream.
 
  -- gregor herrmann <gregoa@debian.org>  Sat, 10 Sep 2011 17:10:44 +0200
 
diff --git a/debian/patches/const-correctness.patch b/debian/patches/const-correctness.patch
deleted file mode 100644 (file)
index e42c8f0..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-Origin: vendor
-Bug-Debian: http://bugs.debian.org/583507
-Forwarded: yes
-Author: Berthold Stoeger <bs@bdf-net.com>
-Reviewed-by: gregor herrmann <gregoa@debian.org>
-Last-Update: 2010-05-29
-Description:
- Due to an error in the header file /usr/include/mimetic/body.h modern gcc versions (>=4.3)
- refuse to compile perfectly valid programs using an encoder of libmimetic.
- .
- A less serious side effect of the bug is suboptimal performance.
- .
- The problem is fixed by the following patch which changes the code to the
- version obviously intended by the author:
-
---- a/mimetic/body.h
-+++ b/mimetic/body.h
-@@ -137,7 +137,7 @@
-     if(codec.codeSizeMultiplier() > 1.0)
-         coded.reserve((size_type)::ceil(size() * codec.codeSizeMultiplier()));
--    mimetic::code(begin(), end(), cc, back_inserter(coded) );
-+    mimetic::code(begin(), end(), codec, back_inserter(coded) );
-     this->assign(coded);
-     return true;
- }
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644 (file)
index 0ee5099..0000000
+++ /dev/null
@@ -1 +0,0 @@
-const-correctness.patch