diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-05 18:48:33 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-01-08 21:10:14 (GMT) |
commit | 26fb50114f37366c5c72ec76a1c09bfb2f94d19c (patch) | |
tree | 57784a87f5d6203021b0da3f1fa42d74b99831f8 /Source/cmStandardIncludes.h | |
parent | 7ecbade8877522d9d565bcb2216f71426873f564 (diff) | |
download | CMake-26fb50114f37366c5c72ec76a1c09bfb2f94d19c.zip CMake-26fb50114f37366c5c72ec76a1c09bfb2f94d19c.tar.gz CMake-26fb50114f37366c5c72ec76a1c09bfb2f94d19c.tar.bz2 |
Drop SGI as a CMake host compiler.
It has not been tested since commit v3.1.0-rc1~584^2 (Utilities/Release: Drop
IRIX binary generation on ferrari, 2014-04-30).
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 43 |
1 files changed, 1 insertions, 42 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index e4f5760..692e94b 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -37,28 +37,6 @@ // Provide fixed-size integer types. #include <cmIML/INT.h> -#include <stdarg.h> // Work-around for SGI MIPSpro 7.4.2m header bug - -// This is a hack to prevent warnings about these functions being -// declared but not referenced. -#if defined(__sgi) && !defined(__GNUC__) -# pragma set woff 3970 /* conversion from pointer to same-sized */ -# include <sys/termios.h> -class cmStandardIncludesHack -{ -public: - enum - { - Ref1 = sizeof(cfgetospeed(0)), - Ref2 = sizeof(cfgetispeed(0)), - Ref3 = sizeof(tcgetattr(0, 0)), - Ref4 = sizeof(tcsetattr(0, 0, 0)), - Ref5 = sizeof(cfsetospeed(0,0)), - Ref6 = sizeof(cfsetispeed(0,0)) - }; -}; -#endif - // Include stream compatibility layer from KWSys. // This is needed to work with large file support // on some platforms whose stream operators do not @@ -146,17 +124,6 @@ extern int putenv (char *__string) __THROW; #define for if(false) {} else for #endif -// check for the 720 compiler on the SGI -// which has some strange properties that I don't think are worth -// checking for in a general way in configure -#if defined(__sgi) && !defined(__GNUC__) -# if (_COMPILER_VERSION >= 730) -# define CM_SGI_CC_730 -# elif (_COMPILER_VERSION >= 720) -# define CM_HAS_STD_BUT_NOT_FOR_IOSTREAM -# endif -#endif - #ifdef __DECCXX_VER # if __DECCXX_VER <= 60390008 # define CM_HAS_STD_BUT_NOT_FOR_IOSTREAM @@ -208,11 +175,7 @@ inline bool operator!=(std::string const& a, const char* b) inline bool operator==(std::string const& a, const char* b) { return (a==std::string(b)); } -# endif // end CM_SGI_CC_720 - -#if defined(__sgi) && !defined(__GNUC__) -# pragma set woff 1375 /* base class destructor not virtual */ -#endif +# endif // end CM_HAS_STD_BUT_NOT_FOR_IOSTREAM // use this class to shrink the size of symbols in .o files // std::string is really basic_string<....lots of stuff....> @@ -327,10 +290,6 @@ public: typedef Superclass::const_iterator const_iterator; }; -#if defined(__sgi) && !defined(__GNUC__) -# pragma reset woff 1375 /* base class destructor not virtual */ -#endif - // All subclasses of cmCommand or cmCTestGenericHandler should // invoke this macro. #define cmTypeMacro(thisClass,superclass) \ |