70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
/*=========================================================================
|
|
|
|
Program: KWSys - Kitware System Library
|
|
Module: $RCSfile$
|
|
Language: C++
|
|
Date: $Date$
|
|
Version: $Revision$
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
See http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
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.
|
|
|
|
=========================================================================*/
|
|
#ifndef @KWSYS_NAMESPACE@_Configure_hxx
|
|
#define @KWSYS_NAMESPACE@_Configure_hxx
|
|
|
|
/* Defined if kwsys namespace is "kwsys". */
|
|
#if @KWSYS_NAME_IS_KWSYS@
|
|
# define @KWSYS_NAMESPACE@_NAME_IS_KWSYS
|
|
#endif
|
|
|
|
/* Defined if no ANSI C++ stream headers are present. */
|
|
#if @KWSYS_NO_ANSI_STREAM_HEADERS@
|
|
# define @KWSYS_NAMESPACE@_NO_ANSI_STREAM_HEADERS
|
|
#endif
|
|
|
|
/* Defined if no ANSI C++ <sstream> header is present. */
|
|
#if @KWSYS_NO_ANSI_STRING_STREAM@
|
|
# define @KWSYS_NAMESPACE@_NO_ANSI_STRING_STREAM
|
|
#endif
|
|
|
|
/* Defined if no std namespace is present. */
|
|
#if @KWSYS_NO_STD_NAMESPACE@
|
|
# define @KWSYS_NAMESPACE@_NO_STD_NAMESPACE
|
|
#endif
|
|
|
|
/* Defined if std namespace is the GCC hack. */
|
|
#if defined(__GNUC__) && (__GNUC__ < 3)
|
|
# define @KWSYS_NAMESPACE@_FAKE_STD_NAMESPACE
|
|
#endif
|
|
|
|
/* Define the std namespace macro. */
|
|
#if defined(@KWSYS_NAMESPACE@_NO_STD_NAMESPACE)
|
|
# define @KWSYS_NAMESPACE@_std
|
|
#else
|
|
# define @KWSYS_NAMESPACE@_std std
|
|
#endif
|
|
|
|
/* If building a C++ file in kwsys itself, give the source file
|
|
access to the macros without a configured namespace. */
|
|
#if defined(KWSYS_NAMESPACE)
|
|
# if !defined(@KWSYS_NAMESPACE@_NAME_IS_KWSYS)
|
|
# define kwsys_std @KWSYS_NAMESPACE@_std
|
|
# endif
|
|
# if defined(@KWSYS_NAMESPACE@_NO_STD_NAMESPACE)
|
|
# define KWSYS_NO_STD_NAMESPACE
|
|
# endif
|
|
# if defined(@KWSYS_NAMESPACE@_NO_ANSI_STREAM_HEADERS)
|
|
# define KWSYS_NO_ANSI_STREAM_HEADERS
|
|
# endif
|
|
# if defined(@KWSYS_NAMESPACE@_NO_ANSI_STRING_STREAM)
|
|
# define KWSYS_NO_ANSI_STRING_STREAM
|
|
# endif
|
|
#endif
|
|
|
|
#endif
|