diff options
author | Xin LI <delphij@FreeBSD.org> | 2019-11-24 23:46:29 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2019-11-24 23:46:29 +0000 |
commit | 987ba809b8add6260181a8c036ec3c017948ff56 (patch) | |
tree | 2b55c0f784f511cf1deffd7800cef1f16aab1c55 /expat_config.h.in | |
parent | 77c85705a616126682be274fd54e9c4308083501 (diff) | |
download | src-987ba809b8add6260181a8c036ec3c017948ff56.tar.gz src-987ba809b8add6260181a8c036ec3c017948ff56.zip |
Vendor import of expat 2.2.9vendor/expat
Notes
Notes:
svn path=/vendor/expat/dist/; revision=355071
Diffstat (limited to 'expat_config.h.in')
-rw-r--r-- | expat_config.h.in | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/expat_config.h.in b/expat_config.h.in index 63c0d03eb83d..59207b42e41d 100644 --- a/expat_config.h.in +++ b/expat_config.h.in @@ -1,6 +1,9 @@ /* expat_config.h.in. Generated from configure.ac by autoheader. */ -/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + +/* 1234 = LILENDIAN, 4321 = BIGENDIAN */ #undef BYTEORDER /* Define to 1 if you have the `arc4random' function. */ @@ -9,9 +12,6 @@ /* Define to 1 if you have the `arc4random_buf' function. */ #undef HAVE_ARC4RANDOM_BUF -/* Define to 1 if you have the `bcopy' function. */ -#undef HAVE_BCOPY - /* Define to 1 if you have the <dlfcn.h> header file. */ #undef HAVE_DLFCN_H @@ -30,9 +30,6 @@ /* Define to 1 if you have the `bsd' library (-lbsd). */ #undef HAVE_LIBBSD -/* Define to 1 if you have the `memmove' function. */ -#undef HAVE_MEMMOVE - /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H @@ -96,8 +93,21 @@ /* Version number of package */ #undef VERSION -/* whether byteorder is bigendian */ -#undef WORDS_BIGENDIAN +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +# undef WORDS_BIGENDIAN +# endif +#endif + +/* Define to allow retrieving the byte offsets for attribute names and values. + */ +#undef XML_ATTR_INFO /* Define to specify how much context to retain around the current parse point. */ |