aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-14 16:23:43 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2015-02-14 16:23:43 +0100
commit09d2732b4e299eaa06c64b7a683529e337691c59 (patch)
tree3a07c4a95980c0f34b1d3ce2f55388dd7677c685 /debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch
parent8c98a401b49506f969dc9263d9bd566e5b31a572 (diff)
downloadnx-libs-09d2732b4e299eaa06c64b7a683529e337691c59.tar.gz
nx-libs-09d2732b4e299eaa06c64b7a683529e337691c59.tar.bz2
nx-libs-09d2732b4e299eaa06c64b7a683529e337691c59.zip
Patch system: Prepend a "0" to every patch file name in debian/patches/. Adapt only this changelog stanza to this modification.
Diffstat (limited to 'debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch')
-rw-r--r--debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch b/debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch
deleted file mode 100644
index 66ca8c33e..000000000
--- a/debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-Description: Fix FTBFS when built against libjpeg9a
-Author: Gabriel Marcano <gabemarcano@yahoo.com>
---- a/nxcomp/Jpeg.cpp 2014-08-19 22:23:36.139072400 -0400
-+++ b/nxcomp/Jpeg.cpp 2014-08-19 22:25:24.323182800 -0400
-@@ -440,7 +440,7 @@
-
- JpegSetSrcManager(&cinfo, compressedData, compressedLen);
-
-- jpeg_read_header(&cinfo, 1);
-+ jpeg_read_header(&cinfo, TRUE);
-
- if (jpegError) goto AbortDecompressJpeg16;
-
-@@ -581,7 +581,7 @@
-
- JpegSetSrcManager(&cinfo, compressedData, compressedLen);
-
-- jpeg_read_header(&cinfo, 1);
-+ jpeg_read_header(&cinfo, TRUE);
-
- if (jpegError) goto AbortDecompressJpeg24;
-
-@@ -718,7 +718,7 @@
-
- JpegSetSrcManager(&cinfo, compressedData, compressedLen);
-
-- jpeg_read_header(&cinfo, 1);
-+ jpeg_read_header(&cinfo, TRUE);
-
- if (jpegError) goto AbortDecompressJpeg32;
-
-@@ -833,7 +833,7 @@
- jpegSrcManager.bytes_in_buffer = jpegBufferLen;
- jpegSrcManager.next_input_byte = (JOCTET *)jpegBufferPtr;
-
-- return 1;
-+ return TRUE;
- }
-
- static void JpegSkipInputData(j_decompress_ptr cinfo, long num_bytes)