blob: d9a9eaa062af7945de4717e19944f56034f5cc9a [file] [log] [blame]
Haibo Huangb16e0172018-07-02 14:40:07 -07001Index: expat/expat_config.h
2===================================================================
3--- expat.orig/expat_config.h
4+++ expat/expat_config.h
Haibo Huang40a71912019-10-11 11:13:39 -07005@@ -8,10 +8,14 @@
Haibo Huangb16e0172018-07-02 14:40:07 -07006 #define BYTEORDER 1234
7
8 /* Define to 1 if you have the `arc4random' function. */
9-/* #undef HAVE_ARC4RANDOM */
10+#if defined(__APPLE__) || defined(__BIONIC__)
11+#define HAVE_ARC4RANDOM 1
12+#endif
13
14 /* Define to 1 if you have the `arc4random_buf' function. */
15-/* #undef HAVE_ARC4RANDOM_BUF */
16+#if defined(__APPLE__) || defined(__BIONIC__)
17+#define HAVE_ARC4RANDOM_BUF 1
18+#endif
19
Haibo Huang40a71912019-10-11 11:13:39 -070020 /* Define to 1 if you have the <dlfcn.h> header file. */
21 #define HAVE_DLFCN_H 1
Haibo Huangb16e0172018-07-02 14:40:07 -070022@@ -23,7 +27,9 @@
23 #define HAVE_GETPAGESIZE 1
24
25 /* Define to 1 if you have the `getrandom' function. */
Colin Cross2cd04902021-08-16 15:53:15 -070026+#if defined(__BIONIC__) || defined(ANDROID_HOST_MUSL)
Haibo Huangb16e0172018-07-02 14:40:07 -070027 #define HAVE_GETRANDOM 1
28+#endif
29
30 /* Define to 1 if you have the <inttypes.h> header file. */
31 #define HAVE_INTTYPES_H 1
Elliott Hughes33bf9752021-08-10 17:33:34 -070032@@ -56,7 +56,9 @@
33 #define HAVE_STRING_H 1
34
35 /* Define to 1 if you have `syscall' and `SYS_getrandom'. */
Elliott Hughesf17eaa32022-02-23 15:25:42 -080036+#if 0 /* We only get here for glibc and Windows (where the better choices aren't available) and they don't have this fallback either. */
Elliott Hughes33bf9752021-08-10 17:33:34 -070037 #define HAVE_SYSCALL_GETRANDOM 1
38+#endif
39
40 /* Define to 1 if you have the <sys/param.h> header file. */
41 #define HAVE_SYS_PARAM_H 1
Haibo Huang40a71912019-10-11 11:13:39 -070042@@ -115,7 +121,9 @@
Haibo Huangb16e0172018-07-02 14:40:07 -070043 #define XML_CONTEXT_BYTES 1024
44
45 /* Define to include code reading entropy from `/dev/urandom'. */
46+#if defined(__GLIBC__)
47 #define XML_DEV_URANDOM 1
48+#endif
49
50 /* Define to make parameter entity parsing functionality available. */
51 #define XML_DTD 1