f1b26c
diff -up thunderbird-78.3.0/comm/third_party/botan/src/lib/utils/os_utils.cpp.auxv thunderbird-78.3.0/comm/third_party/botan/src/lib/utils/os_utils.cpp
f1b26c
--- thunderbird-78.3.0/comm/third_party/botan/src/lib/utils/os_utils.cpp.auxv	2020-09-25 17:23:50.810638756 +0200
f1b26c
+++ thunderbird-78.3.0/comm/third_party/botan/src/lib/utils/os_utils.cpp	2020-09-25 17:26:00.156999592 +0200
f1b26c
@@ -42,7 +42,7 @@
f1b26c
 
f1b26c
 #if defined(BOTAN_TARGET_OS_HAS_GETAUXVAL) || defined(BOTAN_TARGET_OS_IS_ANDROID) || \
f1b26c
   defined(BOTAN_TARGET_OS_HAS_ELF_AUX_INFO)
f1b26c
-  #include <sys/auxv.h>
f1b26c
+  //#include <sys/auxv.h>
f1b26c
 #endif
f1b26c
 
f1b26c
 #if defined(BOTAN_TARGET_OS_HAS_WIN32)
f1b26c
@@ -109,7 +109,7 @@ uint32_t OS::get_process_id()
f1b26c
 unsigned long OS::get_auxval(unsigned long id)
f1b26c
    {
f1b26c
 #if defined(BOTAN_TARGET_OS_HAS_GETAUXVAL)
f1b26c
-   return ::getauxval(id);
f1b26c
+   //return ::getauxval(id);
f1b26c
 #elif defined(BOTAN_TARGET_OS_IS_ANDROID) && defined(BOTAN_TARGET_ARCH_IS_ARM32)
f1b26c
 
f1b26c
    if(id == 0)