This is the mail archive of the insight@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Fwd: [commit] Check for ../itcl before enabling insight]


FYI [got insight@ wrong]
--- Begin Message ---
>From gdb-patches-return-38188-cagney=gnu.org@sources.redhat.com  Tue Feb 22 18:34:19 2005
Return-Path: <gdb-patches-return-38188-cagney=gnu.org@sources.redhat.com>
X-Original-To: cagney@localhost
Delivered-To: cagney@localhost.redhat.com
Received: from localhost (localhost.localdomain [127.0.0.1])
	by localhost.redhat.com (Postfix) with ESMTP id 3AB4B7D79
	for <cagney@localhost>; Tue, 22 Feb 2005 18:34:18 -0500 (EST)
Envelope-to: cagney@gnu.org
Delivery-date: Tue, 22 Feb 2005 18:36:20 -0500
Received: from fencepost.gnu.org
	by localhost with IMAP (fetchmail-6.2.5)
	for cagney@localhost (single-drop); Tue, 22 Feb 2005 18:34:18 -0500 (EST)
Received: from monty-python.gnu.org ([199.232.76.173])
	by fencepost.gnu.org with esmtp (Exim 4.34)
	id 1D3jZk-00050q-4U
	for cagney@gnu.org; Tue, 22 Feb 2005 18:36:20 -0500
Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.34)
	id 1D3jUv-0007va-PY
	for cagney@gnu.org; Tue, 22 Feb 2005 18:31:22 -0500
Received: from [12.107.209.250] (helo=sourceware.org)
	by monty-python.gnu.org with smtp (Exim 4.34)
	id 1D3jUv-0007vN-B0
	for cagney@gnu.org; Tue, 22 Feb 2005 18:31:21 -0500
Received: (qmail 314 invoked by alias); 22 Feb 2005 23:24:39 -0000
Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:gdb-patches-unsubscribe-cagney=gnu.org@sources.redhat.com>
List-Subscribe: <mailto:gdb-patches-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/gdb-patches/>
List-Post: <mailto:gdb-patches@sources.redhat.com>
List-Help: <mailto:gdb-patches-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: gdb-patches-owner@sources.redhat.com
Delivered-To: mailing list gdb-patches@sources.redhat.com
Received: (qmail 32691 invoked from network); 22 Feb 2005 23:24:33 -0000
Received: from unknown (HELO mx1.redhat.com) (66.187.233.31)
  by sourceware.org with SMTP; 22 Feb 2005 23:24:33 -0000
Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254])
	by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j1MNOWkr031205
	for <gdb-patches@sources.redhat.com>; Tue, 22 Feb 2005 18:24:33 -0500
Received: from localhost.redhat.com (vpn50-45.rdu.redhat.com [172.16.50.45])
	by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j1MNOWK20919;
	Tue, 22 Feb 2005 18:24:32 -0500
Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1])
	by localhost.redhat.com (Postfix) with ESMTP id 6B09A7D79;
	Tue, 22 Feb 2005 18:21:27 -0500 (EST)
Message-ID: <421BBE76.4050009@gnu.org>
Date: Tue, 22 Feb 2005 18:21:26 -0500
From: Andrew Cagney <cagney@gnu.org>
User-Agent: Mozilla Thunderbird 0.8 (X11/20041020)
MIME-Version: 1.0
To: gdb-patches@sources.redhat.com, insight@gnu.org
Subject: [commit] Check for ../itcl before enabling insight
Content-Type: multipart/mixed;
 boundary="------------000702090204080607090307"
X-Spam-Status: No, hits=0.5 required=5.0
	tests=RCVD_IN_ORBS,USER_AGENT
	version=2.55
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp)

This is a multi-part message in MIME format.
--------------000702090204080607090307
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

This is to help prevent accidental builds of insight.

committed,
Andrew

--------------000702090204080607090307
Content-Type: text/plain;
 name="diffs"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="diffs"

2005-02-22  Andrew Cagney  <cagney@gnu.org>

	* configure.ac: Only enaable insight when itcl is present.
	* configure: Re-generate.
	
Index: configure.ac
===================================================================
RCS file: /cvs/src/src/gdb/configure.ac,v
retrieving revision 1.11
diff -p -u -r1.11 configure.ac
--- configure.ac	29 Jan 2005 12:50:27 -0000	1.11
+++ configure.ac	22 Feb 2005 23:22:31 -0000
@@ -194,7 +194,7 @@ AC_ARG_ENABLE(gdbtk,
     *)
       AC_MSG_ERROR([bad value $enableval for --enable-gdbtk]) ;;
   esac],
-  [if test -d $srcdir/gdbtk; then
+  [if test -d $srcdir/gdbtk -a -d $srcdir/../itcl; then
     enable_gdbtk=yes
   else
     enable_gdbtk=no

--------------000702090204080607090307--


--- End Message ---

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]