diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-04-23 09:37:37 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-04-23 09:42:24 +0000 |
commit | 4fae22ebc20517a01951fbc52d14eab131e66c5b (patch) | |
tree | 74643da93076f2145aa77060a3abf8d807ed9973 /main/tiff/tiff2pdf-octal-printf.patch | |
parent | 6c830b0725e1936ca196495fcd1dfd89c91fb769 (diff) | |
download | aports-4fae22ebc20517a01951fbc52d14eab131e66c5b.tar.bz2 aports-4fae22ebc20517a01951fbc52d14eab131e66c5b.tar.xz |
main/tiff: upgrade to 3.9.5
and clean up the APKBUILD
Diffstat (limited to 'main/tiff/tiff2pdf-octal-printf.patch')
-rw-r--r-- | main/tiff/tiff2pdf-octal-printf.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/main/tiff/tiff2pdf-octal-printf.patch b/main/tiff/tiff2pdf-octal-printf.patch deleted file mode 100644 index f35b072378..0000000000 --- a/main/tiff/tiff2pdf-octal-printf.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- tiff-3.8.2/tools/tiff2pdf.c.orig 2006-03-21 11:42:51.000000000 -0500 -+++ tiff-3.8.2/tools/tiff2pdf.c 2006-06-07 17:54:01.027637232 -0400 -@@ -3668,7 +3668,7 @@ - written += TIFFWriteFile(output, (tdata_t) "(", 1); - for (i=0;i<len;i++){ - if((pdfstr[i]&0x80) || (pdfstr[i]==127) || (pdfstr[i]<32)){ -- sprintf(buffer, "\\%.3o", pdfstr[i]); -+ sprintf(buffer, "\\%.3hho", pdfstr[i]); - written += TIFFWriteFile(output, (tdata_t) buffer, 4); - } else { - switch (pdfstr[i]){ |