summaryrefslogtreecommitdiff
path: root/build-nspr.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-08-19 18:35:53 +0200
committerMartin Stransky <stransky@redhat.com>2020-08-19 18:35:53 +0200
commit04eebae141f253106dce631c2e0ecc7a0d22494d (patch)
tree5c9bf6e713c429fa0c2939bdac1a2bdd85ed189f /build-nspr.patch
parentchangelog update (diff)
downloadlibrewolf-fedora-ff-04eebae141f253106dce631c2e0ecc7a0d22494d.tar.gz
librewolf-fedora-ff-04eebae141f253106dce631c2e0ecc7a0d22494d.tar.bz2
librewolf-fedora-ff-04eebae141f253106dce631c2e0ecc7a0d22494d.zip
Added nspr build fixes
Diffstat (limited to 'build-nspr.patch')
-rw-r--r--build-nspr.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/build-nspr.patch b/build-nspr.patch
new file mode 100644
index 0000000..acb67af
--- /dev/null
+++ b/build-nspr.patch
@@ -0,0 +1,28 @@
+diff -up firefox-80.0/dom/system/IOUtils.cpp.nspr-build firefox-80.0/dom/system/IOUtils.cpp
+--- firefox-80.0/dom/system/IOUtils.cpp.nspr-build 2020-08-19 17:38:00.895018639 +0200
++++ firefox-80.0/dom/system/IOUtils.cpp 2020-08-19 17:38:09.965978725 +0200
+@@ -14,9 +14,9 @@
+ #include "mozilla/Services.h"
+ #include "mozilla/Span.h"
+ #include "mozilla/TextUtils.h"
+-#include "nspr/prio.h"
+-#include "nspr/private/pprio.h"
+-#include "nspr/prtypes.h"
++#include "prio.h"
++#include "private/pprio.h"
++#include "prtypes.h"
+ #include "nsDirectoryServiceDefs.h"
+ #include "nsIFile.h"
+ #include "nsIGlobalObject.h"
+diff -up firefox-80.0/dom/system/IOUtils.h.nspr-build firefox-80.0/dom/system/IOUtils.h
+--- firefox-80.0/dom/system/IOUtils.h.nspr-build 2020-08-17 22:13:15.000000000 +0200
++++ firefox-80.0/dom/system/IOUtils.h 2020-08-19 17:20:33.332711771 +0200
+@@ -14,7 +14,7 @@
+ #include "mozilla/dom/TypedArray.h"
+ #include "mozilla/ErrorResult.h"
+ #include "mozilla/MozPromise.h"
+-#include "nspr/prio.h"
++#include "prio.h"
+ #include "nsIAsyncShutdown.h"
+ #include "nsISerialEventTarget.h"
+ #include "nsLocalFile.h"
bgstack15