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

zsh 3.1.4: Fix for compiling with HP/UX 10.20



In order to compile ZSH 3.1.4 with HP/UX 10.20 the following change MUST
be made.

REPLACE THESE LINES in watch.c
# undef ut_time
# define ut_time ut_xtime

WITH THESE LINES
# undef ut_time
#ifndef _HPUX_SOURCE
# define ut_time ut_xtime
#else
# define ut_time ut_tv.tv_sec
#endif

I am not on the zsh mailing list, so send mail me directly if you have
any questions.

-- 
Jonathan A. George
External: <mailto:jageorge@xxxxxxxxxxx>



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