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