Received: by mail.netbsd.org (Postfix, from userid 605) id 7A4DD84D9D; Fri, 14 Dec 2018 13:16:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7A6FE84D27 for ; Fri, 14 Dec 2018 13:16:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Tyg2-cUT0N4l for ; Fri, 14 Dec 2018 13:16:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id ABF1E84D71 for ; Fri, 14 Dec 2018 13:16:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A1FD2FB16; Fri, 14 Dec 2018 13:16:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_154479338684140" MIME-Version: 1.0 Date: Fri, 14 Dec 2018 13:16:26 +0000 From: "Andreas Gustafsson" Subject: CVS commit: pkgsrc/print/poppler To: pkgsrc-changes@NetBSD.org Reply-To: gson@netbsd.org X-Mailer: log_accum Message-Id: <20181214131626.A1FD2FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_154479338684140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gson Date: Fri Dec 14 13:16:26 UTC 2018 Modified Files: pkgsrc/print/poppler: Makefile.common Log Message: poppler: require c++14 and GCC 4.9 Poppler now uses the C++14 library function std::make_unique. Require a GCC version that supports it to make the package build on NetBSD 7.2. To generate a diff of this commit: cvs rdiff -u -r1.103 -r1.104 pkgsrc/print/poppler/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_154479338684140 Content-Disposition: inline Content-Length: 708 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/poppler/Makefile.common diff -u pkgsrc/print/poppler/Makefile.common:1.103 pkgsrc/print/poppler/Makefile.common:1.104 --- pkgsrc/print/poppler/Makefile.common:1.103 Mon Dec 10 10:28:08 2018 +++ pkgsrc/print/poppler/Makefile.common Fri Dec 14 13:16:26 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.103 2018/12/10 10:28:08 wiz Exp $ +# $NetBSD: Makefile.common,v 1.104 2018/12/14 13:16:26 gson Exp $ # # used by print/poppler/Makefile # used by print/poppler-cpp/Makefile @@ -21,7 +21,8 @@ PATCHDIR= ${.CURDIR}/../../print/popple USE_TOOLS+= pkg-config USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++14 +GCC_REQD= 4.9 USE_CMAKE= yes --_----------=_154479338684140--