summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2014-08-21 12:13:49 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2014-08-21 12:13:49 +0000
commit5d99a5824566a159f789529b728a46edf82fc1cd (patch)
tree7bb0943ce2d8d4f7f46bb1f8582096623a207dc8 /app-office/libreoffice/files/libreoffice-4.2.5.2-jpeg-9a.patch
parentBring back the libudev.so.0 kludge as requested upstream. (diff)
downloadgentoo-2-5d99a5824566a159f789529b728a46edf82fc1cd.tar.gz
gentoo-2-5d99a5824566a159f789529b728a46edf82fc1cd.tar.bz2
gentoo-2-5d99a5824566a159f789529b728a46edf82fc1cd.zip
Revert last commit.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
Diffstat (limited to 'app-office/libreoffice/files/libreoffice-4.2.5.2-jpeg-9a.patch')
-rw-r--r--app-office/libreoffice/files/libreoffice-4.2.5.2-jpeg-9a.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/app-office/libreoffice/files/libreoffice-4.2.5.2-jpeg-9a.patch b/app-office/libreoffice/files/libreoffice-4.2.5.2-jpeg-9a.patch
deleted file mode 100644
index d9b7090a24e2..000000000000
--- a/app-office/libreoffice/files/libreoffice-4.2.5.2-jpeg-9a.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-http://bugs.gentoo.org/479946
-
---- vcl/source/filter/jpeg/JpegReader.cxx
-+++ vcl/source/filter/jpeg/JpegReader.cxx
-@@ -71,7 +71,7 @@
- * but we don't clear the input buffer.
- * This is correct behavior for reading a series of images from one source.
- */
-- source->start_of_file = sal_True;
-+ source->start_of_file = boolean(sal_True);
- }
-
- long StreamRead( SvStream* pStream, void* pBuffer, long nBufferSize )
-@@ -119,9 +119,9 @@
-
- source->pub.next_input_byte = source->buffer;
- source->pub.bytes_in_buffer = nbytes;
-- source->start_of_file = sal_False;
-+ source->start_of_file = boolean(sal_False);
-
-- return sal_True;
-+ return boolean(sal_True);
- }
-
- extern "C" void skip_input_data (j_decompress_ptr cinfo, long numberOfBytes)
---- vcl/source/filter/jpeg/JpegWriter.cxx
-+++ vcl/source/filter/jpeg/JpegWriter.cxx
-@@ -86,7 +86,7 @@
- destination->pub.next_output_byte = destination->buffer;
- destination->pub.free_in_buffer = BUFFER_SIZE;
-
-- return sal_True;
-+ return boolean(sal_True);
- }
-
- extern "C" void term_destination (j_compress_ptr cinfo)