acceptable for inclusion in Fedora.i9fe
parent
7b15b4cf97
commit
b95b5a0811
@ -1 +1 @@
|
|||||||
p7zip_4.30_src_all.tar.bz2
|
p7zip_4.39_src_all-norar.tar.bz2
|
||||||
|
@ -1,91 +0,0 @@
|
|||||||
diff -Naupr p7zip_4.30.orig/7zip/Archive/7z/7zIn.h p7zip_4.30/7zip/Archive/7z/7zIn.h
|
|
||||||
--- p7zip_4.30.orig/7zip/Archive/7z/7zIn.h 2005-09-22 19:53:23.000000000 +0200
|
|
||||||
+++ p7zip_4.30/7zip/Archive/7z/7zIn.h 2006-02-09 17:25:37.000000000 +0100
|
|
||||||
@@ -244,7 +244,7 @@ private:
|
|
||||||
CRecordVector<bool> &digestsDefined,
|
|
||||||
CRecordVector<UInt32> &digests);
|
|
||||||
|
|
||||||
- HRESULT CInArchive::ReadStreamsInfo(
|
|
||||||
+ HRESULT ReadStreamsInfo(
|
|
||||||
const CObjectVector<CByteBuffer> *dataVector,
|
|
||||||
UInt64 &dataOffset,
|
|
||||||
CRecordVector<UInt64> &packSizes,
|
|
||||||
diff -Naupr p7zip_4.30.orig/7zip/Compress/Arj/ArjDecoder1.h p7zip_4.30/7zip/Compress/Arj/ArjDecoder1.h
|
|
||||||
--- p7zip_4.30.orig/7zip/Compress/Arj/ArjDecoder1.h 2005-09-22 19:53:21.000000000 +0200
|
|
||||||
+++ p7zip_4.30/7zip/Compress/Arj/ArjDecoder1.h 2006-02-09 17:30:32.000000000 +0100
|
|
||||||
@@ -58,7 +58,7 @@ class CCoder :
|
|
||||||
UInt32 c_table[CTABLESIZE];
|
|
||||||
UInt32 pt_table[PTABLESIZE];
|
|
||||||
|
|
||||||
- void CCoder::ReleaseStreams()
|
|
||||||
+ void ReleaseStreams()
|
|
||||||
{
|
|
||||||
m_OutWindowStream.ReleaseStream();
|
|
||||||
m_InBitStream.ReleaseStream();
|
|
||||||
diff -Naupr p7zip_4.30.orig/7zip/Compress/Arj/ArjDecoder2.h p7zip_4.30/7zip/Compress/Arj/ArjDecoder2.h
|
|
||||||
--- p7zip_4.30.orig/7zip/Compress/Arj/ArjDecoder2.h 2005-09-22 19:53:21.000000000 +0200
|
|
||||||
+++ p7zip_4.30/7zip/Compress/Arj/ArjDecoder2.h 2006-02-09 17:27:38.000000000 +0100
|
|
||||||
@@ -26,7 +26,7 @@ class CCoder :
|
|
||||||
CLZOutWindow m_OutWindowStream;
|
|
||||||
NStream::NMSBF::CDecoder<CInBuffer> m_InBitStream;
|
|
||||||
|
|
||||||
- void CCoder::ReleaseStreams()
|
|
||||||
+ void ReleaseStreams()
|
|
||||||
{
|
|
||||||
m_OutWindowStream.ReleaseStream();
|
|
||||||
m_InBitStream.ReleaseStream();
|
|
||||||
@@ -62,4 +62,4 @@ public:
|
|
||||||
|
|
||||||
}}}
|
|
||||||
|
|
||||||
-#endif
|
|
||||||
\ No newline at end of file
|
|
||||||
+#endif
|
|
||||||
diff -Naupr p7zip_4.30.orig/7zip/Compress/Deflate/DeflateDecoder.h p7zip_4.30/7zip/Compress/Deflate/DeflateDecoder.h
|
|
||||||
--- p7zip_4.30.orig/7zip/Compress/Deflate/DeflateDecoder.h 2005-09-22 19:53:20.000000000 +0200
|
|
||||||
+++ p7zip_4.30/7zip/Compress/Deflate/DeflateDecoder.h 2006-02-09 17:23:19.000000000 +0100
|
|
||||||
@@ -60,7 +60,7 @@ class CCoder:
|
|
||||||
void DeCodeLevelTable(Byte *newLevels, int numLevels);
|
|
||||||
bool ReadTables();
|
|
||||||
|
|
||||||
- void CCoder::ReleaseStreams()
|
|
||||||
+ void ReleaseStreams()
|
|
||||||
{
|
|
||||||
m_OutWindowStream.ReleaseStream();
|
|
||||||
ReleaseInStream();
|
|
||||||
diff -Naupr p7zip_4.30.orig/7zip/Compress/Deflate/DeflateEncoder.h p7zip_4.30/7zip/Compress/Deflate/DeflateEncoder.h
|
|
||||||
--- p7zip_4.30.orig/7zip/Compress/Deflate/DeflateEncoder.h 2005-11-19 22:09:02.000000000 +0100
|
|
||||||
+++ p7zip_4.30/7zip/Compress/Deflate/DeflateEncoder.h 2006-02-09 17:32:27.000000000 +0100
|
|
||||||
@@ -115,7 +115,7 @@ class CCoder
|
|
||||||
void CopyBackBlockOp(UInt32 distance, UInt32 length);
|
|
||||||
void WriteBlockData(bool writeMode, bool finalBlock);
|
|
||||||
|
|
||||||
- void CCoder::ReleaseStreams()
|
|
||||||
+ void ReleaseStreams()
|
|
||||||
{
|
|
||||||
// m_MatchFinder.ReleaseStream();
|
|
||||||
m_OutStream.ReleaseStream();
|
|
||||||
diff -Naupr p7zip_4.30.orig/7zip/Compress/Lzh/LzhDecoder.h p7zip_4.30/7zip/Compress/Lzh/LzhDecoder.h
|
|
||||||
--- p7zip_4.30.orig/7zip/Compress/Lzh/LzhDecoder.h 2005-09-22 19:53:21.000000000 +0200
|
|
||||||
+++ p7zip_4.30/7zip/Compress/Lzh/LzhDecoder.h 2006-02-09 17:37:56.000000000 +0100
|
|
||||||
@@ -53,7 +53,7 @@ class CCoder :
|
|
||||||
CHuffmanDecoder<kNumDistanceSymbols> m_PHuffmanDecoder;
|
|
||||||
CHuffmanDecoder<kNumCSymbols> m_CHuffmanDecoder;
|
|
||||||
|
|
||||||
- void CCoder::ReleaseStreams()
|
|
||||||
+ void ReleaseStreams()
|
|
||||||
{
|
|
||||||
m_OutWindowStream.ReleaseStream();
|
|
||||||
m_InBitStream.ReleaseStream();
|
|
||||||
diff -Naupr p7zip_4.30.orig/7zip/UI/Console/ExtractCallbackConsole.h p7zip_4.30/7zip/UI/Console/ExtractCallbackConsole.h
|
|
||||||
--- p7zip_4.30.orig/7zip/UI/Console/ExtractCallbackConsole.h 2005-09-22 19:53:22.000000000 +0200
|
|
||||||
+++ p7zip_4.30/7zip/UI/Console/ExtractCallbackConsole.h 2006-02-09 17:20:16.000000000 +0100
|
|
||||||
@@ -52,7 +52,7 @@ public:
|
|
||||||
|
|
||||||
CStdOutStream *OutStream;
|
|
||||||
|
|
||||||
- void CExtractCallbackConsole::Init()
|
|
||||||
+ void Init()
|
|
||||||
{
|
|
||||||
NumArchives = 0;
|
|
||||||
NumArchiveErrors = 0;
|
|
Loading…
Reference in new issue