This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Ada] Fix problem with utime.h on vxworks


2001-12-04  Douglass B. Rupp <rupp@gnat.com>

	* adaint.c: Do not use utime.h on vxworks.

*** adaint.c	2001/09/27 11:45:57	1.3
--- adaint.c	2001/09/28 13:24:20	1.4
***************
*** 935,941 ****
       char *name;
       time_t time_stamp;
  {
! #if defined (__EMX__) || defined (MSDOS) || defined (_WIN32)
  #elif defined (VMS)
    struct FAB fab;
    struct NAM nam;
--- 935,942 ----
       char *name;
       time_t time_stamp;
  {
! #if defined (__EMX__) || defined (MSDOS) || defined (_WIN32) \
!     || defined (__vxworks)
  #elif defined (VMS)
    struct FAB fab;
    struct NAM nam;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]