From cb0cf745e7d4eabbc169d4901811cc7cdd267f5f Mon Sep 17 00:00:00 2001 From: David Seifert Date: Thu, 11 Apr 2019 20:57:39 +0200 Subject: games-arcade/performous: Fix building with media-libs/jpeg Closes: https://bugs.gentoo.org/649280 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: David Seifert --- games-arcade/performous/files/performous-1.1-jpeg-9c.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 games-arcade/performous/files/performous-1.1-jpeg-9c.patch (limited to 'games-arcade/performous/files') diff --git a/games-arcade/performous/files/performous-1.1-jpeg-9c.patch b/games-arcade/performous/files/performous-1.1-jpeg-9c.patch new file mode 100644 index 000000000000..d878cec07f51 --- /dev/null +++ b/games-arcade/performous/files/performous-1.1-jpeg-9c.patch @@ -0,0 +1,11 @@ +--- a/common/image.cc ++++ b/common/image.cc +@@ -180,7 +180,7 @@ + } + jpeg_create_decompress(&cinfo); + jpeg_mem_src(&cinfo, data.data(), data.size()); +- if (jpeg_read_header(&cinfo, true) != JPEG_HEADER_OK) throw std::runtime_error("Cannot read header of " + filename.string()); ++ if (jpeg_read_header(&cinfo, TRUE) != JPEG_HEADER_OK) throw std::runtime_error("Cannot read header of " + filename.string()); + jpeg_start_decompress(&cinfo); + bitmap.resize(cinfo.output_width, cinfo.output_height); + unsigned stride = (bitmap.width * 3 + 3) & ~3; // Number of bytes per row (word-aligned) -- cgit v1.2.3-65-gdbad