Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: PATCH: configure - use ncurses (not only ncursesw) before tinfo
- X-seq: zsh-workers 44716
- From: Sebastian Gniazdowski <sgniazdowski@xxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxx>
- Subject: Re: PATCH: configure - use ncurses (not only ncursesw) before tinfo
- Date: Wed, 28 Aug 2019 02:51:18 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :content-transfer-encoding; bh=DMtOcV9FhKYxbIGhV1TtnKqCxSHp1CstETeCjP9Vz9I=; b=q1B93CQc411zl3WYZxLNvGQ1/y1Im/LZ7hJu6DDh6/yQxTwvEn0KZd+dz32qQkoeTW vOWS5gCWhjyiGFk1MAIQDvUpOlmuwkoqwz/EItdEpRvL2+UQzm3kU1YEWjo+3JHhnd1+ ZbOmLl0rr1Xs5SN2CNH7tmLcNTlJRg+bi+YEiHSMFC8jmkYm6X91AhBHPQQ45KkiFszr bzpINjWrKTl9dDD/qhmRkMRW70sTfzgmM4U1jPCfQpQrjruj1w2pvEHQkQYx8L7memHb KEYO2GxQJzCex1mRT0kPrxP6J3WhI6GbFVXROMsDSGIhf7bSO15szQF83DA8ABbKcW2h xQFg==
- In-reply-to: <CAKc7PVC-Ms6NAOuw5SuEgfjTkdJwKoiMWP3H58f8QnzdL=hbuA@mail.gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <CAKc7PVC-Ms6NAOuw5SuEgfjTkdJwKoiMWP3H58f8QnzdL=hbuA@mail.gmail.com>
Just one more thing – if someone would have doubts as whether we
should so one directionally bind Zsh to ncurses, then let's notice
that the second library in the order enumeration – tinfo – is an
extracted terminal-sequences sublibrary taken out of ncurses.
On Tue, 27 Aug 2019 at 04:32, Sebastian Gniazdowski
<sgniazdowski@xxxxxxxxx> wrote:
>
> Hello,
> I've noticed that Zsh shipped with Mageia doesn't include zsh/curses
> module. Trying to build Zsh revealed the cause: Mageia ships with
> libncurses, not libncursesw and the relevant part in configure.ac
> says:
>
> termcap_curses_order="$ncursesw_test tinfo termcap $ncurses_test curses" ;;
>
> The width of the curses library is irrelevant to Zsh - it only needs
> the terminal sequences from the library, which aren't associated to
> any Unicode topic. As for the part that actually is relevant to the
> Unicode - the zsh/curses module - it is still better to build it
> without the multibyte support than not to build it at all.
>
> Not to say that libncurses libraries today do have multibyte support.
> So the conservative terminal-library order doesn't have any support in
> reality. The patch changes the order to:
>
> termcap_curses_order="$ncursesw_test $ncurses_test tinfo termcap curses" ;;
>
> --
> Sebastian Gniazdowski
> News: https://twitter.com/ZdharmaI
> IRC: https://kiwiirc.com/client/chat.freenode.net:+6697/#zplugin
> Blog: http://zdharma.org
--
Sebastian Gniazdowski
News: https://twitter.com/ZdharmaI
IRC: https://kiwiirc.com/client/chat.freenode.net:+6697/#zplugin
Blog: http://zdharma.org
Messages sorted by:
Reverse Date,
Date,
Thread,
Author