From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9517 invoked from network); 1 Oct 2002 00:31:18 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 1 Oct 2002 00:31:18 -0000 Received: (qmail 20156 invoked by alias); 1 Oct 2002 00:31:04 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 17748 Received: (qmail 20144 invoked from network); 1 Oct 2002 00:31:03 -0000 From: "Mark Wright" To: zsh-workers@sunsite.dk Date: Tue, 01 Oct 2002 10:32:32 +1000 MIME-Version: 1.0 Subject: zsh 4.0.6 HP-UX 11.00 backspace Reply-to: markw@exln.com Message-ID: <3D9979C0.4265.2BC7282A@localhost> Priority: normal X-mailer: Pegasus Mail for Windows (v4.02) Content-type: text/plain; charset=ISO-8859-1 Content-transfer-encoding: Quoted-printable Content-description: Mail message body Hello, In the email below Johannes found there was a problem with various keys like backspace not working with the default compilation of what I think would have been zsh 4.0.4 on HP-UX 11.00. I encountered the same problem when compiling zsh 4.0.6 on HP-UX 11.00 with gcc 3.2 like: ./configure --disable-dynamic I just wanted to let you know that the fix Johannes suggested worked for me also. I edited the configure script, and on the line termcap_curses_order in the following case statement: case "$host_os" in hpux10.*|hpux11.*|solaris*) termcap_curses_order=3D"curses ncurses termcap" ;; I changed it to: termcap_curses_order=3D"ncurses curses termcap" ;; then did: ./configure --disable-dynamic make install Then the backspace key works fine. I used ncurses 5.2. Thanks, Mark "SOLVED" zsh problem on HPUX 11.00 --------------------------------------------------------------------------= ------ X-Mailing-List: 3194 From: Johannes M=E4hner To: "zsh-users@sunsite.auc.dk" Subject: "SOLVED" zsh problem on HPUX 11.00 Date: Tue, 20 Jun 2000 18:18:40 +0200 Mailing-List: contact zsh-users-help@sunsite.auc.dk; run by ezmlm Organization: camline --------------------------------------------------------------------------= ------ I "solved" my zsh/termcap problem on our HPUX 11.00 system by using the brute-force-method: Installing ncurses-5.0 locally und linking zsh with these libraries instead of the original HPUX-curses library solved the problem. Nevertheless, thanks to anyone who replied to my mail.