diff options
Diffstat (limited to 'sci-biology/arb/files')
-rw-r--r-- | sci-biology/arb/files/5.1-bfr-overflow.patch | 16 | ||||
-rw-r--r-- | sci-biology/arb/files/5.1-libs.patch | 16 | ||||
-rw-r--r-- | sci-biology/arb/files/5.2-libpng15.patch | 45 | ||||
-rw-r--r-- | sci-biology/arb/files/arb-5.2-gcc-47.patch | 15 |
4 files changed, 0 insertions, 92 deletions
diff --git a/sci-biology/arb/files/5.1-bfr-overflow.patch b/sci-biology/arb/files/5.1-bfr-overflow.patch deleted file mode 100644 index 21d21f5ac17f..000000000000 --- a/sci-biology/arb/files/5.1-bfr-overflow.patch +++ /dev/null @@ -1,16 +0,0 @@ - ARB_GDE/GDE_HGLfile.cxx | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/ARB_GDE/GDE_HGLfile.cxx b/ARB_GDE/GDE_HGLfile.cxx -index e353a89..f69635a 100644 ---- a/ARB_GDE/GDE_HGLfile.cxx -+++ b/ARB_GDE/GDE_HGLfile.cxx -@@ -494,7 +494,7 @@ void ReadGDE(char *filename,NA_Alignment *dataset,int type) - if(this_elem->id[0] == '\0') - strncpy(this_elem->id,uniqueID(),79); - if(this_elem->short_name[0] == '\0') -- strncpy(this_elem->short_name,this_elem->id,79); -+ strncpy(this_elem->short_name,this_elem->id,31); - if(this_elem->seqlen == 0) - this_elem->protect= - PROT_BASE_CHANGES+ diff --git a/sci-biology/arb/files/5.1-libs.patch b/sci-biology/arb/files/5.1-libs.patch deleted file mode 100644 index bf0bacad3286..000000000000 --- a/sci-biology/arb/files/5.1-libs.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/SOURCE_TOOLS/provide_libs.pl b/SOURCE_TOOLS/provide_libs.pl -index b653a66..b346c96 100644 ---- a/SOURCE_TOOLS/provide_libs.pl -+++ b/SOURCE_TOOLS/provide_libs.pl -@@ -118,11 +118,6 @@ sub provide_libs($$$) { - foreach my $lib (keys %needed_by) { - update_lib($lib, $bindir.'/'.$needed_by{$lib}, $addlibsdir); - } -- if ($opengl==1) { -- foreach my $lib (keys %needed_by_opengl) { -- update_lib($lib, $bindir.'/'.$needed_by_opengl{$lib}, $addlibsdir); -- } -- } - } - - sub main() { diff --git a/sci-biology/arb/files/5.2-libpng15.patch b/sci-biology/arb/files/5.2-libpng15.patch deleted file mode 100644 index 3d750e76efe3..000000000000 --- a/sci-biology/arb/files/5.2-libpng15.patch +++ /dev/null @@ -1,45 +0,0 @@ -Fix building with libpng-1.5 - -https://bugs.gentoo.org/show_bug.cgi?id=378353 - -Patch written by Samuli Suominen <ssuominen@gentoo.org> ---- a/GL/glpng/glpng.c -+++ b/GL/glpng/glpng.c -@@ -285,7 +285,7 @@ - endinfo = png_create_info_struct(png); - - // DH: added following lines -- if (setjmp(png->jmpbuf)) -+ if (setjmp(png_jmpbuf(png))) - { - png_destroy_read_struct(&png, &info, &endinfo); - return 0; -@@ -390,7 +390,7 @@ - endinfo = png_create_info_struct(png); - - // DH: added following lines -- if (setjmp(png->jmpbuf)) -+ if (setjmp(png_jmpbuf(png))) - { - png_destroy_read_struct(&png, &info, &endinfo); - return 0; -@@ -569,7 +569,7 @@ - #define ALPHA *q - - switch (trans) { -- case PNG_CALLBACK: -+ case PNG_CALLBACKT: - FORSTART - ALPHA = AlphaCallback((unsigned char) r, (unsigned char) g, (unsigned char) b); - FOREND ---- a/GL/glpng/glpng.h -+++ b/GL/glpng/glpng.h -@@ -57,7 +57,7 @@ - #define PNG_SIMPLEMIPMAP PNG_SIMPLEMIPMAPS - - /* Transparency parameters */ --#define PNG_CALLBACK -3 /* Call the callback function to generate alpha */ -+#define PNG_CALLBACKT -3 /* Call the callback function to generate alpha */ - #define PNG_ALPHA -2 /* Use alpha channel in PNG file, if there is one */ - #define PNG_SOLID -1 /* No transparency */ - #define PNG_STENCIL 0 /* Sets alpha to 0 for r=g=b=0, 1 otherwise */ diff --git a/sci-biology/arb/files/arb-5.2-gcc-47.patch b/sci-biology/arb/files/arb-5.2-gcc-47.patch deleted file mode 100644 index 186e78e450b3..000000000000 --- a/sci-biology/arb/files/arb-5.2-gcc-47.patch +++ /dev/null @@ -1,15 +0,0 @@ - AWTI/AWTI_import.cxx | 1 + - 1 files changed, 1 insertions(+), 0 deletions(-) - -diff --git a/AWTI/AWTI_import.cxx b/AWTI/AWTI_import.cxx -index 8e730ac..e3f9ff4 100644 ---- a/AWTI/AWTI_import.cxx -+++ b/AWTI/AWTI_import.cxx -@@ -12,6 +12,7 @@ - #include <GEN.hxx> - - #include <climits> -+#include <unistd.h> - - using namespace std; - |