Received: by mail.netbsd.org (Postfix, from userid 605) id 08B9284D60; Sun, 24 Nov 2019 14:04:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8483484D04 for ; Sun, 24 Nov 2019 14:04:17 +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 Pivu9TQj-hA9 for ; Sun, 24 Nov 2019 14:04:17 +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 E07BF84D02 for ; Sun, 24 Nov 2019 14:04:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D4889FA97; Sun, 24 Nov 2019 14:04:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157460425633720" MIME-Version: 1.0 Date: Sun, 24 Nov 2019 14:04:16 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/editors/codeblocks To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20191124140416.D4889FA97@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. --_----------=_157460425633720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sun Nov 24 14:04:16 UTC 2019 Modified Files: pkgsrc/editors/codeblocks: hacks.mk Log Message: editors/codeblocks: Fix empty/M pattern To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/editors/codeblocks/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157460425633720 Content-Disposition: inline Content-Length: 820 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/codeblocks/hacks.mk diff -u pkgsrc/editors/codeblocks/hacks.mk:1.3 pkgsrc/editors/codeblocks/hacks.mk:1.4 --- pkgsrc/editors/codeblocks/hacks.mk:1.3 Sat Nov 23 19:39:30 2019 +++ pkgsrc/editors/codeblocks/hacks.mk Sun Nov 24 14:04:16 2019 @@ -1,11 +1,11 @@ -# $NetBSD: hacks.mk,v 1.3 2019/11/23 19:39:30 gdt Exp $ +# $NetBSD: hacks.mk,v 1.4 2019/11/24 14:04:16 gdt Exp $ ### g++ 4.8 and 5.3 on NetBSD/i386 fails with an internal compiler error ### when PCH is used. Be conservative and disable on all MACHINE_ARCH ### .if ${OPSYS} == "NetBSD" . include "../../mk/compiler.mk" -. if !empty(${PKGSRC_COMPILER:Mgcc}) && \ +. if !empty(PKGSRC_COMPILER:Mgcc) && \ (!empty(CC_VERSION:Mgcc-4.8.*) || !empty(CC_VERSION:Mgcc-5.*)) CONFIGURE_ARGS+= --disable-pch . endif --_----------=_157460425633720--