Received: by mail.netbsd.org (Postfix, from userid 605) id E65DA84E40; Wed, 21 Mar 2018 18:47:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4224484E00 for ; Wed, 21 Mar 2018 18:47:03 +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 1rnzBlPPHSkF for ; Wed, 21 Mar 2018 18:47:02 +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 705C484C77 for ; Wed, 21 Mar 2018 18:47:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 61719FB40; Wed, 21 Mar 2018 18:47:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152165802276530" MIME-Version: 1.0 Date: Wed, 21 Mar 2018 18:47:02 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/archivers/p7zip To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20180321184702.61719FB40@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. --_----------=_152165802276530 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Wed Mar 21 18:47:02 UTC 2018 Modified Files: pkgsrc/archivers/p7zip: Makefile Log Message: p7zip: Enforce C++03 Clang 7svn defaults to C++11 and this code is not building with it. This switch fixes the build. To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 pkgsrc/archivers/p7zip/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152165802276530 Content-Disposition: inline Content-Length: 800 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/p7zip/Makefile diff -u pkgsrc/archivers/p7zip/Makefile:1.64 pkgsrc/archivers/p7zip/Makefile:1.65 --- pkgsrc/archivers/p7zip/Makefile:1.64 Wed Nov 30 14:29:09 2016 +++ pkgsrc/archivers/p7zip/Makefile Wed Mar 21 18:47:02 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.64 2016/11/30 14:29:09 sevan Exp $ +# $NetBSD: Makefile,v 1.65 2018/03/21 18:47:02 kamil Exp $ DISTNAME= p7zip_16.02_src_all PKGNAME= ${DISTNAME:S/_src_all//S/_/-/} @@ -12,7 +12,7 @@ HOMEPAGE= http://p7zip.sourceforge.net/ COMMENT= File archiver with high compression LICENSE= gnu-lgpl-v2.1 AND unrar-license -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++03 # c++11 breaks on Clang 7svn USE_TOOLS+= gmake MAKE_FILE= makefile MAKE_JOBS_SAFE= no # missing header when compiling sfx --_----------=_152165802276530--