home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / gnu / utils / bug / 2213 next >
Encoding:
Text File  |  1992-12-12  |  1.2 KB  |  37 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!cis.ohio-state.edu!cs.hut.fi!jkp
  3. From: jkp@cs.hut.fi (Jyrki Kuoppala)
  4. Subject: shellutils 1.8, sony newsos 3.0, m68k sony news machines
  5. Message-ID: <199212111821.AA00451@lusmu.cs.hut.fi>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: Helsinki University of Technology, Finland.
  8. Distribution: gnu
  9. Date: Fri, 11 Dec 1992 22:21:05 GMT
  10. Approved: bug-gnu-utils@prep.ai.mit.edu
  11. Lines: 24
  12.  
  13. the following fix is required, otherwise <time.h> will be included
  14. twice and break things.
  15.  
  16. diff -cr shellutils-1.8.orig/lib/getdate.y shellutils-1.8/lib/getdate.y
  17. *** shellutils-1.8.orig/lib/getdate.y    Wed Sep 30 23:39:04 1992
  18. --- shellutils-1.8/lib/getdate.y    Fri Dec 11 20:20:10 1992
  19. ***************
  20. *** 36,42 ****
  21.      tricks are need, but defaults to using the gettimeofday system call.
  22.      Include <sys/time.h> if that will be used.  */
  23.   
  24. ! #if !defined (USG) && !defined (sgi) && !defined (__386BSD__)
  25.   #include <sys/time.h>
  26.   #endif
  27.   
  28. --- 36,42 ----
  29.      tricks are need, but defaults to using the gettimeofday system call.
  30.      Include <sys/time.h> if that will be used.  */
  31.   
  32. ! #if !defined (USG) && !defined (sgi) && !defined (__386BSD__) && !defined (sony_news)
  33.   #include <sys/time.h>
  34.   #endif
  35.   
  36.  
  37.