Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsidplay/files/
Date: Tue, 03 Jan 2017 23:07:10
Message-Id: 1483484638.66ee44eee20c60fd61f00eb4be5aa2a6f36cdef0.monsieurp@gentoo
1 commit: 66ee44eee20c60fd61f00eb4be5aa2a6f36cdef0
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Jan 3 16:39:36 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 23:03:58 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ee44ee
7
8 media-libs/libsidplay: remove unused patch.
9
10 Closes: https://github.com/gentoo/gentoo/pull/3312
11
12 media-libs/libsidplay/files/libsidplay-gcc34.patch | 26 ----------------------
13 1 file changed, 26 deletions(-)
14
15 diff --git a/media-libs/libsidplay/files/libsidplay-gcc34.patch b/media-libs/libsidplay/files/libsidplay-gcc34.patch
16 deleted file mode 100644
17 index bf59fc9..00000000
18 --- a/media-libs/libsidplay/files/libsidplay-gcc34.patch
19 +++ /dev/null
20 @@ -1,26 +0,0 @@
21 ---- src/smart.h
22 -+++ src/smart.h
23 -@@ -207,16 +207,16 @@
24 - {
25 - if ( bufferLen >= 1 )
26 - {
27 -- pBufCurrent = ( bufBegin = buffer );
28 -- bufEnd = bufBegin + bufferLen;
29 -- bufLen = bufferLen;
30 -- status = true;
31 -+ this->pBufCurrent = ( this->bufBegin = buffer );
32 -+ this->bufEnd = this->bufBegin + bufferLen;
33 -+ this->bufLen = bufferLen;
34 -+ this->status = true;
35 - }
36 - else
37 - {
38 -- pBufCurrent = bufBegin = bufEnd = 0;
39 -- bufLen = 0;
40 -- status = false;
41 -+ this->pBufCurrent = this->bufBegin = this->bufEnd = 0;
42 -+ this->bufLen = 0;
43 -+ this->status = false;
44 - }
45 - }
46 - };