home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.utils.bug
- Path: sparky!uunet!cis.ohio-state.edu!cs.hut.fi!jkp
- From: jkp@cs.hut.fi (Jyrki Kuoppala)
- Subject: shellutils 1.8, sony newsos 3.0, m68k sony news machines
- Message-ID: <199212111821.AA00451@lusmu.cs.hut.fi>
- Sender: gnulists@ai.mit.edu
- Organization: Helsinki University of Technology, Finland.
- Distribution: gnu
- Date: Fri, 11 Dec 1992 22:21:05 GMT
- Approved: bug-gnu-utils@prep.ai.mit.edu
- Lines: 24
-
- the following fix is required, otherwise <time.h> will be included
- twice and break things.
-
- diff -cr shellutils-1.8.orig/lib/getdate.y shellutils-1.8/lib/getdate.y
- *** shellutils-1.8.orig/lib/getdate.y Wed Sep 30 23:39:04 1992
- --- shellutils-1.8/lib/getdate.y Fri Dec 11 20:20:10 1992
- ***************
- *** 36,42 ****
- tricks are need, but defaults to using the gettimeofday system call.
- Include <sys/time.h> if that will be used. */
-
- ! #if !defined (USG) && !defined (sgi) && !defined (__386BSD__)
- #include <sys/time.h>
- #endif
-
- --- 36,42 ----
- tricks are need, but defaults to using the gettimeofday system call.
- Include <sys/time.h> if that will be used. */
-
- ! #if !defined (USG) && !defined (sgi) && !defined (__386BSD__) && !defined (sony_news)
- #include <sys/time.h>
- #endif
-
-
-