From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22263 invoked by alias); 7 Apr 2014 20:25:45 -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: 18708 Received: (qmail 25635 invoked from network); 7 Apr 2014 20:25:31 -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=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,HTML_MESSAGE autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=GE3n5wjxkRVBziSTPDCAxaw9qzKCQrOtvtNC1fU1nHQ=; b=g1VJMdqMjo4Jt0VY0ZOKr3JmcSb/oKXLFRyo0q/GEBww+q4peJCAVougl9rgskudeV e316mea/N1CdMZlgz1GBCtJRqnisUNsiFa67NTXyAUCF55Jd2TvUENYXO7jFg8sOjRBO h5K5CkPpBTD+zhPLSxpvE4QBXpDC/P7D0YPAE0n+FymWBpMSO/kodY76OuLsd4sHyzL3 eOReKYq+u2bOhG4+e/43Fx9M7i3YJi/Zsa7GlUFsAikr9q86B9MtBpjcU/du6t+amosr pA54Ptgzx3K6m+UrAxhexgAUV2Iy/VP5UYssjKMu3cSq+2balv0Y697gLH73gwjWD3o7 K5Ug== X-Received: by 10.140.49.109 with SMTP id p100mr35300800qga.47.1396902324693; Mon, 07 Apr 2014 13:25:24 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1396897619.1172.14.camel@air.home.fifi.org> References: <1396897619.1172.14.camel@air.home.fifi.org> From: Josh Wasserstein Date: Mon, 7 Apr 2014 16:25:04 -0400 Message-ID: Subject: Re: Building Zsh: No terminal handling library found - But I installed ncourses To: Philippe Troin Cc: Zsh Users Content-Type: multipart/alternative; boundary=001a1137087cd989f704f679aab1 --001a1137087cd989f704f679aab1 Content-Type: text/plain; charset=ISO-8859-1 Thanks Philippe. I fixed that so that CFLAGS points to the include folder (I tried both the parent folder and the folder with the headers). Still no luck ... Josh On Mon, Apr 7, 2014 at 3:06 PM, Philippe Troin wrote: > 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. > > --001a1137087cd989f704f679aab1--