From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4cy0Sc5mq5z32TH for ; Thu, 30 Oct 2025 10:18:40 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4cy0SY2rZWz332M for ; Thu, 30 Oct 2025 10:18:37 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4cy0SY0YPgz41l; Thu, 30 Oct 2025 10:18:37 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1761819517; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YwDu4axpBMHvAYNMleTvmDA3O4nNVxSzRBN7E4km0S8=; b=cjytgy44ibiB5g9KajUrS9GcDKCtq86fRMQz17jnJMkS1isiffGOlOnS+zCYzVcH7p8pxF k8ZK/VfXyCgOz/Bg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1761819517; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YwDu4axpBMHvAYNMleTvmDA3O4nNVxSzRBN7E4km0S8=; b=SL1oa3rzA4WMy824dqE7qxMAX37QqA9uuVHymqgOb6Zm2nz9B9/+5OPfKJCndtMUxinsza 0lACVCRFNONB6iCwbq/1pg+i6VLIchkSLtBAKSHJCOGuIp5sd2XA+KW7NvhViuvaEm488T 5H5Qgi7v76J0FNFnFqT0Tblz1hkXxjXoUjvGb/GN84TtQQQtejqyAl8xOXQia/NT0acZ7z tDeKF2YLtxSGV/j2t+w87mNv1qOOqv/6ieTImyDyhpmmZNkJ0/RIdgarChcWVLIYW4J+T5 goK3vzh8+xnVv94JO83OVdmQCAITaHBvre+DS1+A5Nyrl9CQnflV0pTYlZiYCg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 3/4] tcl: install private headers for expect to use in build Date: Thu, 30 Oct 2025 11:18:29 +0100 Message-ID: <20251030101830.30837-3-adolf.belka@ipfire.org> In-Reply-To: <20251030101830.30837-1-adolf.belka@ipfire.org> References: <20251030101830.30837-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - expect looks for both the public and private headers so make install-private-headers added into lfs. - Update of rootfile Signed-off-by: Adolf Belka --- config/rootfiles/common/tcl | 7 +++++++ lfs/tcl | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/config/rootfiles/common/tcl b/config/rootfiles/common/tcl index e01d7cfa2..e64e428c1 100644 --- a/config/rootfiles/common/tcl +++ b/config/rootfiles/common/tcl @@ -16,12 +16,19 @@ usr/bin/tclsh8.6 #usr/include/pqStubs.h #usr/include/tcl.h #usr/include/tclDecls.h +#usr/include/tclInt.h +#usr/include/tclIntDecls.h +#usr/include/tclIntPlatDecls.h #usr/include/tclOO.h #usr/include/tclOODecls.h +#usr/include/tclOOInt.h +#usr/include/tclOOIntDecls.h #usr/include/tclPlatDecls.h +#usr/include/tclPort.h #usr/include/tclThread.h #usr/include/tclTomMath.h #usr/include/tclTomMathDecls.h +#usr/include/tclUnixPort.h #usr/include/tdbc.h #usr/include/tdbcDecls.h #usr/include/tdbcInt.h diff --git a/lfs/tcl b/lfs/tcl index b02f11ac0..1cf940ed2 100644 --- a/lfs/tcl +++ b/lfs/tcl @@ -80,8 +80,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP)/unix && ./configure --prefix=$(PREFIX) cd $(DIR_APP)/unix && make $(MAKETUNING) cd $(DIR_APP)/unix && make install -ifneq "$(ROOT)" "" cd $(DIR_APP)/unix && make install-private-headers +ifneq "$(ROOT)" "" ln -sf tclsh8.6 $(TOOLS_DIR)/bin/tclsh else ln -sf tclsh8.6 /usr/bin/tclsh -- 2.51.1