Received: by mail.netbsd.org (Postfix, from userid 605) id A072A84E49; Mon, 29 Oct 2018 14:42:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A66BF84DC8 for ; Mon, 29 Oct 2018 14:42:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id MKUiPfMVhTNA for ; Mon, 29 Oct 2018 14:42:20 +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 E848384CD8 for ; Mon, 29 Oct 2018 14:42:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E35E7FBEE; Mon, 29 Oct 2018 14:42:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1540824139226900" MIME-Version: 1.0 Date: Mon, 29 Oct 2018 14:42:19 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/textproc/libodfgen To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20181029144219.E35E7FBEE@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. --_----------=_1540824139226900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Mon Oct 29 14:42:19 UTC 2018 Modified Files: pkgsrc/textproc/libodfgen: Makefile Log Message: Adjust CC_VERSION check from gcc-8* to gcc-[89]* To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/textproc/libodfgen/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1540824139226900 Content-Disposition: inline Content-Length: 703 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/libodfgen/Makefile diff -u pkgsrc/textproc/libodfgen/Makefile:1.19 pkgsrc/textproc/libodfgen/Makefile:1.20 --- pkgsrc/textproc/libodfgen/Makefile:1.19 Sun Oct 28 16:32:36 2018 +++ pkgsrc/textproc/libodfgen/Makefile Mon Oct 29 14:42:19 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2018/10/28 16:32:36 abs Exp $ +# $NetBSD: Makefile,v 1.20 2018/10/29 14:42:19 abs Exp $ DISTNAME= libodfgen-0.1.6 PKGREVISION= 7 @@ -28,7 +28,7 @@ CONFIGURE_ARGS+= --with-sharedptr=tr1 .endif # Avoid erroring out due to multiple -Werror=parentheses with gcc8 -.if !empty(CC_VERSION:Mgcc-8*) +.if !empty(CC_VERSION:Mgcc-[89]*) CONFIGURE_ARGS+=--disable-werror .endif --_----------=_1540824139226900--