1/* expat_config.h.cmake. Based upon generated expat_config.h.in. */ 2 3#ifndef EXPAT_CONFIG_H 4#define EXPAT_CONFIG_H 1 5 6/* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ 7#cmakedefine BYTEORDER @BYTEORDER@ 8 9/* Define to 1 if you have the `arc4random' function. */ 10#cmakedefine HAVE_ARC4RANDOM 11 12/* Define to 1 if you have the `arc4random_buf' function. */ 13#cmakedefine HAVE_ARC4RANDOM_BUF 14 15/* Define to 1 if you have the <dlfcn.h> header file. */ 16#cmakedefine HAVE_DLFCN_H 17 18/* Define to 1 if you have the <fcntl.h> header file. */ 19#cmakedefine HAVE_FCNTL_H 20 21/* Define to 1 if you have the `getpagesize' function. */ 22#cmakedefine HAVE_GETPAGESIZE 23 24/* Define to 1 if you have the `getrandom' function. */ 25#cmakedefine HAVE_GETRANDOM 26 27/* Define to 1 if you have the <inttypes.h> header file. */ 28#cmakedefine HAVE_INTTYPES_H 29 30/* Define to 1 if you have the `bsd' library (-lbsd). */ 31#cmakedefine HAVE_LIBBSD 32 33/* Define to 1 if you have the <memory.h> header file. */ 34#cmakedefine HAVE_MEMORY_H 35 36/* Define to 1 if you have a working `mmap' system call. */ 37#cmakedefine HAVE_MMAP 38 39/* Define to 1 if you have the <stdint.h> header file. */ 40#cmakedefine HAVE_STDINT_H 41 42/* Define to 1 if you have the <stdlib.h> header file. */ 43#cmakedefine HAVE_STDLIB_H 44 45/* Define to 1 if you have the <strings.h> header file. */ 46#cmakedefine HAVE_STRINGS_H 47 48/* Define to 1 if you have the <string.h> header file. */ 49#cmakedefine HAVE_STRING_H 50 51/* Define to 1 if you have `syscall' and `SYS_getrandom'. */ 52#cmakedefine HAVE_SYSCALL_GETRANDOM 53 54/* Define to 1 if you have the <sys/stat.h> header file. */ 55#cmakedefine HAVE_SYS_STAT_H 56 57/* Define to 1 if you have the <sys/types.h> header file. */ 58#cmakedefine HAVE_SYS_TYPES_H 59 60/* Define to 1 if you have the <unistd.h> header file. */ 61#cmakedefine HAVE_UNISTD_H 62 63/* Name of package */ 64#define PACKAGE "@PACKAGE_NAME@" 65 66/* Define to the address where bug reports for this package should be sent. */ 67#cmakedefine PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@" 68 69/* Define to the full name of this package. */ 70#cmakedefine PACKAGE_NAME "@PACKAGE_NAME@" 71 72/* Define to the full name and version of this package. */ 73#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@" 74 75/* Define to the one symbol short name of this package. */ 76#cmakedefine PACKAGE_TARNAME "@PACKAGE_TARNAME@" 77 78/* Define to the home page for this package. */ 79#define PACKAGE_URL "" 80 81/* Define to the version of this package. */ 82#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@" 83 84/* Define to 1 if you have the ANSI C header files. */ 85#ifndef STDC_HEADERS 86#cmakedefine STDC_HEADERS 87#endif 88 89/* whether byteorder is bigendian */ 90#cmakedefine WORDS_BIGENDIAN 91 92/* Define to allow retrieving the byte offsets for attribute names and values. 93 */ 94#cmakedefine XML_ATTR_INFO 95 96/* Define to specify how much context to retain around the current parse 97 point, 0 to disable. */ 98#define XML_CONTEXT_BYTES @XML_CONTEXT_BYTES@ 99 100#if ! defined(_WIN32) 101/* Define to include code reading entropy from `/dev/urandom'. */ 102#cmakedefine XML_DEV_URANDOM 103#endif 104 105/* Define to make parameter entity parsing functionality available. */ 106#cmakedefine XML_DTD 107 108/* Define as 1/0 to enable/disable support for general entities. */ 109#define XML_GE @XML_GE@ 110 111/* Define to make XML Namespaces functionality available. */ 112#cmakedefine XML_NS 113 114/* Define to __FUNCTION__ or "" if `__func__' does not conform to ANSI C. */ 115#ifdef _MSC_VER 116# define __func__ __FUNCTION__ 117#endif 118 119/* Define to `long' if <sys/types.h> does not define. */ 120#cmakedefine off_t @off_t@ 121 122#endif // ndef EXPAT_CONFIG_H 123