diff options
author | Mike DePaulo <mikedep333@users.noreply.github.com> | 2015-04-16 18:30:39 -0400 |
---|---|---|
committer | Mike DePaulo <mikedep333@users.noreply.github.com> | 2015-04-16 18:30:39 -0400 |
commit | 8b1577599271da1ac50ebb38d7297769f6b1139c (patch) | |
tree | 7ece6e6befb03e6818f65687209df98cdb17307a /nx-X11/config/imake | |
parent | 0d9217127f3e81fa19037f4923949b10443c5f1d (diff) | |
parent | ac9fbaabd6bdbca6dd1d94fa385aea41fdebf2c1 (diff) | |
download | nx-libs-8b1577599271da1ac50ebb38d7297769f6b1139c.tar.gz nx-libs-8b1577599271da1ac50ebb38d7297769f6b1139c.tar.bz2 nx-libs-8b1577599271da1ac50ebb38d7297769f6b1139c.zip |
Merge pull request #12 from sunweaver/pr/arch-cleanup.CRAY
arch cleanup (CRAY/WORD64) + X.Org CVE-2013-7439
Diffstat (limited to 'nx-X11/config/imake')
-rw-r--r-- | nx-X11/config/imake/imakemdep.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/nx-X11/config/imake/imakemdep.h b/nx-X11/config/imake/imakemdep.h index bacc3af54..469454114 100644 --- a/nx-X11/config/imake/imakemdep.h +++ b/nx-X11/config/imake/imakemdep.h @@ -112,9 +112,6 @@ in this Software without prior written authorization from The Open Group. #endif #endif #endif -#ifdef _CRAY -#define imake_ccflags "-DSYSV -DUSG" -#endif #if defined(_IBMR2) || defined(aix) #define imake_ccflags "-Daix -DSYSV" @@ -225,7 +222,7 @@ in this Software without prior written authorization from The Open Group. * descriptor onto another, define such a mechanism here (if you don't * already fall under the existing category(ies). */ -#if defined(SYSV) && !defined(_CRAY) && !defined(Mips) && !defined(_SEQUENT_) && !defined(__SCO__) +#if defined(SYSV) && !defined(Mips) && !defined(_SEQUENT_) && !defined(__SCO__) #define dup2(fd1,fd2) ((fd1 == fd2) ? fd1 : (close(fd2), \ fcntl(fd1, F_DUPFD, fd2))) #endif @@ -309,9 +306,6 @@ in this Software without prior written authorization from The Open Group. #ifdef __sxg__ #define DEFAULT_CPP "/usr/lib/cpp" #endif -#ifdef _CRAY -#define DEFAULT_CPP "/lib/pcpp" -#endif #if defined(__386BSD__) #define DEFAULT_CPP "/usr/libexec/cpp" #endif @@ -497,9 +491,6 @@ char *cpp_argv[ARGUMENTS] = { "-Duniosu", #endif #endif /* luna */ -#ifdef _CRAY /* Cray */ - "-Ucray", -#endif #ifdef Mips "-DMips", /* Define and use Mips for Mips Co. OS/mach. */ # if defined(SYSTYPE_BSD) || defined(BSD) || defined(BSD43) @@ -1098,15 +1089,6 @@ struct symtab predefs[] = { #ifdef VMS {"VMS", "1"}, #endif -#ifdef cray - {"cray", "1"}, -#endif -#ifdef CRAY - {"CRAY", "1"}, -#endif -#ifdef _CRAY - {"_CRAY", "1"}, -#endif #ifdef att {"att", "1"}, #endif |