From 6f3abbead534650377aa8362f8c37623831ee5af Mon Sep 17 00:00:00 2001 From: TheCharlatan Date: Wed, 22 Jun 2022 22:50:55 +0200 Subject: Depends: Unbound disable getentropy()/reallocarray() (glibc < 2.26) --- .../patches/unbound/disable-glibc-reallocarray.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 contrib/depends/patches/unbound/disable-glibc-reallocarray.patch (limited to 'contrib/depends/patches/unbound/disable-glibc-reallocarray.patch') 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 + int main(void) { + void* p = reallocarray(NULL, 10, 100); -- cgit v1.2.3