Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: zsh compiling on Apple OSX v. 10.4.x



William Scott wrote:
> When I tried compiling zsh on OSX v. 10.4, I found that the resulting  
> zsh, when invoked, did not appear to respond to arrow keys, back- 
> spaces and so-forth (I say "appear" because apparently it just  
> doesn't update the terminal display).  Following Apple's patch, I  
> configured and then edited the file config.h to remove the lines
> 
> 
>      391 /* Define to 1 if you have the `poll' function. */
>      392 /* #define HAVE_POLL 1 */
>      393
>      394 /* Define to 1 if you have the <poll.h> header file. */
>      395 /* #define HAVE_POLL_H 1 */
> 
> Then compiled and installed and the problem went away.
> 
> However, I have two questions:
> 
> 1.  What did I do, and is it harmful?

There are various ways for the shell to wait for input, in particular
a key press, without using CPU time while it does so.  The poll()
system call is one.  Chances are that your system also has the
select() system call, in which case when you comment out the lines above
zsh will use that instead.  (You could check for HAVE_SELECT in
config.h.)  As long as keyboard input is working the shell must be happy;
if removing poll() had done anything harmful, you'd certainly know by now.

> 2.  When root uses zsh (either the one I compiled or the one Apple  
> provided) the problem returns.  What's going on with that?

The possibilities are (i) some shell option is different, which you can
check by running in both cases without initilisation files (ii) something
in the environment is different, the TERM variable being an obvious
possibility (or TERMCAP, or TERMINFO) (iii) there are a different set
of dynamic libraries in use as root (iv) different STREAMS modules
have been pushed onto the terminal I/O stream; we had problems with the
zpty module owing to STREAMS weirdness (sorry if this sounds rather opaque,
it's rather opaque to me too) (v) something I haven't thought of.  It's
hard to guess.

-- 
Peter Stephenson <pws@xxxxxxx>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

**********************************************************************



Messages sorted by: Reverse Date, Date, Thread, Author