From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9717 invoked by alias); 24 May 2013 11:15:33 -0000 Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org Received: (qmail 9702 invoked by uid 89); 24 May 2013 11:15:33 -0000 X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=AWL,BAYES_05,RCVD_VIA_APNIC,RP_MATCHES_RCVD,SPF_HELO_PASS,T_MANY_HDRS_LCASE autolearn=ham version=3.3.1 Received: from mailout2.w1.samsung.com (HELO mailout2.w1.samsung.com) (210.118.77.12) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Fri, 24 May 2013 11:15:32 +0000 Received: from eucpsbgm1.samsung.com (unknown [203.254.199.244]) by mailout2.w1.samsung.com (Oracle Communications Messaging Server 7u4-24.01(7.0.4.24.0) 64bit (built Nov 17 2011)) with ESMTP id <0MNA00C54V9GHE50@mailout2.w1.samsung.com> for insight@sourceware.org; Fri, 24 May 2013 12:15:29 +0100 (BST) Received: from eusync3.samsung.com ( [203.254.199.213]) by eucpsbgm1.samsung.com (EUCPMTA) with SMTP id 1C.08.13793.1DB4F915; Fri, 24 May 2013 12:15:29 +0100 (BST) Received: from fedinw7x64 ([106.109.9.113]) by eusync3.samsung.com (Oracle Communications Messaging Server 7u4-23.01 (7.0.4.23.0) 64bit (built Aug 10 2011)) with ESMTPA id <0MNA000U1V9STP10@eusync3.samsung.com> for insight@sourceware.org; Fri, 24 May 2013 12:15:29 +0100 (BST) From: Fedin Pavel To: insight@sourceware.org Subject: One more problem building new Insight Date: Fri, 24 May 2013 11:15:00 -0000 Message-id: <001601ce586f$ff6d9970$fe48cc50$%fedin@samsung.com> MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-SW-Source: 2013-q2/txt/msg00011.txt.bz2 Hello! Updated gdb's configure script cannot find TCL private includes: --- cut --- Checking for Tcl configuration... (cached) found /e/Projects/insight/src/tcl/win/tclConfig.sh Checking for Tk configuration... (cached) found /e/Projects/insight/src/tk/win/tkConfig.sh Checking for existence of /e/Projects/insight/src/tcl/win/tclConfig.sh... loading Checking for Tcl private headers... configure: error: could not find private Tcl headers --- cut --- Analysis shows that the script looks for these includes in ${TCL_INCLUDE_SPEC}/tcl-private/generic. TCL_INCLUDE_SPEC is provided by tclConfig.sh, and is equal to $prefix/include. But why is it looking for private includes there ? They are part of source code and are not expected to be there. Shouldn't this be ${TCL_SRC_DIR}/tcl-private/generic instead ? Kind regards.