diff options
author | B Stack <bgstack15@gmail.com> | 2020-02-12 00:43:00 +0000 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-02-12 00:43:00 +0000 |
commit | 69001f6e35ac4d49d6ceab76344854fa77e808e2 (patch) | |
tree | ae20854b6feb039bcc7f92c145b7ff264f1d9130 /waterfox/debian/patches | |
parent | Merge branch 'xdg-themes-stackrpms-bump' into 'master' (diff) | |
parent | add xdgmenumaker-user script and menu entry (diff) | |
download | stackrpms-69001f6e35ac4d49d6ceab76344854fa77e808e2.tar.gz stackrpms-69001f6e35ac4d49d6ceab76344854fa77e808e2.tar.bz2 stackrpms-69001f6e35ac4d49d6ceab76344854fa77e808e2.zip |
Merge branch 'updates' into 'master'
veracrypt, xdgmenumaker, ublock-origin, notepadpp, palemoon, xseticon dpkg
Closes #16
See merge request bgstack15/stackrpms!122
Diffstat (limited to 'waterfox/debian/patches')
-rw-r--r-- | waterfox/debian/patches/45130a237874aaa96bdf23ee107b0be0e0a2afab.patch | 25 | ||||
-rw-r--r-- | waterfox/debian/patches/series | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/waterfox/debian/patches/45130a237874aaa96bdf23ee107b0be0e0a2afab.patch b/waterfox/debian/patches/45130a237874aaa96bdf23ee107b0be0e0a2afab.patch new file mode 100644 index 0000000..47bf71b --- /dev/null +++ b/waterfox/debian/patches/45130a237874aaa96bdf23ee107b0be0e0a2afab.patch @@ -0,0 +1,25 @@ +Source: https://github.com/MrAlex94/Waterfox/commit/45130a237874aaa96bdf23ee107b0be0e0a2afab?diff=unified#diff-9517c6ca41ff7c9627f13ff83c2f7dce +Date: 2020-01-30 09:22:35 -0500 +diff -x '*.swp' -x '*.orig' -x '*.diff' -x '*debhelper*' -Naur 1/js/xpconnect/src/XPCVariant.cpp 2/js/xpconnect/src/XPCVariant.cpp +--- 1/js/xpconnect/src/XPCVariant.cpp 2020-01-09 15:53:52.000000000 -0500 ++++ 2/js/xpconnect/src/XPCVariant.cpp 2020-01-30 09:14:14.645389196 -0500 +@@ -180,7 +180,7 @@ + type = tDbl; + } else if (val.isBoolean()) { + type = tBool; +- } else if (val.isUndefined() || val.isSymbol() || val.isBigInt()) { ++ } else if (val.isUndefined() || val.isSymbol()) { + state = tVar; + break; + } else if (val.isNull()) { +@@ -275,8 +275,8 @@ + mData.SetFromBool(val.toBoolean()); + return true; + } +- // We can't represent symbol or BigInt on C++ side, so pretend it is void. +- if (val.isUndefined() || val.isSymbol() || val.isBigInt()) { ++ // We can't represent symbol on C++ side, so pretend it is void. ++ if (val.isUndefined() || val.isSymbol()) { + mData.SetToVoid(); + return true; + } diff --git a/waterfox/debian/patches/series b/waterfox/debian/patches/series index cb8ded3..9c29521 100644 --- a/waterfox/debian/patches/series +++ b/waterfox/debian/patches/series @@ -2,3 +2,4 @@ #waterfox-install-dir.patch -p1 dont-statically-link-libstdc++.patch -p1 bgstack15.patch -p1 +45130a237874aaa96bdf23ee107b0be0e0a2afab.patch -p1 |