summaryrefslogtreecommitdiff
path: root/waterfox
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-07-11 13:02:30 -0400
committerB Stack <bgstack15@gmail.com>2019-07-11 13:02:30 -0400
commit87ea9ac24ab08d2d4958754f520a132760c1750a (patch)
tree288286bf36e9f7c8b9490c2b8c7ab87f3f67b933 /waterfox
parentfreefilesync dpkg add unzip (diff)
downloadstackrpms-87ea9ac24ab08d2d4958754f520a132760c1750a.tar.gz
stackrpms-87ea9ac24ab08d2d4958754f520a132760c1750a.tar.bz2
stackrpms-87ea9ac24ab08d2d4958754f520a132760c1750a.zip
waterfox 56.2.12 dpkg rc1
Diffstat (limited to 'waterfox')
-rw-r--r--waterfox/debian/changelog6
-rw-r--r--waterfox/debian/mozconfig7
2 files changed, 9 insertions, 4 deletions
diff --git a/waterfox/debian/changelog b/waterfox/debian/changelog
index cd01481..0c6eb34 100644
--- a/waterfox/debian/changelog
+++ b/waterfox/debian/changelog
@@ -1,3 +1,9 @@
+waterfox (56.2.12-1+devuan) manual; urgency=medium
+
+ * Patches for [mfsa2019-22](https://www.mozilla.org/en-US/security/advisories/mfsa2019-22/).
+
+ -- B Stack <bgstack15@gmail.com> Mon, 11 Jul 2019 10:07:44 -0400
+
waterfox (56.2.11-2+devuan) manual; urgency=medium
* Repackaged for obs, which required disabling rust-simd.
diff --git a/waterfox/debian/mozconfig b/waterfox/debian/mozconfig
index 6448a69..e2a51c9 100644
--- a/waterfox/debian/mozconfig
+++ b/waterfox/debian/mozconfig
@@ -26,10 +26,9 @@ ac_add_options --disable-updater
ac_add_options --enable-release
-# this line works for OBS, but not on private infrastructure.
-if ! test `lsb_release -sc` = "stretch" && ! test `lsb_release -sc` = "jessie" && ! test `lsb_release -sc` = "buster"; then
-ac_add_options --enable-rust-simd # on x86 requires SSE2
-fi
+# Turn rust-simd on for local builds, off for OBS
+#ac_add_options --enable-rust-simd # on x86 requires SSE2
+ac_add_options --disable-rust-simd
ac_add_options --enable-stylo=build
bgstack15