Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
zsh 4.0.6 HP-UX 11.00 backspace
- X-seq: zsh-workers 17748
- From: "Mark Wright" <markw@xxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: zsh 4.0.6 HP-UX 11.00 backspace
- Date: Tue, 01 Oct 2002 10:32:32 +1000
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- Priority: normal
- Reply-to: markw@xxxxxxxx
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="curses ncurses termcap" ;;
I changed it to:
termcap_curses_order="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: <zsh-users@xxxxxxxxxxxxxx> 3194
From: Johannes Mähner <johanm@xxxxxxxxxxx>
To: "zsh-users@xxxxxxxxxxxxxx" <zsh-users@xxxxxxxxxxxxxx>
Subject: "SOLVED" zsh problem on HPUX 11.00
Date: Tue, 20 Jun 2000 18:18:40 +0200
Mailing-List: contact zsh-users-help@xxxxxxxxxxxxxx; 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.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author