diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-07-06 00:00:56 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-07-06 00:00:56 -0500 |
commit | 0f91416ab681d88b2405ff80be5af1a1edecba18 (patch) | |
tree | d85743106f8a196ca1fd19178547ea6749d4e44e /contrib/depends/patches | |
parent | Merge pull request #8394 (diff) | |
parent | Depends: Unbound disable getentropy()/reallocarray() (glibc < 2.26) (diff) | |
download | monero-0f91416ab681d88b2405ff80be5af1a1edecba18.tar.xz |
Merge pull request #8400
6f3abbe Depends: Unbound disable getentropy()/reallocarray() (glibc < 2.26) (TheCharlatan)
Diffstat (limited to 'contrib/depends/patches')
-rw-r--r-- | contrib/depends/patches/unbound/disable-glibc-reallocarray.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/depends/patches/unbound/disable-glibc-reallocarray.patch b/contrib/depends/patches/unbound/disable-glibc-reallocarray.patch new file mode 100644 index 000000000..d66a821ad --- /dev/null +++ b/contrib/depends/patches/unbound/disable-glibc-reallocarray.patch @@ -0,0 +1,14 @@ +diff --git a/configure.ac b/configure.ac +index 5c7da197..e2b25288 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1702,6 +1702,9 @@ AC_LINK_IFELSE([AC_LANG_SOURCE(AC_INCLUDES_DEFAULT + #ifndef _OPENBSD_SOURCE + #define _OPENBSD_SOURCE 1 + #endif ++#ifdef __linux__ ++# error reallocarray() is currently disabled on Linux to support glibc < 2.26 ++#endif + #include <stdlib.h> + int main(void) { + void* p = reallocarray(NULL, 10, 100); |