commit: ecdea30cd4b1c5df9e7642921f0004f5137607a5 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Wed Jan 30 21:21:27 2019 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Wed Jan 30 21:21:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecdea30c
app-text/poppler: backport jpeg buildfix, bug #670252 jpeg-9c defines TRUE and FALSE as 'enum' values not compatible to bool. Reported-by: Toralf Förster Closes: https://bugs.gentoo.org/670252 Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> app-text/poppler/files/poppler-0.68.0-bool.patch | 36 ++++++++++++++++++++++++ app-text/poppler/poppler-0.68.0.ebuild | 1 + 2 files changed, 37 insertions(+) diff --git a/app-text/poppler/files/poppler-0.68.0-bool.patch b/app-text/poppler/files/poppler-0.68.0-bool.patch new file mode 100644 index 00000000000..a2d8ba7bd40 --- /dev/null +++ b/app-text/poppler/files/poppler-0.68.0-bool.patch @@ -0,0 +1,36 @@ +https://bugs.gentoo.org/670252 + +From de34900993bff73c8da651319027b2fa8c490172 Mon Sep 17 00:00:00 2001 +From: Ed Porras <[email protected]> +Date: Sun, 26 Aug 2018 20:24:23 +0200 +Subject: [PATCH] fix macOS compilation due to boolean define in jpeglib + +typedef enum { FALSE = 0, TRUE = 1 } boolean; +--- + goo/JpegWriter.cc | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/goo/JpegWriter.cc b/goo/JpegWriter.cc +index 16c97afe..26fa77a7 100644 +--- a/goo/JpegWriter.cc ++++ b/goo/JpegWriter.cc +@@ -11,6 +11,7 @@ + // Copyright (C) 2013 Peter Breitenlohner <[email protected]> + // Copyright (C) 2017, 2018 Albert Astals Cid <[email protected]> + // Copyright (C) 2018 Martin Packman <[email protected]> ++// Copyright (C) 2018 Ed Porras <[email protected]> + // + //======================================================================== + +@@ -143,7 +144,7 @@ bool JpegWriter::init(FILE *f, int width, int height, int hDPI, int vDPI) + } + + // Set whether to compute optimal Huffman coding tables +- priv->cinfo.optimize_coding = priv->optimize; ++ priv->cinfo.optimize_coding = static_cast<boolean>(priv->optimize); + + // Get ready for data + jpeg_start_compress(&priv->cinfo, TRUE); +-- +2.20.1 + diff --git a/app-text/poppler/poppler-0.68.0.ebuild b/app-text/poppler/poppler-0.68.0.ebuild index 16588ae074d..e2839fc0c54 100644 --- a/app-text/poppler/poppler-0.68.0.ebuild +++ b/app-text/poppler/poppler-0.68.0.ebuild @@ -61,6 +61,7 @@ PATCHES=( "${FILESDIR}/${PN}-0.28.1-fix-multilib-configuration.patch" "${FILESDIR}/${PN}-0.61.0-respect-cflags.patch" "${FILESDIR}/${PN}-0.57.0-disable-internal-jpx.patch" + "${FILESDIR}/${PN}-0.68.0-bool.patch" ) src_prepare() {
