From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18813 invoked from network); 23 Oct 1998 19:29:01 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 23 Oct 1998 19:29:01 -0000 Received: (from list@localhost) by math.gatech.edu (8.9.1/8.9.1) id PAA29478; Fri, 23 Oct 1998 15:22:05 -0400 (EDT) Resent-Date: Fri, 23 Oct 1998 15:22:05 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 23 Oct 1998 15:25:35 -0400 (EDT) From: Kevin Sullivan To: benjamin@cs.ualberta.ca, richard@connections.yk.ca, zsh-workers@math.gatech.edu Subject: Re: Compile problems on HP-UX 11.00 In-Reply-To: <13872.50268.527016.316992@drkstr> References: <3.0.6.32.19981023095925.007fa480@mail.connections.yk.ca> <19981023173705Z13513-27162+173@scapa.cs.ualberta.ca> <13872.50268.527016.316992@drkstr> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <13872.55129.529938.955579@drkstr> Resent-Message-ID: <"nTxvl1.0.XC7.TTDCs"@math> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/4445 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu I left out some critical information in my explanation of the change I made. Dooh.. I am made this change in version zsh-3.1.4 with no patches. In any event here is a context diff I made of the file Src/watch.c: diff -c original_watch.c changed_watch.c *** original_watch.c Sun May 31 09:08:15 1998 --- changed_watch.c Wed Jun 17 08:12:19 1998 *************** *** 88,94 **** #if !defined(WATCH_STRUCT_UTMP) && defined(HAVE_STRUCT_UTMPX) && defined(REAL_UTMPX_FILE) # define WATCH_STRUCT_UTMP struct utmpx # undef ut_time ! # define ut_time ut_xtime # define WATCH_UTMP_FILE REAL_UTMPX_FILE # ifdef REAL_WTMPX_FILE # define WATCH_WTMP_FILE REAL_WTMPX_FILE --- 88,94 ---- #if !defined(WATCH_STRUCT_UTMP) && defined(HAVE_STRUCT_UTMPX) && defined(REAL_UTMPX_FILE) # define WATCH_STRUCT_UTMP struct utmpx # undef ut_time ! # define ut_time ut_tv.tv_sec /* kevins */ # define WATCH_UTMP_FILE REAL_UTMPX_FILE # ifdef REAL_WTMPX_FILE # define WATCH_WTMP_FILE REAL_WTMPX_FILE Kevin Sullivan writes: > > I had the same problem however, I changed line Src/watch.c > from: > < # define ut_time ut_xtime > to: > > # define ut_time ut_tv.tv_sec > > Again.. I am sure there is a better way. This is just what I > did. > > -Kevin >