Patch | Description | Author | Forwarded | Bugs | Origin | Last update |
---|---|---|---|---|---|---|
10_prevent_-64_option.patch | Build without -m64. -m64 is not necessary except for building "multiarch" versions, which is probably not the original goal anyway. |
Charles Plessy | yes | |||
gcc-4.7.patch | Build with g++ version 4.7 Just followed the hint of g++ itself which said: note: use 'this->direct_insert_aux' instead |
Andreas Tille <tille@debian.org> | no | 2012-04-25 | ||
mayhem.patch | Fix Mayhem issue | Andreas Tille <tille@debian.org> | no | debian | 2015-12-16 | |
gcc-14.patch | fix improper variable declaration as a pointer. On two occasions, a gzFile is declared as a pointer, except the type mismatches with the expected type by the gz API, resulting in errors like: . fastq2bfq.c:30:12: error: assignment to ‘struct gzFile_s **’ from incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types] 30 | fp = gzopen(str, "w"); | ^ fastq2bfq.c:36:28: error: assignment to ‘struct gzFile_s **’ from incompatible pointer type ‘gzFile’ {aka ‘struct gzFile_s *’} [-Wincompatible-pointer-types] 36 | fp = gzopen(str, "w"); | ^ fastq2bfq.c:47:25: error: passing argument 1 of ‘gzwrite’ from incompatible pointer type [-Wincompatible-pointer-types] 47 | gzwrite(fp, &i, sizeof(int)); | ^~ | | | struct gzFile_s ** |
Étienne Mollier <emollier@debian.org> | no | debian | 2024-08-05 |