zsh-workers
 help / color / mirror / code / Atom feed
* zsh 3.1.4: Fix for compiling with HP/UX 10.20
@ 1998-06-27  2:11 Jonathan A. George
  0 siblings, 0 replies; only message in thread
From: Jonathan A. George @ 1998-06-27  2:11 UTC (permalink / raw)
  To: zsh-workers, zefram

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@tel.gte.com>


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~1998-06-27  2:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-06-27  2:11 zsh 3.1.4: Fix for compiling with HP/UX 10.20 Jonathan A. George

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).