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

@@ -55,11 +55,6 @@
#include <sys/param.h>
#include <limits.h>
#include <unistd.h> /* R_OK */
#ifdef __osf__
/* Suppress unaligned access message */
#include <sys/types.h>
#include <sys/sysinfo.h>
#endif /* __osf__ */
#include <X11/Intrinsic.h>
#include <X11/Shell.h>
@@ -209,28 +204,6 @@ void main(
char **newArgv;
int counter=0;
#ifdef __osf__
/* Code to suppress unaligned access message. */
unsigned long op;
int buffer[2];
unsigned long nbytes = 1;
char* arg = 0;
unsigned long flag = 0;
int ssi_status;
op = SSI_NVPAIRS;
buffer[0] = SSIN_UACPROC;
buffer[1] = 0x00000001;
#ifdef DEBUG_UAC
buffer[1] |= 0x00000004;
#endif
ssi_status = setsysinfo ( op, (caddr_t) buffer, nbytes, arg, flag );
#endif
XtSetLanguageProc(NULL, NULL, NULL);
startCommand = argv[0];
appName = strrchr(argv[0], '/');