Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
zsh 3.1.4: Fix for compiling with HP/UX 10.20
- X-seq: zsh-workers 4177
- From: "Jonathan A. George" <jageorge@xxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxxx, zefram@xxxxxxxx
- Subject: zsh 3.1.4: Fix for compiling with HP/UX 10.20
- Date: Fri, 26 Jun 1998 22:11:16 -0400
- Sender: jageorge@xxxxxxxxxxxxxxxxxxxxxxxxxxx
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