diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2014-08-20 13:02:53 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2014-08-20 13:07:58 +0200 |
commit | c9bc8accc1b1a385b61c1a802da99c4de3d4577c (patch) | |
tree | aa6d96362da0a13bc53a88ac87be3e9182d55558 /debian/patches | |
parent | 0e3b414ea6ecb6cc359d3b95f5cfeb6096066139 (diff) | |
download | nx-libs-c9bc8accc1b1a385b61c1a802da99c4de3d4577c.tar.gz nx-libs-c9bc8accc1b1a385b61c1a802da99c4de3d4577c.tar.bz2 nx-libs-c9bc8accc1b1a385b61c1a802da99c4de3d4577c.zip |
Add 025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch. Fix FTBFS when built against libjpeg9a. Thanks to Gabriel Marcano for sending this in.
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch | 40 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 41 insertions, 0 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 new file mode 100644 index 000000000..66ca8c33e --- /dev/null +++ b/debian/patches/025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch @@ -0,0 +1,40 @@ +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) diff --git a/debian/patches/series b/debian/patches/series index cf3e9a001..e23de8ded 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -19,6 +19,7 @@ 019_nx-X11_expat-build-against-system-libxmltok.full.patch 024_fix-make-clean.full.patch 024_fix-make-clean.full+lite.patch +025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch 026_nxcompext_honour-optflags.full.patch 026_nxcomp_honour-optflags.full+lite.patch 026_nxcompshad_honour-optflags.full.patch |