From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43941) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gK3TX-0005U0-OF for guix-patches@gnu.org; Tue, 06 Nov 2018 10:41:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gK3TS-0002d8-AO for guix-patches@gnu.org; Tue, 06 Nov 2018 10:41:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:33220) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gK3TS-0002cq-6T for guix-patches@gnu.org; Tue, 06 Nov 2018 10:41:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gK3TS-0003Wo-3R for guix-patches@gnu.org; Tue, 06 Nov 2018 10:41:02 -0500 Subject: [bug#33186] [PATCH 6/7] gnu: slang: Use a correct location for terminfo dirs. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20181028124043.21773-2-m.othacehe@gmail.com> <20181028124043.21773-7-m.othacehe@gmail.com> Date: Tue, 06 Nov 2018 16:40:42 +0100 In-Reply-To: <20181028124043.21773-7-m.othacehe@gmail.com> (Mathieu Othacehe's message of "Sun, 28 Oct 2018 21:40:42 +0900") Message-ID: <87tvkuw6x1.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Mathieu Othacehe Cc: 33186@debbugs.gnu.org Mathieu Othacehe skribis: > As termcap is disabled and no terminfo directory is given, slang is not a= ble > to query terminal capabilities. Specifying a correct path for terminfo wi= ll > automatically disable termcap support in the configuration. > > * gnu/packages/slang.scm (slang)[source]: Remove the snippet disabling > termcap. > [arguments]: Set MISC_TERMINFO_DIRS to a correct location. Note that ncurses honors the TERMINFO_DIRS environment variable, so I suppose it would work to just set it at run time? Now, if this change means that Slang will work out-of-the-box by default, it=E2=80=99s probably preferable. Thanks.