From 4e74ed86d0f4f5ef95d6aaa40d6be679bf707d9a Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 31 Mar 1998 17:27:11 +0000 Subject: [PATCH] 1998-03-31 Philippe De Muyter * vfs.h: compilation fix for m68k-motorola-sysv --- vfs/ChangeLog | 4 ++++ vfs/vfs.h | 10 +++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/vfs/ChangeLog b/vfs/ChangeLog index 6aa42975c..55516abd5 100644 --- a/vfs/ChangeLog +++ b/vfs/ChangeLog @@ -1,3 +1,7 @@ +1998-03-31 Philippe De Muyter + + * vfs.h: compilation fix for m68k-motorola-sysv + Wed Mar 25 19:01:48 1998 Norbert Warmuth * extfs/hp48: Added a usage summary diff --git a/vfs/vfs.h b/vfs/vfs.h index b3ecef368..a15bb5d5f 100644 --- a/vfs/vfs.h +++ b/vfs/vfs.h @@ -4,7 +4,15 @@ #if !defined(SCO_FLAVOR) || !defined(_SYS_SELECT_H) # include /* alex: this redefines struct timeval */ #endif /* SCO_FLAVOR */ -#include + +#ifdef HAVE_UTIME_H +# include +#else +struct utimbuf { + time_t actime; + time_t modtime; +}; +#endif #ifdef USE_VFS