remove OSF1 support

This commit is contained in:
chase
2018-05-24 14:50:03 -05:00
committed by Jon Trulson
parent 3c1736f077
commit 164e695cd0
325 changed files with 290 additions and 9980 deletions

View File

@@ -106,7 +106,7 @@
#ifdef __aix
#endif
#if defined(sun) || defined(__osf__)
#if defined(sun)
#include <sys/types.h>
#include <sys/statvfs.h>
#endif
@@ -270,17 +270,6 @@ static void getFSType(const String path,
strncpy(fsType,"",MAXLINELENGTH);
#endif /* __hpux */
#ifdef __osf__
#define GETFSTYPE
struct statvfs buf;
strncpy(platform,"decunix",MAXLINELENGTH);
if (statvfs(path, &buf) == 0)
strncpy(fsType,buf.f_basetype,MAXLINELENGTH);
else
strncpy(fsType,"",MAXLINELENGTH);
#endif /* DEC Unix */
#ifndef GETFSTYPE
strncpy(platform,"unknown",MAXLINELENGTH);
strncpy(fsType, "",MAXLINELENGTH);