diff options
author | Brad King <brad.king@kitware.com> | 2019-11-11 15:42:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-11 15:42:32 (GMT) |
commit | b63a5c88a2089494e53f22f83db1925435161934 (patch) | |
tree | bf092a546d8a6b442589d10ad115572e528ca9da /Utilities/cmexpat/expat_config.h.cmake | |
parent | 512fabaa9d8a864ee212664df1bfddf112f5d79b (diff) | |
parent | 1712885b4f68093e4e30e5e9e979ac0611030608 (diff) | |
download | CMake-b63a5c88a2089494e53f22f83db1925435161934.zip CMake-b63a5c88a2089494e53f22f83db1925435161934.tar.gz CMake-b63a5c88a2089494e53f22f83db1925435161934.tar.bz2 |
Merge branch 'upstream-expat' into update-expat
* upstream-expat:
expat 2019-09-25 (a7bc26b6)
Diffstat (limited to 'Utilities/cmexpat/expat_config.h.cmake')
-rw-r--r-- | Utilities/cmexpat/expat_config.h.cmake | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/Utilities/cmexpat/expat_config.h.cmake b/Utilities/cmexpat/expat_config.h.cmake index 899d3a6..795b607 100644 --- a/Utilities/cmexpat/expat_config.h.cmake +++ b/Utilities/cmexpat/expat_config.h.cmake @@ -63,30 +63,28 @@ /* whether byteorder is bigendian */ #cmakedefine WORDS_BIGENDIAN +/* Define to allow retrieving the byte offsets for attribute names and values. + */ +#cmakedefine XML_ATTR_INFO + /* Define to specify how much context to retain around the current parse point. */ #define XML_CONTEXT_BYTES 1024 +#if ! defined(_WIN32) +/* Define to include code reading entropy from `/dev/urandom'. */ + #cmakedefine XML_DEV_URANDOM +#endif + /* Define to make parameter entity parsing functionality available. */ /* #undef XML_DTD */ /* Define to make XML Namespaces functionality available. */ /* #undef XML_NS */ -#if ! defined(_WIN32) -/* Define to extract entropy from /dev/urandom. */ -#cmakedefine XML_DEV_URANDOM -#endif - -/* Define to use UTF-16 chars (two bytes). */ -#cmakedefine XML_UNICODE - -/* Define to use wchar_t as UTF-16 char type instead of unsigned short. */ -#cmakedefine XML_UNICODE_WCHAR_T - /* Define to __FUNCTION__ or "" if `__func__' does not conform to ANSI C. */ #ifdef _MSC_VER -# define __func__ __FUNCTION__ +# define __func__ __FUNCTION__ #endif /* Define to `long' if <sys/types.h> does not define. */ |