From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12847 invoked by alias); 7 Apr 2014 18:43:52 -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: 18706 Received: (qmail 20865 invoked from network); 7 Apr 2014 18:43:37 -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.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to:content-type; bh=Qw8rTa6L2RTfej1itaIBqUIsknSdHB7i0aGhW7pIzXU=; b=NRd93N34/pLZXV/5qss8UZOTHQl264GgNH/EdMM8gYcSJmqeI8rles3yVpijxG1Jab 73FEzXz4ms1riBrIH6H2TJMU3B7qd9ucnJSmL4PTV3LWecdpxKjZ7tYc9oRU3e93m1E+ ctwR0LUQ1ALfF657rmrcRTzifjpYHxiMAM7tWwkko9cZRDPChGrp45VBbqq56uElk7eE c/LkGDjodSfirggDHfSliuKyXCoQeF3WazXGuN7g7chvemIMBByYdM0r2Rf5r7xgbJBJ fQVRxLaLH4N2xTyRxkWPd4AI2lbPe2xlscuW20OupAbsTv7FWvKPLkPN+5OV+mWRi9IJ Amkw== X-Received: by 10.140.82.167 with SMTP id h36mr34482859qgd.51.1396896213138; Mon, 07 Apr 2014 11:43:33 -0700 (PDT) MIME-Version: 1.0 From: Josh Wasserstein Date: Mon, 7 Apr 2014 14:43:13 -0400 Message-ID: Subject: Building Zsh: No terminal handling library found - But I installed ncourses To: Zsh Users Content-Type: multipart/alternative; boundary=001a11c120ce92815d04f6783eb5 --001a11c120ce92815d04f6783eb5 Content-Type: text/plain; charset=ISO-8859-1 Hi, I am trying to install Zsh without root privileges on a Linux machine. I downloaded the source tarball and run: ./configure --prefix= but then I got: configure: error: "No terminal handling library was found on your system. This is probably a library called curses or ncurses. You may need to install a package called 'curses-devel' or 'ncurses-devel' on your system" Installing ncurses: 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 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. Why is Zsh not recognizing ncurses? Note: A copy of this question was posted on the Unix & Linux StackExchange Q&A site: http://unix.stackexchange.com/questions/123597/building-zsh-no-terminal-handling-library-found Josh --001a11c120ce92815d04f6783eb5--