summaryrefslogtreecommitdiff
path: root/multimedia/vls/patches/patch-ag
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2013-01-22 11:41:19 +0000
committerwiz <wiz@pkgsrc.org>2013-01-22 11:41:19 +0000
commit7c840025e8609df1f5e12fd656e3a35a35a899a4 (patch)
tree009760080e97108b3d7d08213f136a12279126fe /multimedia/vls/patches/patch-ag
parent07d127c14f905fd20cee10a5e5b353004949ad32 (diff)
downloadpkgsrc-7c840025e8609df1f5e12fd656e3a35a35a899a4.tar.gz
Remove vls -- doesn't build, no new release since 2008, not even mentioned
on homepage.
Diffstat (limited to 'multimedia/vls/patches/patch-ag')
-rw-r--r--multimedia/vls/patches/patch-ag30
1 files changed, 0 insertions, 30 deletions
diff --git a/multimedia/vls/patches/patch-ag b/multimedia/vls/patches/patch-ag
deleted file mode 100644
index 801db5ddccd..00000000000
--- a/multimedia/vls/patches/patch-ag
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-ag,v 1.1 2006/01/03 14:04:27 joerg Exp $
-
---- src/core/stream.cpp.orig 2006-01-03 13:54:46.000000000 +0000
-+++ src/core/stream.cpp
-@@ -319,7 +319,7 @@ template <class IOStream>
- {
- try
- {
-- u32 iByteCount = cSerializer.NextBytesCount();
-+ u32 iByteCount = this->cSerializer.NextBytesCount();
- while(iByteCount > 0)
- {
- const byte aBytes[iByteCount];
-@@ -332,13 +332,13 @@ template <class IOStream>
- ASSERT(iRc >= 0 || iRc == FILE_EOF);
- iOffset += iRc;
- }
-- while(iByteCount > 0 && iRc != FILE_EOF);
-+ while(iByteCount > 0 && this->iRc != FILE_EOF);
-
- // Deserialize them
-- cSerializer.SetNextBytes(&aBytes);
-+ this->cSerializer.SetNextBytes(&aBytes);
-
- // Next iteration
-- iByteCount = cSerializer.NextBytesCount();
-+ iByteCount = this->cSerializer.NextBytesCount();
- }
- }
- catch(E_Exception e)