From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E49B6139695 for ; Sun, 30 Jul 2017 16:04:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24A431FC11B; Sun, 30 Jul 2017 16:04:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03A2A1FC11B for ; Sun, 30 Jul 2017 16:04:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B4302341A25 for ; Sun, 30 Jul 2017 16:04:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5141274C1 for ; Sun, 30 Jul 2017 16:04:12 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1501430642.e25f6fa23f1f30b6b05489f07328a8cd5d7a2c68.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/codeblocks/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/codeblocks/codeblocks-16.01.ebuild X-VCS-Directories: dev-util/codeblocks/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: e25f6fa23f1f30b6b05489f07328a8cd5d7a2c68 X-VCS-Branch: master Date: Sun, 30 Jul 2017 16:04:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a5220e93-e841-4d45-bb09-672575e9873a X-Archives-Hash: 85fbb6e2239d413bdb4677424fa2b463 commit: e25f6fa23f1f30b6b05489f07328a8cd5d7a2c68 Author: Peter Levine gmail com> AuthorDate: Sat Jul 22 20:59:39 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jul 30 16:04:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25f6fa2 dev-util/codeblocks: Fix segfault with GCC-6 Bug: https://bugs.gentoo.org/show_bug.cgi?id=625696 Package-Manager: Portage-2.3.6, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/5175 dev-util/codeblocks/codeblocks-16.01.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-util/codeblocks/codeblocks-16.01.ebuild b/dev-util/codeblocks/codeblocks-16.01.ebuild index 9f14a95f0a1..047fa097585 100644 --- a/dev-util/codeblocks/codeblocks-16.01.ebuild +++ b/dev-util/codeblocks/codeblocks-16.01.ebuild @@ -1,10 +1,11 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=6 + WX_GTK_VER="2.8" -inherit eutils wxwidgets +inherit eutils flag-o-matic wxwidgets DESCRIPTION="The open source, cross platform, free C++ IDE" HOMEPAGE="http://www.codeblocks.org/" @@ -29,8 +30,10 @@ DEPEND="${RDEPEND} src_configure() { touch "${S}"/revision.m4 -r "${S}"/acinclude.m4 - setup-wxwidgets + + append-cxxflags $(test-flags-CXX -fno-delete-null-pointer-checks) + econf \ --with-wx-config="${WX_CONFIG}" \ $(use_enable debug) \