blob: 34af56ba65e3280f2145bc124bafdd237c4e7295 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
/*
* Generated by /cygdrive/c/hoffman/My Builds/CMake262/bootstrap
* Version: $Revision$
*
* Source directory: /cygdrive/c/hoffman/My Builds/CMake262
* Binary directory: /cygdrive/c/hoffman/My Builds/CMake262-cygwin/Bootstrap.cmk
*
* C compiler: cc
* C flags:
*
* C++ compiler: g++
* C++ flags:
*
* Make: make
*
* Sources:
* cmake cmakemain cmakewizard cmCommandArgumentLexer cmCommandArgumentParser cmCommandArgumentParserHelper cmDepends cmDependsC cmDocumentationFormatter cmDocumentationFormatterText cmPolicies cmProperty cmPropertyMap cmPropertyDefinition cmPropertyDefinitionMap cmMakeDepend cmMakefile cmExportFileGenerator cmExportInstallFileGenerator cmInstallDirectoryGenerator cmGeneratedFileStream cmGlobalGenerator cmLocalGenerator cmInstallGenerator cmInstallExportGenerator cmInstallFilesGenerator cmInstallScriptGenerator cmInstallTargetGenerator cmSourceFile cmSourceFileLocation cmSystemTools cmVersion cmFileTimeComparison cmGlobalUnixMakefileGenerator3 cmLocalUnixMakefileGenerator3 cmMakefileExecutableTargetGenerator cmMakefileLibraryTargetGenerator cmMakefileTargetGenerator cmMakefileUtilityTargetGenerator cmBootstrapCommands cmCommands cmTarget cmTest cmCustomCommand cmDocumentVariables cmCacheManager cmListFileCache cmComputeLinkDepends cmComputeLinkInformation cmOrderDirectories cmComputeTargetDepends cmComputeComponentGraph cmExprLexer cmExprParser cmExprParserHelper cmListFileLexer
* kwSys Sources:
* Directory Glob RegularExpression SystemTools ProcessUNIX String System
*/
/*=========================================================================
Program: KWSys - Kitware System Library
Module: $RCSfile$
Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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 cmsys_Configure_h
#define cmsys_Configure_h
/* If we are building a kwsys .c or .cxx file, let it use the kwsys
namespace. When not building a kwsys source file these macros are
temporarily defined inside the headers that use them. */
#if defined(KWSYS_NAMESPACE)
# define kwsys_ns(x) cmsys##x
# define kwsysEXPORT cmsys_EXPORT
#endif
/* If we are building a kwsys .c or .cxx file, suppress the Microsoft
deprecation warnings. */
#if defined(KWSYS_NAMESPACE)
# ifndef _CRT_NONSTDC_NO_DEPRECATE
# define _CRT_NONSTDC_NO_DEPRECATE
# endif
# ifndef _CRT_SECURE_NO_DEPRECATE
# define _CRT_SECURE_NO_DEPRECATE
# endif
# ifndef _SCL_SECURE_NO_DEPRECATE
# define _SCL_SECURE_NO_DEPRECATE
# endif
#endif
/* Whether Large File Support is requested. */
#define cmsys_LFS_REQUESTED 0
/* Whether Large File Support is available. */
#if cmsys_LFS_REQUESTED
# define cmsys_LFS_AVAILABLE 0
#endif
/* Setup Large File Support if requested. */
#if cmsys_LFS_REQUESTED
/* Since LFS is requested this header must be included before system
headers whether or not LFS is available. */
# if 0 && (defined(_SYS_TYPES_H) || defined(_SYS_TYPES_INCLUDED))
# error "cmsys/Configure.h must be included before sys/types.h"
# endif
/* Enable the large file API if it is available. */
# if cmsys_LFS_AVAILABLE && \
!defined(cmsys_LFS_NO_DEFINES)
# if !defined(_LARGEFILE_SOURCE) && \
!defined(cmsys_LFS_NO_DEFINE_LARGEFILE_SOURCE)
# define _LARGEFILE_SOURCE
# endif
# if !defined(_LARGEFILE64_SOURCE) && \
!defined(cmsys_LFS_NO_DEFINE_LARGEFILE64_SOURCE)
# define _LARGEFILE64_SOURCE
# endif
# if !defined(_LARGE_FILES) && \
!defined(cmsys_LFS_NO_DEFINE_LARGE_FILES)
# define _LARGE_FILES
# endif
# if !defined(_FILE_OFFSET_BITS) && \
!defined(cmsys_LFS_NO_DEFINE_FILE_OFFSET_BITS)
# define _FILE_OFFSET_BITS 64
# endif
# if 0 && (defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS < 64)
# error "_FILE_OFFSET_BITS must be defined to at least 64"
# endif
# endif
#endif
/* Setup the export macro. */
#if defined(_WIN32) && 0
# if defined(cmsys_EXPORTS)
# define cmsys_EXPORT __declspec(dllexport)
# else
# define cmsys_EXPORT __declspec(dllimport)
# endif
#else
# define cmsys_EXPORT
#endif
/* Enable warnings that are off by default but are useful. */
#if !defined(cmsys_NO_WARNING_ENABLE)
# if defined(_MSC_VER)
# pragma warning ( default : 4263 ) /* no override, call convention differs */
# endif
#endif
/* Disable warnings that are on by default but occur in valid code. */
#if !defined(cmsys_NO_WARNING_DISABLE)
# if defined(_MSC_VER)
# pragma warning (disable: 4097) /* typedef is synonym for class */
# pragma warning (disable: 4127) /* conditional expression is constant */
# pragma warning (disable: 4244) /* possible loss in conversion */
# pragma warning (disable: 4251) /* missing DLL-interface */
# pragma warning (disable: 4305) /* truncation from type1 to type2 */
# pragma warning (disable: 4309) /* truncation of constant value */
# pragma warning (disable: 4514) /* unreferenced inline function */
# pragma warning (disable: 4706) /* assignment in conditional expression */
# pragma warning (disable: 4710) /* function not inlined */
# pragma warning (disable: 4786) /* identifier truncated in debug info */
# endif
#endif
/* MSVC 6.0 in release mode will warn about code it produces with its
optimizer. Disable the warnings specifically for this
configuration. Real warnings will be revealed by a debug build or
by other compilers. */
#if !defined(cmsys_NO_WARNING_DISABLE_BOGUS)
# if defined(_MSC_VER) && (_MSC_VER < 1300) && defined(NDEBUG)
# pragma warning ( disable : 4701 ) /* Variable may be used uninitialized. */
# pragma warning ( disable : 4702 ) /* Unreachable code. */
# endif
#endif
#endif
|