aboutsummaryrefslogtreecommitdiff
path: root/graphics/jpeg-mmx/files
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/jpeg-mmx/files')
-rw-r--r--graphics/jpeg-mmx/files/patch-ab20
-rw-r--r--graphics/jpeg-mmx/files/patch-ad20
-rw-r--r--graphics/jpeg-mmx/files/patch-ae18
3 files changed, 0 insertions, 58 deletions
diff --git a/graphics/jpeg-mmx/files/patch-ab b/graphics/jpeg-mmx/files/patch-ab
deleted file mode 100644
index ea94fc14123c..000000000000
--- a/graphics/jpeg-mmx/files/patch-ab
+++ /dev/null
@@ -1,20 +0,0 @@
---- configure.orig Sat Mar 21 14:08:57 1998
-+++ configure Wed Mar 22 09:28:33 2000
-@@ -1529,7 +1529,7 @@
-
- if test "x$LTSHARED" != xno -o "x$LTSTATIC" != xno; then
- USELIBTOOL="yes"
-- LIBTOOL="./libtool"
-+ LIBTOOL="/usr/local/bin/libtool"
- O="lo"
- A="la"
- LN='$(LIBTOOL) --mode=link $(CC)'
-@@ -1647,7 +1647,7 @@
- # Extract the library version ID from jpeglib.h.
- echo $ac_n "checking libjpeg version number""... $ac_c" 1>&6
- echo "configure:1650: checking libjpeg version number" >&5
--JPEG_LIB_VERSION=`sed -e '/^#define JPEG_LIB_VERSION/!d' -e 's/^[^0-9]*\([0-9][0-9]*\).*$/\1/' $srcdir/jpeglib.h`
-+JPEG_LIB_VERSION=9
- echo "$ac_t""$JPEG_LIB_VERSION" 1>&6
-
-
diff --git a/graphics/jpeg-mmx/files/patch-ad b/graphics/jpeg-mmx/files/patch-ad
deleted file mode 100644
index 224fefe2e850..000000000000
--- a/graphics/jpeg-mmx/files/patch-ad
+++ /dev/null
@@ -1,20 +0,0 @@
---- djpeg.c.orig Sat Oct 11 18:29:07 1997
-+++ djpeg.c Mon Apr 24 16:04:13 2000
-@@ -26,6 +26,7 @@
- #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
- #include "jversion.h" /* for version message */
-
-+#include <locale.h> /* to declare setlocal() */
- #include <ctype.h> /* to declare isprint() */
-
- #ifdef USE_CCOMMAND /* command-line reader for Macintosh */
-@@ -385,6 +386,9 @@
- cinfo->unread_marker - JPEG_APP0, (long) length);
- }
-
-+ if (traceit) {
-+ setlocale(LC_ALL, "");
-+ }
- while (--length >= 0) {
- ch = jpeg_getc(cinfo);
- if (traceit) {
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.