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