From: gregor herrmann Date: Sat, 10 Sep 2011 15:17:20 +0000 (-0000) Subject: Remove patch patch const-correctness.patch, applied upstream. X-Git-Tag: debian/0.9.7-1~7 X-Git-Url: https://git.toastfreeware.priv.at/debian/mimetic.git/commitdiff_plain/b90f571c5b286ba77a0c40e00ee9af26b7efa745?hp=4aca255a8978c1b1b1cf7372b4969d3309720a9f Remove patch patch const-correctness.patch, applied upstream. --- diff --git a/debian/changelog b/debian/changelog index c62d250..3874f46 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 index e42c8f0..0000000 --- a/debian/patches/const-correctness.patch +++ /dev/null @@ -1,26 +0,0 @@ -Origin: vendor -Bug-Debian: http://bugs.debian.org/583507 -Forwarded: yes -Author: Berthold Stoeger -Reviewed-by: gregor herrmann -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 index 0ee5099..0000000 --- a/debian/patches/series +++ /dev/null @@ -1 +0,0 @@ -const-correctness.patch