diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-05 18:53:30 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-01-08 21:10:15 (GMT) |
commit | 837a8a6312d543f1c46efa532f7d5b5dfb334bc9 (patch) | |
tree | 413b0a03c7e7c7c658764c25c981d284d6b20237 /Source/cmStandardIncludes.h | |
parent | 4030ddfda8c715601e60e8f0322554f464497807 (diff) | |
download | CMake-837a8a6312d543f1c46efa532f7d5b5dfb334bc9.zip CMake-837a8a6312d543f1c46efa532f7d5b5dfb334bc9.tar.gz CMake-837a8a6312d543f1c46efa532f7d5b5dfb334bc9.tar.bz2 |
cmStandardIncludes: Drop Comeau-related workaround.
The compiler is not tested on the dashboard, and on Windows there
are more-natural compilers to use to build CMake.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index d158b09..981c75e 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -88,19 +88,6 @@ #include <stdio.h> #include <stdlib.h> -#if !defined(_WIN32) && defined(__COMO__) -// Hack for como strict mode to avoid defining _SVID_SOURCE or _BSD_SOURCE. -extern "C" -{ -extern FILE *popen (__const char *__command, __const char *__modes) __THROW; -extern int pclose (FILE *__stream) __THROW; -extern char *realpath (__const char *__restrict __name, - char *__restrict __resolved) __THROW; -extern char *strdup (__const char *__s) __THROW; -extern int putenv (char *__string) __THROW; -} -#endif - // if std:: is not supported, then just #define it away #ifdef CMAKE_NO_STD_NAMESPACE #define std |