From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29267 invoked by alias); 5 Oct 2015 17:22:11 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 20698 Received: (qmail 2117 invoked from network); 5 Oct 2015 17:22:10 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=dxmr7BCB/2NXZwWO41UhkuE0GuG6uOoe5QeReS+SZAY=; b=BdAer5j56wRNWz1Xbftm4X8Ehfpe2eVaUzU2HYl2GVdUWsy+5oHX0o/da44of1lNL4 ckD5sfPM7LZdkzpgeZ6ytUdKNe7W9m5Zw0QAbolxoXLy+zeejAKAu5VtzwTiVAzLyzWi Dk4fn6H3wL0HnUl4NiEWu4/2S2aj/frE/+WqdzaSk5GZtaJGvofYc6VHzsNNw4+9BMTe 4TOSUHNvY1r929XpZ03dcuSmPGy6/AVr57P+v87L4Vg1QU+DQSeJeEMF8IYl3je3yPuH pxF1OUgVbMfWzljInmoPkNIkTWNiQKwGOHpkwVJhkGxzvhVWB4lG3jDg6xF5S3BE53P3 do+w== X-Gm-Message-State: ALoCoQn0SUfBU+acQDZ+6b0ifMURlxQKd5FyxFKD/cL0KswYVF1Gfnyi+XefTOsyduXbO/4ET155 X-Received: by 10.60.124.227 with SMTP id ml3mr17543603oeb.16.1444065723838; Mon, 05 Oct 2015 10:22:03 -0700 (PDT) From: Bart Schaefer Message-Id: <151005102200.ZM18934@torch.brasslantern.com> Date: Mon, 5 Oct 2015 10:22:00 -0700 In-Reply-To: <56120040.7050500@eastlink.ca> Comments: In reply to Ray Andrews "Re: missing curses.so" (Oct 4, 9:44pm) References: <560DEDDD.6080603@eastlink.ca> <151003115816.ZM4689@torch.brasslantern.com> <56120040.7050500@eastlink.ca> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-users@zsh.org Subject: Re: missing curses.so MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Oct 4, 9:44pm, Ray Andrews wrote: } Subject: Re: missing curses.so } } It seems strange. I have '/usr/include/ncurses.h' and the thing seems to } find it and then not find it: It checks first whether it's actually there, and then if it is, it is checked again as part of the "terminal library search order" to decide which installed library is the best one to use. The default order is "ncursesw tinfo termcap ncurses curses" unless you are using solaris or hpux. So ncurses will be skipped in favor of terminfo or termcap because the latter two work better for the purposes of the main shell (prompts and ZLE), which (I think) will cause the zsh/curses module not to be compiled. This is probably a configure.ac bug. } 2$ ./configure --with-term-lib } } ... shows: } } configure: error: "No terminal handling library was found on your system. RTF "INSTALL" file. --with-term-lib takes an argument. No argument means no library.