summaryrefslogtreecommitdiff
path: root/graphics/jpeg-mmx/files/patch-ae
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2004-03-18 14:53:47 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2004-03-18 14:53:47 +0000
commit7a318b355a4c52d62ee6070475839a2eb7bb9d98 (patch)
treea9079928dc93bc9bc303b756fc34276b012bfc80 /graphics/jpeg-mmx/files/patch-ae
parent- Remove dead WWW (diff)
- Patches from
http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=106060 , http://sylvana.net/jpegcrop/exifpatch.html Which add EXIF support to jpegtran (lossless JPEG transforms) and to rdjpgcom to add reporting of EXIF orientation in verbose mode. - Tools from http://sylvana.net/jpegcrop/exif_orientation.html which allow automatic JPEG orientation using the EXIF tag from the camera. (I think it should be done with DISTFILES rather than with PATCH_SITES, though). Roman Shterenzon (some cleanup done)
Notes
Notes: svn path=/head/; revision=104472
Diffstat (limited to 'graphics/jpeg-mmx/files/patch-ae')
-rw-r--r--graphics/jpeg-mmx/files/patch-ae18
1 files changed, 0 insertions, 18 deletions
diff --git a/graphics/jpeg-mmx/files/patch-ae b/graphics/jpeg-mmx/files/patch-ae
deleted file mode 100644
index 5004e6cd3040..000000000000
--- a/graphics/jpeg-mmx/files/patch-ae
+++ /dev/null
@@ -1,18 +0,0 @@
---- rdjpgcom.c.orig Sat Oct 11 18:41:04 1997
-+++ rdjpgcom.c Mon Apr 24 16:04:13 2000
-@@ -14,6 +14,7 @@
- #define JPEG_CJPEG_DJPEG /* to get the command-line config symbols */
- #include "jinclude.h" /* get auto-config symbols, <stdio.h> */
-
-+#include <locale.h> /* to declare setlocale() */
- #include <ctype.h> /* to declare isupper(), tolower() */
- #ifdef USE_SETMODE
- #include <fcntl.h> /* to declare setmode()'s parameter macros */
-@@ -231,6 +232,7 @@
- ERREXIT("Erroneous JPEG marker length");
- length -= 2;
-
-+ setlocale(LC_ALL, "");
- while (length > 0) {
- ch = read_1_byte();
- /* Emit the character in a readable form.