diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2007-01-12 15:37:47 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2007-01-12 15:37:47 +0000 |
commit | c5d3cb7a471e917f4cdd3a6b97d5529eab3a0bfb (patch) | |
tree | 9c4f2d75ef7a84d7cce578643266ea8b177fff58 /dev-libs/tvision/files | |
parent | Version bump plus a buffer underflow fix (#160591) (diff) | |
download | gentoo-2-c5d3cb7a471e917f4cdd3a6b97d5529eab3a0bfb.tar.gz gentoo-2-c5d3cb7a471e917f4cdd3a6b97d5529eab3a0bfb.tar.bz2 gentoo-2-c5d3cb7a471e917f4cdd3a6b97d5529eab3a0bfb.zip |
Version bump plus a buffer underflow fix (#160591)
(Portage version: 2.1.2_rc4-r8)
(Signed Manifest commit)
Diffstat (limited to 'dev-libs/tvision/files')
-rw-r--r-- | dev-libs/tvision/files/tvision-2.0.3-gcc4.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-libs/tvision/files/tvision-2.0.3-gcc4.patch b/dev-libs/tvision/files/tvision-2.0.3-gcc4.patch deleted file mode 100644 index 13a1ddb6a26e..000000000000 --- a/dev-libs/tvision/files/tvision-2.0.3-gcc4.patch +++ /dev/null @@ -1,35 +0,0 @@ -http://bugs.gentoo.org/130223 - ---- include/compatlayer.h -+++ include/compatlayer.h -@@ -324,7 +324,7 @@ - library. GCC implemented it in version 3.0. BC++ implemented some - stuff in versions like BC++ 5.5. So that's a real mess. */ - #if __GNUC__>=3 -- #if __GNUC_MINOR__>=4 -+ #if __GNUC__ >=4 || __GNUC_MINOR__>=4 - // gcc 3.4. It have __gnu_cxx::stdio_filebuf class. - #define CLY_filebuf __gnu_cxx::stdio_filebuf<char> - #define CLY_int_filebuf CLY_filebuf ---- classes/tinputli.cc -+++ classes/tinputli.cc -@@ -85,9 +85,6 @@ - modeOptions=defaultModeOptions; - } - --template class TInputLineBaseT<char,TDrawBuffer>; --template class TInputLineBaseT<uint16,TDrawBufferU16>; -- - template <typename T, typename D> - TInputLineBaseT<T,D>::TInputLineBaseT(const TRect& bounds, int aMaxLen) : - TInputLineBase(bounds,aMaxLen) -@@ -97,6 +94,9 @@ - cellSize=sizeof(T); - } - -+template class TInputLineBaseT<char,TDrawBuffer>; -+template class TInputLineBaseT<uint16,TDrawBufferU16>; -+ - void TInputLineBase::SetValidator(TValidator * aValidator) - { - CLY_destroy(validator); |