Received: by mail.netbsd.org (Postfix, from userid 605) id 1765A84F58; Wed, 21 Mar 2018 09:22:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8769C84F4E for ; Wed, 21 Mar 2018 09:22:43 +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 cCOkx1XF8OTa for ; Wed, 21 Mar 2018 09:22:43 +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 D467084F47 for ; Wed, 21 Mar 2018 09:22:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9BDFFB40; Wed, 21 Mar 2018 09:22:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1521624162242210" MIME-Version: 1.0 Date: Wed, 21 Mar 2018 09:22:42 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/converters/libwpd To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180321092242.C9BDFFB40@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. --_----------=_1521624162242210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed Mar 21 09:22:42 UTC 2018 Modified Files: pkgsrc/converters/libwpd: Makefile Log Message: libwpd: Add -Wno-unknown-warning-option to support older clang. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/converters/libwpd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1521624162242210 Content-Disposition: inline Content-Length: 770 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/libwpd/Makefile diff -u pkgsrc/converters/libwpd/Makefile:1.42 pkgsrc/converters/libwpd/Makefile:1.43 --- pkgsrc/converters/libwpd/Makefile:1.42 Tue Jan 30 23:37:10 2018 +++ pkgsrc/converters/libwpd/Makefile Wed Mar 21 09:22:42 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2018/01/30 23:37:10 jperkin Exp $ +# $NetBSD: Makefile,v 1.43 2018/03/21 09:22:42 jperkin Exp $ DISTNAME= libwpd-0.10.1 PKGREVISION= 5 @@ -28,6 +28,7 @@ PKGCONFIG_OVERRIDE+= libwpd.pc.in .if !empty(PKGSRC_COMPILER:Mclang) _WRAP_EXTRA_ARGS.CXX+= -Wno-unused-private-field CWRAPPERS_APPEND.cxx+= -Wno-unused-private-field +CWRAPPERS_APPEND.cxx+= -Wno-unknown-warning-option CWRAPPERS_APPEND.cxx+= -Wno-tautological-type-limit-compare .endif --_----------=_1521624162242210--