From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Tree-Sitter Version Seen in config.log: Date: Sun, 29 Jan 2023 08:35:05 +0200 Message-ID: <83mt6197c6.fsf@gnu.org> References: Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20524"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: "T.V Raman" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Jan 29 07:35:57 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pM1ID-00058n-6Z for ged-emacs-devel@m.gmane-mx.org; Sun, 29 Jan 2023 07:35:57 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pM1Hb-0003Ak-BK; Sun, 29 Jan 2023 01:35:20 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pM1HY-0003AJ-1W for emacs-devel@gnu.org; Sun, 29 Jan 2023 01:35:16 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pM1HX-0007V0-Fp; Sun, 29 Jan 2023 01:35:15 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=5n8nya+V7M2qwT+6RDSmvyoOEzkYLJnLMw3NWzzep+s=; b=SNieorBvhYKp gOYFPPnN/XxpuklY5/gkN5FIldgVYQWbR1t225xBGMCL6tnJcoklaYhWqizS2bgua0vW9cDC/NeYq qYSYXzJvDWbOrFuIehwgEn4gFmt/uv/qpldeBkTbmWYnDZ4Zgv1VkGlm6wi6eJnfPjn01oztCsVaa +3n/Q9WtvmjZz9+WXIOKCCrFLDF0xTtjnxCEdauMkZRWPpt0oJdAzLAQGJ/YIfmsZ7L+0K1QlVTBr 6YLQx9jh6L+wE3BMZND0F2rONDixHlCaXM5sbc98pHWZ/A0p7MJJ9jpmxagzH/FsexsyO21K8x07A njBfKdzehTwWnh1bbyU9Lw==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pM1HW-00083n-Q0; Sun, 29 Jan 2023 01:35:15 -0500 In-Reply-To: (raman@google.com) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:302740 Archived-At: > Date: Sat, 28 Jan 2023 19:51:24 -0800 > From: "T.V Raman" > > Seen in config.log; this is confusing and possibly a red-herring. > > Requested 'tree-sitter >= 0.20.2' but version of tree-sitter is 0.6.3 > You may find new versions of tree-sitter at https://tree-sitter.github.io/ A known and harmless issue. It is waiting for the tree-sitter developers to get their act together and update the pkg-config file they distribute with the correct version of the library. In general, config.log includes many error messages from various tests, and that is normal: part of the job of the configure script is to learn about the system by trial-and-error. So an error message you see there doesn't mean anything wrong, unless the outcome of the script as a whole is wrong. E.g., if the script decides you don't have a suitable version of tree-sitter installed whereas you actually do, then that's a problem worth reporting. But just seeing a random error message there is not a problem.