From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DCCA71381F3 for ; Mon, 17 Dec 2012 10:20:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5549521C0E1; Mon, 17 Dec 2012 10:19:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B44FE21C0E1 for ; Mon, 17 Dec 2012 10:19:28 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD68733DB8E for ; Mon, 17 Dec 2012 10:19:27 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2306) id 7CF5120081; Mon, 17 Dec 2012 10:19:26 +0000 (UTC) From: "Alexandre Rostovtsev (tetromino)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tetromino@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-util/anjuta/files: anjuta-3.5.91-cxx-check.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: anjuta-3.5.91-cxx-check.patch X-VCS-Directories: dev-util/anjuta/files X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121217101926.7CF5120081@flycatcher.gentoo.org> Date: Mon, 17 Dec 2012 10:19:26 +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: eeac151f-c530-425b-b775-c906b06ca94f X-Archives-Hash: adbe5b7bb55fdcac5b01bc7df0d04870 tetromino 12/12/17 10:19:26 Added: anjuta-3.5.91-cxx-check.patch Log: Version bump for gnome-3.6. Update license. (Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61) Revision Changes Path 1.1 dev-util/anjuta/files/anjuta-3.5.91-cxx-check.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/files/anjuta-3.5.91-cxx-check.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/anjuta/files/anjuta-3.5.91-cxx-check.patch?rev=1.1&content-type=text/plain Index: anjuta-3.5.91-cxx-check.patch =================================================================== >From 4d59f47b7f42951638f4390ef1a4a3373486d083 Mon Sep 17 00:00:00 2001 From: Alexandre Rostovtsev Date: Tue, 25 Sep 2012 02:32:31 -0400 Subject: [PATCH] configure: fix C++ compiler check AC_PROG_CXX sets CXX, not ac_ct_CXX https://bugzilla.gnome.org/show_bug.cgi?id=684758 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 106c1b4..21e9386 100644 --- a/configure.ac +++ b/configure.ac @@ -80,7 +80,7 @@ fi AC_LANG([C]) AC_LANG([C++]) AC_PROG_CXX -if test "x$ac_ct_CXX" = "x" +if test "x$CXX" = "x" then AC_MSG_ERROR([C++ Compiler required to compile Anjuta]) fi -- 1.7.12