diff options
author | Brendan Fabeny <bf@FreeBSD.org> | 2011-03-11 19:01:27 +0000 |
---|---|---|
committer | Brendan Fabeny <bf@FreeBSD.org> | 2011-03-11 19:01:27 +0000 |
commit | 0553e1193f006b942070e9749f0b6a05d399d82e (patch) | |
tree | 8a58d0d4bf1e5f9ba2a0d5fe4f3693674b879f8d /archivers | |
parent | e8463c0dbf76148accd128ac732e5ad1e8b3ca11 (diff) | |
download | ports-0553e1193f006b942070e9749f0b6a05d399d82e.tar.gz ports-0553e1193f006b942070e9749f0b6a05d399d82e.zip |
Notes
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp b/archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp deleted file mode 100644 index b861e1743faa..000000000000 --- a/archivers/lzma/files/patch-CPP_7zip_Common_CWrappers.cpp +++ /dev/null @@ -1,37 +0,0 @@ ---- CPP/7zip/Common/CWrappers.cpp.orig 2010-04-28 22:07:56.000000000 -0400 -+++ CPP/7zip/Common/CWrappers.cpp 2010-04-28 22:26:55.000000000 -0400 -@@ -164,13 +164,15 @@ - return 0; - } - --extern "C" static Byte Wrap_ReadByte(void *pp) -+extern "C" { -+static Byte Wrap_ReadByte(void *pp) - { - CByteInBufWrap *p = (CByteInBufWrap *)pp; - if (p->Cur != p->Lim) - return *p->Cur++; - return p->ReadByteFromNewBlock(); - } -+} - - CByteInBufWrap::CByteInBufWrap(): Buf(0) - { -@@ -210,7 +212,8 @@ - return Res; - } - --extern "C" static void Wrap_WriteByte(void *pp, Byte b) -+extern "C" { -+static void Wrap_WriteByte(void *pp, Byte b) - { - CByteOutBufWrap *p = (CByteOutBufWrap *)pp; - Byte *dest = p->Cur; -@@ -219,6 +222,7 @@ - if (dest == p->Lim) - p->Flush(); - } -+} - - CByteOutBufWrap::CByteOutBufWrap(): Buf(0) - { |