components/desktop/thunderbird/patches/firefox-43-xpcom.patch
changeset 6431 e4667e7df088
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/desktop/thunderbird/patches/firefox-43-xpcom.patch	Tue Jul 19 14:15:23 2016 -0700
@@ -0,0 +1,25 @@
+Solaris-specific patch. Adds if def(SOLARIS) case.
+Do not plan to send upstream.
+
+diff --git a/xpcom/base/nsUUIDGenerator.cpp b/xpcom/base/nsUUIDGenerator.cpp
+--- a/xpcom/base/nsUUIDGenerator.cpp
++++ b/xpcom/base/nsUUIDGenerator.cpp
+@@ -11,17 +11,17 @@
+ #include <CoreFoundation/CoreFoundation.h>
+ #else
+ #include <stdlib.h>
+ #include "prrng.h"
+ #endif
+ 
+ #include "nsUUIDGenerator.h"
+ 
+-#ifdef ANDROID
++#if defined(ANDROID) || defined(SOLARIS)
+ extern "C" NS_EXPORT void arc4random_buf(void*, size_t);
+ #endif
+ 
+ using namespace mozilla;
+ 
+ NS_IMPL_ISUPPORTS(nsUUIDGenerator, nsIUUIDGenerator)
+ 
+ nsUUIDGenerator::nsUUIDGenerator()