diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-15 10:20:08 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-15 10:49:40 +0100 |
commit | f808eedfd063ffc4274400f69143499a6c94d09c (patch) | |
tree | 7b4e73d2791720a08498676db98d9cd1d3b4a2b6 /net-mail | |
parent | net-libs/libetpan: remove unused patch (diff) | |
download | gentoo-f808eedfd063ffc4274400f69143499a6c94d09c.tar.gz gentoo-f808eedfd063ffc4274400f69143499a6c94d09c.tar.bz2 gentoo-f808eedfd063ffc4274400f69143499a6c94d09c.zip |
net-mail/altermime: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/3488
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/altermime/files/altermime-0.3.10-fprintf-fixes.patch | 46 | ||||
-rw-r--r-- | net-mail/altermime/files/altermime-0.3.10-respect-flags.patch | 12 |
2 files changed, 0 insertions, 58 deletions
diff --git a/net-mail/altermime/files/altermime-0.3.10-fprintf-fixes.patch b/net-mail/altermime/files/altermime-0.3.10-fprintf-fixes.patch deleted file mode 100644 index 74d32f375a6e..000000000000 --- a/net-mail/altermime/files/altermime-0.3.10-fprintf-fixes.patch +++ /dev/null @@ -1,46 +0,0 @@ -diff -urp altermime-0.3.10.orig/qpe.c altermime-0.3.10/qpe.c ---- altermime-0.3.10.orig/qpe.c 2010-04-30 23:11:15.564697415 +0100 -+++ altermime-0.3.10/qpe.c 2010-04-30 23:17:22.368691711 +0100 -@@ -97,7 +97,7 @@ int qp_encode( char *out, size_t out_siz - op+= strlen(paragraph);// +3; /** jump the output + =\r\n **/ - out_remaining-= (strlen(paragraph)); // Was +3, updated to fix Outlook problems - -- QPD fprintf(stdout, "Soft break (%d + %d > 76 char) for '%s'\n", current_line_length, charout_size, paragraph); -+ QPD fprintf(stdout, "Soft break (%lu + %d > 76 char) for '%s'\n", (unsigned long)current_line_length, charout_size, paragraph); - - /** reinitialize the paragraph **/ - paragraph[0] = '\0'; -@@ -108,7 +108,7 @@ int qp_encode( char *out, size_t out_siz - } - - snprintf(pp, pp_remaining, "%s", charout); -- QPD fprintf(stdout,"charout='%s', size=%d, pp_remain=%d result='%s'\n", charout, charout_size, pp_remaining, paragraph); -+ QPD fprintf(stdout,"charout='%s', size=%d, pp_remain=%lu result='%s'\n", charout, charout_size, (unsigned long)pp_remaining, paragraph); - pp += charout_size; - pp_remaining -= charout_size; - p++; -@@ -149,13 +149,13 @@ int qp_encode_from_file( char *fname ) - out_size = in_size *3; - in_buffer = malloc( sizeof(char) *in_size +1); - if (in_buffer == NULL) { -- QPD fprintf(stdout,"Error allocating %d bytes for input buffer\n", in_size); -+ QPD fprintf(stdout,"Error allocating %lu bytes for input buffer\n", (unsigned long)in_size); - return -1; - } - - out_buffer = malloc( sizeof(char) *out_size *3 +1); - if (in_buffer == NULL) { -- QPD fprintf(stdout,"Error allocating %d bytes for output buffer\n", out_size); -+ QPD fprintf(stdout,"Error allocating %lu bytes for output buffer\n", (unsigned long)out_size); - return -1; - } - -@@ -169,7 +169,7 @@ int qp_encode_from_file( char *fname ) - ** we segfault ;) **/ - *(in_buffer +in_size) = '\0'; - -- QPD fprintf(stdout,"file %s is loaded, size = %d\n", fname, in_size); -+ QPD fprintf(stdout,"file %s is loaded, size = %lu\n", fname, (unsigned long)in_size); - - qp_encode( out_buffer, out_size, in_buffer, in_size ); - diff --git a/net-mail/altermime/files/altermime-0.3.10-respect-flags.patch b/net-mail/altermime/files/altermime-0.3.10-respect-flags.patch deleted file mode 100644 index 243d49c11034..000000000000 --- a/net-mail/altermime/files/altermime-0.3.10-respect-flags.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- Makefile.orig 2008-11-16 08:45:45.000000000 +0000 -+++ Makefile 2010-10-08 00:35:48.258944495 +0100 -@@ -11,3 +11,3 @@ - ALTERMIME_OPTIONS= --CFLAGS=-Wall -Werror -g -I. -O2 $(ALTERMIME_OPTIONS) -+CFLAGS+=-Wall - OBJS= strstack.o mime_alter.o ffget.o pldstr.o filename-filters.o logger.o MIME_headers.o libmime-decoders.o boundary-stack.o qpe.o -@@ -21,3 +21,3 @@ - altermime: altermime.c ${OBJS} -- ${CC} ${CFLAGS} altermime.c ${OBJS} -o altermime -+ ${CC} ${CFLAGS} ${LDFLAGS} altermime.c ${OBJS} -o altermime - |