diff options
author | KWSys Upstream <kwrobot@kitware.com> | 2016-07-19 12:20:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-07-20 13:05:17 (GMT) |
commit | 9ef2b2b164a92081bf3466af9ac0d0c28acae79d (patch) | |
tree | 8164f55ec4a018107cc632ce6e45bf5d4b5035ad /Configure.hxx.in | |
parent | eb7b5087f79527242a25c449c6ae837dcb4768ff (diff) | |
download | CMake-9ef2b2b164a92081bf3466af9ac0d0c28acae79d.zip CMake-9ef2b2b164a92081bf3466af9ac0d0c28acae79d.tar.gz CMake-9ef2b2b164a92081bf3466af9ac0d0c28acae79d.tar.bz2 |
KWSys 2016-07-19 (9d1dbd95)
Code extracted from:
http://public.kitware.com/KWSys.git
at commit 9d1dbd95835638e4c0fcf74dc8020cd4cd3426c1 (master).
Upstream Shortlog
-----------------
Dāvis Mosāns (2):
d2cdfc6d FStream: Use common base for basic_ifstream and basic_ofstream
9d1dbd95 FStream: Add MinGW support
Diffstat (limited to 'Configure.hxx.in')
-rw-r--r-- | Configure.hxx.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Configure.hxx.in b/Configure.hxx.in index ff8e49d..4ce680d 100644 --- a/Configure.hxx.in +++ b/Configure.hxx.in @@ -17,6 +17,8 @@ /* Whether wstring is available. */ #define @KWSYS_NAMESPACE@_STL_HAS_WSTRING @KWSYS_STL_HAS_WSTRING@ +/* Whether <ext/stdio_filebuf.h> is available. */ +#define @KWSYS_NAMESPACE@_CXX_HAS_EXT_STDIO_FILEBUF_H @KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H@ /* If building a C++ file in kwsys itself, give the source file access to the macros without a configured namespace. */ @@ -24,8 +26,9 @@ # if !@KWSYS_NAMESPACE@_NAME_IS_KWSYS # define kwsys @KWSYS_NAMESPACE@ # endif -# define KWSYS_NAME_IS_KWSYS @KWSYS_NAMESPACE@_NAME_IS_KWSYS -# define KWSYS_STL_HAS_WSTRING @KWSYS_NAMESPACE@_STL_HAS_WSTRING +# define KWSYS_NAME_IS_KWSYS @KWSYS_NAMESPACE@_NAME_IS_KWSYS +# define KWSYS_STL_HAS_WSTRING @KWSYS_NAMESPACE@_STL_HAS_WSTRING +# define KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H @KWSYS_NAMESPACE@_CXX_HAS_EXT_STDIO_FILEBUF_H #endif #endif |