Received: by mail.netbsd.org (Postfix, from userid 605) id 94A2284F61; Wed, 21 Mar 2018 09:23:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8838984F4E for ; Wed, 21 Mar 2018 09:23:07 +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 JT7Wx7bXV2Xl for ; Wed, 21 Mar 2018 09:23:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BE67B84F47 for ; Wed, 21 Mar 2018 09:23:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BB459FB40; Wed, 21 Mar 2018 09:23:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1521624186115520" MIME-Version: 1.0 Date: Wed, 21 Mar 2018 09:23:06 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/databases/libcassandra To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180321092306.BB459FB40@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. --_----------=_1521624186115520 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:23:06 UTC 2018 Modified Files: pkgsrc/databases/libcassandra: Makefile Log Message: libcassandra: Add -Wno-unknown-warning-option to support older clang. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/databases/libcassandra/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1521624186115520 Content-Disposition: inline Content-Length: 717 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/libcassandra/Makefile diff -u pkgsrc/databases/libcassandra/Makefile:1.38 pkgsrc/databases/libcassandra/Makefile:1.39 --- pkgsrc/databases/libcassandra/Makefile:1.38 Mon Jan 1 21:18:18 2018 +++ pkgsrc/databases/libcassandra/Makefile Wed Mar 21 09:23:06 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2018/01/01 21:18:18 adam Exp $ +# $NetBSD: Makefile,v 1.39 2018/03/21 09:23:06 jperkin Exp $ # DISTNAME= libcassandra-20101010 @@ -36,6 +36,7 @@ MAKE_ENV+= AM_DEFAULT_VERBOSITY=1 .include "../../mk/compiler.mk" .if !empty(PKGSRC_COMPILER:Mclang) +CXXFLAGS+= -Wno-unknown-warning-option CXXFLAGS+= -Wno-c++11-extensions -Wno-error=unused-local-typedef .endif --_----------=_1521624186115520--