diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2004-08-24 21:58:57 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2004-08-24 21:58:57 +0000 |
commit | 0cd22977993d7dd886bae058f694cdc812de816c (patch) | |
tree | 3b6c19c06b41b004547631c1f6122a5a58762830 /app-arch/advancecomp/files | |
parent | Removed icecast 1.3.12-r1 from the tree as per security bug #61495. (Manifest... (diff) | |
download | gentoo-2-0cd22977993d7dd886bae058f694cdc812de816c.tar.gz gentoo-2-0cd22977993d7dd886bae058f694cdc812de816c.tar.bz2 gentoo-2-0cd22977993d7dd886bae058f694cdc812de816c.zip |
new version, marking 1.10 stable on x86
Diffstat (limited to 'app-arch/advancecomp/files')
4 files changed, 120 insertions, 1 deletions
diff --git a/app-arch/advancecomp/files/advancecomp-1.11-64bit.diff b/app-arch/advancecomp/files/advancecomp-1.11-64bit.diff new file mode 100644 index 000000000000..57e27d37f975 --- /dev/null +++ b/app-arch/advancecomp/files/advancecomp-1.11-64bit.diff @@ -0,0 +1,57 @@ +diff -ruN advancecomp-1.11.orig/utility.cc advancecomp-1.11/utility.cc +--- advancecomp-1.11.orig/utility.cc 2004-04-06 19:02:25.000000000 +0100 ++++ advancecomp-1.11/utility.cc 2004-08-24 22:52:00.817157760 +0100 +@@ -416,7 +416,7 @@ + { + ostringstream os; + +- unsigned pos = path.rfind('.'); ++ string::size_type pos = path.rfind('.'); + + if (pos == string::npos) + os << path << "."; +@@ -433,7 +433,7 @@ + */ + string file_dir(const string& path) throw () + { +- unsigned pos = path.rfind('/'); ++ string::size_type pos = path.rfind('/'); + if (pos == string::npos) { + return ""; + } else { +@@ -446,7 +446,7 @@ + */ + string file_name(const string& path) throw () + { +- unsigned pos = path.rfind('/'); ++ string::size_type pos = path.rfind('/'); + if (pos == string::npos) { + return path; + } else { +@@ -459,7 +459,7 @@ + */ + string file_basepath(const string& path) throw () + { +- unsigned dot = path.rfind('.'); ++ string::size_type dot = path.rfind('.'); + if (dot == string::npos) + return path; + else +@@ -472,7 +472,7 @@ + string file_basename(const string& path) throw () + { + string name = file_name(path); +- unsigned dot = name.rfind('.'); ++ string::size_type dot = name.rfind('.'); + if (dot == string::npos) + return name; + else +@@ -485,7 +485,7 @@ + string file_ext(const string& path) throw () + { + string name = file_name(path); +- unsigned dot = name.rfind('.'); ++ string::size_type dot = name.rfind('.'); + if (dot == string::npos) + return ""; + else diff --git a/app-arch/advancecomp/files/advancecomp-1.11-bzip2-compile-plz-k-thx.diff b/app-arch/advancecomp/files/advancecomp-1.11-bzip2-compile-plz-k-thx.diff new file mode 100644 index 000000000000..9348eb305ef9 --- /dev/null +++ b/app-arch/advancecomp/files/advancecomp-1.11-bzip2-compile-plz-k-thx.diff @@ -0,0 +1,62 @@ +diff -ruN advancecomp-1.11.orig/compress.cc advancecomp-1.11/compress.cc +--- advancecomp-1.11.orig/compress.cc 2004-04-02 16:43:52.000000000 +0100 ++++ advancecomp-1.11/compress.cc 2004-08-24 22:50:41.000291768 +0100 +@@ -179,14 +179,14 @@ + } + + #if USE_BZIP2 +-bool compress_bzip2(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned& out_size, int blocksize, int workfactor) { +- return BZ2_bzBuffToBuffCompress(out_data,&out_size,const_cast<unsigned char*>(in_data),in_size,blocksize,0,workfactor) == BZ_OK; ++bool compress_bzip2(const char* in_data, unsigned in_size, char* out_data, unsigned& out_size, int blocksize, int workfactor) { ++ return BZ2_bzBuffToBuffCompress(out_data,&out_size,const_cast<char*>(in_data),in_size,blocksize,0,workfactor) == BZ_OK; + } + +-bool decompress_bzip2(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned out_size) { ++bool decompress_bzip2(const char* in_data, unsigned in_size, char* out_data, unsigned out_size) { + unsigned size = out_size; + +- if (BZ2_bzBuffToBuffDecompress(out_data,&size,const_cast<unsigned char*>(in_data),in_size,0,0)!=BZ_OK) ++ if (BZ2_bzBuffToBuffDecompress(out_data,&size,const_cast< char*>(in_data),in_size,0,0)!=BZ_OK) + return false; + + if (size != out_size) +diff -ruN advancecomp-1.11.orig/compress.h advancecomp-1.11/compress.h +--- advancecomp-1.11.orig/compress.h 2003-11-02 20:09:41.000000000 +0000 ++++ advancecomp-1.11/compress.h 2004-08-24 22:50:41.000291768 +0100 +@@ -40,8 +40,8 @@ + bool decompress_deflate_zlib(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned out_size); + bool compress_deflate_zlib(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned& out_size, int compression_level, int strategy, int mem_level); + +-bool decompress_bzip2(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned out_size); +-bool compress_bzip2(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned& out_size, int blocksize, int workfactor); ++bool decompress_bzip2(const char* in_data, unsigned in_size, char* out_data, unsigned out_size); ++bool compress_bzip2(const char* in_data, unsigned in_size, char* out_data, unsigned& out_size, int blocksize, int workfactor); + + bool decompress_rfc1950_zlib(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned out_size); + bool compress_rfc1950_zlib(const unsigned char* in_data, unsigned in_size, unsigned char* out_data, unsigned& out_size, int compression_level, int strategy, int mem_level); +diff -ruN advancecomp-1.11.orig/stamp-h1 advancecomp-1.11/stamp-h1 +--- advancecomp-1.11.orig/stamp-h1 1970-01-01 01:00:00.000000000 +0100 ++++ advancecomp-1.11/stamp-h1 2004-08-24 22:50:41.000291768 +0100 +@@ -0,0 +1 @@ ++timestamp for config.h +diff -ruN advancecomp-1.11.orig/zipsh.cc advancecomp-1.11/zipsh.cc +--- advancecomp-1.11.orig/zipsh.cc 2004-07-22 21:35:47.000000000 +0100 ++++ advancecomp-1.11/zipsh.cc 2004-08-24 22:50:41.001291616 +0100 +@@ -38,7 +38,7 @@ + } + #ifdef USE_BZIP2 + } else if (info.compression_method == ZIP_METHOD_BZIP2) { +- if (!decompress_bzip2(data,compressed_size_get(),uncompressed_data,uncompressed_size_get())) { ++ if (!decompress_bzip2((char *)data,compressed_size_get(),(char *)uncompressed_data,uncompressed_size_get())) { + throw error() << "Invalid compressed data on file " << name_get(); + } + #endif +@@ -243,7 +243,7 @@ + c1_met = ZIP_METHOD_BZIP2; + c1_fla = 0; + +- if (!compress_bzip2(uncompressed_data,uncompressed_size_get(),c1_data,c1_size,bzip2_level,bzip2_workfactor)) { ++ if (!compress_bzip2((char *)uncompressed_data,uncompressed_size_get(),(char *)c1_data,c1_size,bzip2_level,bzip2_workfactor)) { + data_free(c1_data); + c1_data = 0; + } diff --git a/app-arch/advancecomp/files/digest-advancecomp-1.11 b/app-arch/advancecomp/files/digest-advancecomp-1.11 new file mode 100644 index 000000000000..834af1f5a097 --- /dev/null +++ b/app-arch/advancecomp/files/digest-advancecomp-1.11 @@ -0,0 +1 @@ +MD5 e400c79e88d5d30af2017b95e2115bb1 advancecomp-1.11.tar.gz 354546 diff --git a/app-arch/advancecomp/files/digest-advancecomp-1.8 b/app-arch/advancecomp/files/digest-advancecomp-1.8 deleted file mode 100644 index da8d6f3ec607..000000000000 --- a/app-arch/advancecomp/files/digest-advancecomp-1.8 +++ /dev/null @@ -1 +0,0 @@ -MD5 eb98f9ff5e5bf061d6b73b4f604f21df advancecomp-1.8.tar.gz 585627 |