summaryrefslogtreecommitdiff
path: root/waterfox/debian
diff options
context:
space:
mode:
Diffstat (limited to 'waterfox/debian')
-rw-r--r--waterfox/debian/changelog6
-rw-r--r--waterfox/debian/mozconfig3
2 files changed, 8 insertions, 1 deletions
diff --git a/waterfox/debian/changelog b/waterfox/debian/changelog
index 83ac043..cd01481 100644
--- a/waterfox/debian/changelog
+++ b/waterfox/debian/changelog
@@ -1,3 +1,9 @@
+waterfox (56.2.11-2+devuan) manual; urgency=medium
+
+ * Repackaged for obs, which required disabling rust-simd.
+
+ -- B Stack <bgstack15@gmail.com> Mon, 01 Jul 2019 13:56:48 -0400
+
waterfox (56.2.11-1+devuan) manual; urgency=medium
* New logo
diff --git a/waterfox/debian/mozconfig b/waterfox/debian/mozconfig
index ab7112d..6448a69 100644
--- a/waterfox/debian/mozconfig
+++ b/waterfox/debian/mozconfig
@@ -26,7 +26,8 @@ ac_add_options --disable-updater
ac_add_options --enable-release
-if ! test `lsb_release -sc` = "stretch" && ! test `lsb_release -sc` = "jessie"; then
+# 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
bgstack15