Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 1BAA37A474 for ; Sun, 19 Jun 2016 23:01:03 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id BFF6A85EFB; Sun, 19 Jun 2016 23:01:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4FFEE85E63 for ; Sun, 19 Jun 2016 23:01:02 +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 Pp6wwxJM3bkj for ; Sun, 19 Jun 2016 23:01:01 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B06CB84CE5 for ; Sun, 19 Jun 2016 23:01:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AE318FBB5; Sun, 19 Jun 2016 23:01:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146637726159110" MIME-Version: 1.0 Date: Sun, 19 Jun 2016 23:01:01 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/editors/codeblocks To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20160619230101.AE318FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146637726159110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sun Jun 19 23:01:01 UTC 2016 Modified Files: pkgsrc/editors/codeblocks: Makefile Log Message: clang objects to the nullptr emulation, so just real C++11 for it. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/editors/codeblocks/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146637726159110 Content-Disposition: inline Content-Length: 824 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/codeblocks/Makefile diff -u pkgsrc/editors/codeblocks/Makefile:1.1 pkgsrc/editors/codeblocks/Makefile:1.2 --- pkgsrc/editors/codeblocks/Makefile:1.1 Thu Jun 16 02:28:51 2016 +++ pkgsrc/editors/codeblocks/Makefile Sun Jun 19 23:01:01 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2016/06/16 02:28:51 kamil Exp $ +# $NetBSD: Makefile,v 1.2 2016/06/19 23:01:01 joerg Exp $ # DISTNAME= codeblocks_16.01 @@ -24,6 +24,11 @@ BUILD_DEPENDS+= zip-[0-9]*:../../archive PKGCONFIG_OVERRIDE+= codeblocks.pc.in +.include "../../mk/compiler.mk" +.if !empty(PKGSRC_COMPILER:Mclang) +CXXFLAGS+= -std=c++11 +.endif + .include "../../databases/shared-mime-info/mimedb.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" --_----------=_146637726159110--