2001-01-11 22:47:38 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-01-11 22:47:38 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-01-11 22:47:38 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
/**
|
|
|
|
* Include header files as a function of the build process, compiler,
|
|
|
|
* and operating system.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifndef cmStandardIncludes_h
|
|
|
|
#define cmStandardIncludes_h
|
|
|
|
|
2003-02-14 05:57:05 +03:00
|
|
|
#define CMAKE_TO_STRING(x) CMAKE_TO_STRING0(x)
|
|
|
|
#define CMAKE_TO_STRING0(x) #x
|
|
|
|
|
2003-03-26 18:45:23 +03:00
|
|
|
// include configure generated header to define CMAKE_NO_ANSI_STREAM_HEADERS,
|
|
|
|
// CMAKE_NO_STD_NAMESPACE, and other macros.
|
2001-02-23 03:24:43 +03:00
|
|
|
#include "cmConfigure.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2003-07-08 07:20:30 +04:00
|
|
|
#define CMake_VERSION \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MAJOR) "." \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MINOR)
|
|
|
|
|
|
|
|
#define CMake_VERSION_FULL \
|
2003-02-14 05:57:05 +03:00
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MAJOR) "." \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_MINOR) "." \
|
|
|
|
CMAKE_TO_STRING(CMake_VERSION_PATCH)
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning ( disable : 4786 )
|
2001-07-06 17:22:41 +04:00
|
|
|
#pragma warning ( disable : 4503 )
|
2001-08-08 19:54:46 +04:00
|
|
|
#define CMAKE_NO_ANSI_FOR_SCOPE
|
2001-01-05 19:41:20 +03:00
|
|
|
#endif
|
|
|
|
|
2001-03-21 23:52:29 +03:00
|
|
|
#ifdef __ICL
|
|
|
|
#pragma warning ( disable : 985 )
|
|
|
|
#endif
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifndef CMAKE_NO_ANSI_STREAM_HEADERS
|
2002-06-19 23:21:49 +04:00
|
|
|
# include <fstream>
|
|
|
|
# include <iostream>
|
2001-01-05 19:41:20 +03:00
|
|
|
#else
|
2002-06-19 23:21:49 +04:00
|
|
|
# include <fstream.h>
|
|
|
|
# include <iostream.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
|
|
|
# include <sstream>
|
|
|
|
#elif !defined(CMAKE_NO_ANSI_STREAM_HEADERS)
|
|
|
|
# include <strstream>
|
|
|
|
#else
|
|
|
|
# include <strstream.h>
|
2001-01-05 19:41:20 +03:00
|
|
|
#endif
|
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// we must have stl with the standard include style
|
2001-01-05 19:41:20 +03:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <functional>
|
|
|
|
#include <map>
|
2001-02-13 03:49:52 +03:00
|
|
|
#include <list>
|
2001-04-24 00:40:29 +04:00
|
|
|
#include <set>
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// include the "c" string header
|
2001-06-22 20:18:10 +04:00
|
|
|
#include <string.h>
|
2003-08-08 19:19:17 +04:00
|
|
|
#include <stdio.h>
|
2001-06-22 20:18:10 +04:00
|
|
|
|
2002-10-03 01:31:59 +04:00
|
|
|
#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
|
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// if std:: is not supported, then just #define it away
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifdef CMAKE_NO_STD_NAMESPACE
|
|
|
|
#define std
|
|
|
|
#endif
|
|
|
|
|
2001-08-08 19:54:46 +04:00
|
|
|
// if the compiler does not support ansi for scoping of vars use a
|
|
|
|
// #define hack
|
|
|
|
#ifdef CMAKE_NO_ANSI_FOR_SCOPE
|
|
|
|
#define for if(false) {} else for
|
|
|
|
#endif
|
2001-01-05 19:41:20 +03:00
|
|
|
|
2001-08-07 23:49:57 +04:00
|
|
|
// 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)
|
2001-11-20 16:28:54 +03:00
|
|
|
# define CM_HAS_STD_BUT_NOT_FOR_IOSTREAM
|
2001-08-07 23:49:57 +04:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2001-11-20 16:28:54 +03:00
|
|
|
#ifdef __DECCXX_VER
|
2002-01-30 19:23:07 +03:00
|
|
|
# if __DECCXX_VER <= 60390008
|
2001-11-20 16:28:54 +03:00
|
|
|
# define CM_HAS_STD_BUT_NOT_FOR_IOSTREAM
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2004-01-27 17:05:01 +03:00
|
|
|
#if defined( _MSC_VER )
|
2004-01-26 23:03:09 +03:00
|
|
|
typedef unsigned short mode_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-11-20 16:28:54 +03:00
|
|
|
#ifdef CM_HAS_STD_BUT_NOT_FOR_IOSTREAM
|
|
|
|
// some compilers have std:: but not for the stream library,
|
2001-08-07 23:49:57 +04:00
|
|
|
// so we have to bring it into the std namespace by hand.
|
|
|
|
namespace std {
|
|
|
|
using ::ostream;
|
|
|
|
using ::istream;
|
|
|
|
using ::ios;
|
|
|
|
using ::cout;
|
|
|
|
using ::cerr;
|
|
|
|
using ::cin;
|
|
|
|
using ::ifstream;
|
|
|
|
using ::ofstream;
|
2002-06-19 23:21:49 +04:00
|
|
|
|
|
|
|
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
2002-06-21 18:31:37 +04:00
|
|
|
using ::ostringstream;
|
2002-10-11 16:36:20 +04:00
|
|
|
using ::istringstream;
|
2002-06-19 23:21:49 +04:00
|
|
|
#else
|
2002-06-21 18:31:37 +04:00
|
|
|
using ::ostrstream;
|
2002-10-11 16:36:20 +04:00
|
|
|
using ::istrstream;
|
2002-06-19 23:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
2001-08-07 23:49:57 +04:00
|
|
|
using ::endl;
|
|
|
|
using ::ends;
|
|
|
|
using ::flush;
|
|
|
|
}
|
|
|
|
// The string class is missing these operators so add them
|
|
|
|
inline bool operator!=(std::string const& a, const char* b)
|
|
|
|
{ return !(a==std::string(b)); }
|
|
|
|
|
|
|
|
inline bool operator==(std::string const& a, const char* b)
|
|
|
|
{ return (a==std::string(b)); }
|
2001-08-08 19:54:46 +04:00
|
|
|
# endif // end CM_SGI_CC_720
|
2001-08-07 23:49:57 +04:00
|
|
|
|
2001-09-15 00:26:56 +04:00
|
|
|
// use this class to shrink the size of symbols in .o files
|
2001-08-24 00:00:46 +04:00
|
|
|
// std::string is really basic_string<....lots of stuff....>
|
|
|
|
// when combined with a map or set, the symbols can be > 2000 chars!
|
2001-08-22 19:58:17 +04:00
|
|
|
struct cmStdString : public std::string
|
|
|
|
{
|
2001-11-01 02:56:19 +03:00
|
|
|
typedef std::string StdString;
|
|
|
|
typedef StdString::value_type value_type;
|
|
|
|
typedef StdString::pointer pointer;
|
|
|
|
typedef StdString::reference reference;
|
|
|
|
typedef StdString::const_reference const_reference;
|
|
|
|
typedef StdString::size_type size_type;
|
|
|
|
typedef StdString::difference_type difference_type;
|
|
|
|
typedef StdString::iterator iterator;
|
|
|
|
typedef StdString::const_iterator const_iterator;
|
|
|
|
typedef StdString::reverse_iterator reverse_iterator;
|
|
|
|
typedef StdString::const_reverse_iterator const_reverse_iterator;
|
|
|
|
|
|
|
|
cmStdString(): StdString() {}
|
|
|
|
cmStdString(const value_type* s): StdString(s) {}
|
|
|
|
cmStdString(const value_type* s, size_type n): StdString(s, n) {}
|
|
|
|
cmStdString(const StdString& s, size_type pos=0, size_type n=npos):
|
|
|
|
StdString(s, pos, n) {}
|
2001-08-22 19:58:17 +04:00
|
|
|
};
|
2002-06-19 23:21:49 +04:00
|
|
|
|
2002-10-10 18:43:59 +04:00
|
|
|
// Define cmOStringStream and cmIStringStream wrappers to hide
|
|
|
|
// differences between std::stringstream and the old strstream.
|
2002-06-19 23:21:49 +04:00
|
|
|
#if !defined(CMAKE_NO_ANSI_STRING_STREAM)
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmOStringStream: public std::ostringstream
|
2002-06-19 23:21:49 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream() {}
|
2002-06-19 23:21:49 +04:00
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream(const cmOStringStream&);
|
|
|
|
void operator=(const cmOStringStream&);
|
2002-06-19 23:21:49 +04:00
|
|
|
};
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmIStringStream: public std::istringstream
|
2002-10-10 16:11:05 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 17:41:58 +04:00
|
|
|
typedef std::istringstream Superclass;
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream() {}
|
|
|
|
cmIStringStream(const std::string& s): Superclass(s) {}
|
2002-10-10 16:11:05 +04:00
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream(const cmIStringStream&);
|
|
|
|
void operator=(const cmIStringStream&);
|
2002-10-10 16:11:05 +04:00
|
|
|
};
|
2002-06-19 23:21:49 +04:00
|
|
|
#else
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmOStrStreamCleanup
|
2002-06-19 23:21:49 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStrStreamCleanup(std::ostrstream& ostr): m_OStrStream(ostr) {}
|
|
|
|
~cmOStrStreamCleanup() { m_OStrStream.rdbuf()->freeze(0); }
|
|
|
|
static void IgnoreUnusedVariable(const cmOStrStreamCleanup&) {}
|
2002-06-19 23:21:49 +04:00
|
|
|
protected:
|
2002-10-10 18:43:59 +04:00
|
|
|
std::ostrstream& m_OStrStream;
|
2002-06-19 23:21:49 +04:00
|
|
|
};
|
|
|
|
|
2002-10-10 18:43:59 +04:00
|
|
|
class cmOStringStream: public std::ostrstream
|
2002-06-19 23:21:49 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-06-20 18:20:44 +04:00
|
|
|
typedef std::ostrstream Superclass;
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream() {}
|
2002-06-19 23:21:49 +04:00
|
|
|
std::string str()
|
|
|
|
{
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStrStreamCleanup cleanup(*this);
|
|
|
|
cmOStrStreamCleanup::IgnoreUnusedVariable(cleanup);
|
|
|
|
int pcount = this->pcount();
|
|
|
|
const char* ptr = this->Superclass::str();
|
|
|
|
return std::string(ptr?ptr:"", pcount);
|
2002-06-19 23:21:49 +04:00
|
|
|
}
|
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmOStringStream(const cmOStringStream&);
|
|
|
|
void operator=(const cmOStringStream&);
|
2002-06-19 23:21:49 +04:00
|
|
|
};
|
2002-10-10 18:43:59 +04:00
|
|
|
|
|
|
|
class cmIStringStream: private std::string, public std::istrstream
|
2002-10-10 16:11:05 +04:00
|
|
|
{
|
|
|
|
public:
|
2002-10-10 18:43:59 +04:00
|
|
|
typedef std::string StdString;
|
|
|
|
typedef std::istrstream IStrStream;
|
2002-11-08 23:46:08 +03:00
|
|
|
cmIStringStream(): StdString(), IStrStream(StdString::c_str()) {}
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream(const std::string& s):
|
2002-11-08 23:46:08 +03:00
|
|
|
StdString(s), IStrStream(StdString::c_str()) {}
|
2002-10-10 18:43:59 +04:00
|
|
|
std::string str() const { return *this; }
|
|
|
|
void str(const std::string& s)
|
|
|
|
{
|
|
|
|
// Very dangerous. If this throws, the object is hosed. When the
|
|
|
|
// destructor is later called, the program is hosed too.
|
|
|
|
this->~cmIStringStream();
|
|
|
|
new (this) cmIStringStream(s);
|
|
|
|
}
|
2002-10-10 16:11:05 +04:00
|
|
|
private:
|
2002-10-10 18:43:59 +04:00
|
|
|
cmIStringStream(const cmIStringStream&);
|
|
|
|
void operator=(const cmIStringStream&);
|
2002-10-10 16:11:05 +04:00
|
|
|
};
|
2002-06-19 23:21:49 +04:00
|
|
|
#endif
|
|
|
|
|
2004-04-29 22:51:08 +04:00
|
|
|
/* Poison this operator to avoid common mistakes. */
|
|
|
|
extern void operator << (std::ostream&, const cmOStringStream&);
|
|
|
|
|
2003-02-14 18:53:37 +03:00
|
|
|
/** Standard documentation entry for cmDocumentation's formatting. */
|
|
|
|
struct cmDocumentationEntry
|
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
const char* brief;
|
|
|
|
const char* full;
|
|
|
|
};
|
|
|
|
|
2001-01-05 19:41:20 +03:00
|
|
|
#endif
|