From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15399 invoked by alias); 7 Apr 2014 19:16:00 -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: 18707 Received: (qmail 29506 invoked from network); 7 Apr 2014 19:15:44 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.2 Message-ID: <1396897619.1172.14.camel@air.home.fifi.org> Subject: Re: Building Zsh: No terminal handling library found - But I installed ncourses From: Philippe Troin To: Josh Wasserstein Cc: Zsh Users Date: Mon, 07 Apr 2014 12:06:59 -0700 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.8.5 (3.8.5-2.fc19) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit On Mon, 2014-04-07 at 14:43 -0400, Josh Wasserstein wrote: > Since I am not root on this system, I downloaded ncurses and installed it > manually (also using ./configure --prefix=), which > seems to have gone well. > > I then updated the following paths: > > INSTALLATION_PATH='/path/to/installation' > export PATH=$INSTALLATION_PATH/bin/:$PATH > export LD_LIBRARY_PATH=$INSTALLATION_PATH/lib:$LD_LIBRARY_PATH > export CFLAGS=-I$INSTALLATION_PATH/lib ^^^^^^^^^^^^^^^^^^^^^^^ Shouldn't that be: export CFLAGS=-I$INSTALLATION_PATH/include > and tried installing Zsh again, but got the same ncurses error. As far as I > can tell, the path variables above point to the right locations, and I can > check this on the shell. You may need to re-run the configure step after changing the environment variables, otherwise the changes may not be picked up. Phil.