Package: cookietool / 2.5-5

Metadata

Package Version Patches format
cookietool 2.5-5 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
01 manpage typos.patch | (download)

doc/cdbdiff.6 | 6 2 + 4 - 0 !
doc/cdbsplit.6 | 6 2 + 4 - 0 !
doc/cookietool.6 | 6 3 + 3 - 0 !
3 files changed, 7 insertions(+), 11 deletions(-)

 a couple of typo fixes for the manual pages.
 Original changes by Miros/law L. Baran <baran@knm.org.pl>:
 - spell "fussy" correctly
 - un-UTF-8 the Amiga contributor's name
 .
 Changes by Peter Pentchev <roam@ringlet.net>:
 - fix a hyphen used as a minus sign
02 gcc 4 ftbfs.patch | (download)

compress.c | 1 0 + 1 - 0 !
1 file changed, 1 deletion(-)

 fix ftbfs with gcc-4.0.
03 compiler flags.patch | (download)

Makefile | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 honor the compiler program and flags passed in the environment.
 Allow the compiler program and flags to be overridden so that
 the "noopt" build option may be honored.
04 compiler warnings.patch | (download)

cdbdiff.c | 2 1 + 1 - 0 !
cdbsplit.c | 10 5 + 5 - 0 !
compress.c | 10 5 + 5 - 0 !
cookietool.c | 6 3 + 3 - 0 !
cookio.c | 10 6 + 4 - 0 !
strstuff.c | 35 19 + 16 - 0 !
strstuff.h | 3 2 + 1 - 0 !
7 files changed, 41 insertions(+), 35 deletions(-)

 fix some compiler warnings.
 - include <stdlib.h> for the exit(3) prototype
 - redefine the UBYTE type to just "char", not "unsigned char"; well, okay,
   so it's a bit misleadingly named now, so what? :)
 - now that UBYTE is "char", cast it to unsigned when using it as an array
   index in strstuff.c
 - a buffer size ought to be unsigned
 - use \033 instead of the non-standard \e
 - declare some static functions as, well, static
 - add "void" to the declaration of a couple of no-argument functions
 - add "const" to a couple of char *'s