summaryrefslogtreecommitdiff
path: root/palemoon/debian/mozconfig
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-01-26 15:31:03 +0000
committerB Stack <bgstack15@gmail.com>2019-01-26 15:31:03 +0000
commit01a9822e17e555568a7f3a8b5b5ad50d5599489f (patch)
tree7c68e36b9837419160b727908216c1045e42eb47 /palemoon/debian/mozconfig
parentpalemoon 28.3.1 (diff)
downloadstackrpms-01a9822e17e555568a7f3a8b5b5ad50d5599489f.tar.gz
stackrpms-01a9822e17e555568a7f3a8b5b5ad50d5599489f.tar.bz2
stackrpms-01a9822e17e555568a7f3a8b5b5ad50d5599489f.zip
Palemoon dpkg for devuan
Diffstat (limited to 'palemoon/debian/mozconfig')
-rw-r--r--palemoon/debian/mozconfig51
1 files changed, 51 insertions, 0 deletions
diff --git a/palemoon/debian/mozconfig b/palemoon/debian/mozconfig
new file mode 100644
index 0000000..bc45287
--- /dev/null
+++ b/palemoon/debian/mozconfig
@@ -0,0 +1,51 @@
+mk_add_options AUTOCLOBBER=1
+mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/pmbuild
+ac_add_options --enable-application=palemoon
+
+ac_add_options --enable-optimize="-O2"
+
+ac_add_options --enable-official-branding
+ac_add_options --enable-official-vendor
+
+# Safeguard against someone forgetting to re-set EARLY_BETA_OR_EARLIER in
+# defines.sh during the beta cycle
+export BUILDING_RELEASE=1
+export MC_OFFICIAL=1
+export MOZILLA_OFFICIAL=1
+export MC_PALEMOON=1
+
+# Disable add-ons signing
+# Disable checking that add-ons are signed by the trusted root
+MOZ_ADDON_SIGNING=
+# Disable enforcing that add-ons are signed by the trusted root
+MOZ_REQUIRE_SIGNING=
+
+ac_add_options --enable-default-toolkit=cairo-gtk2
+ac_add_options --enable-jemalloc
+ac_add_options --enable-av1
+#ac_add_options --enable-shared-js
+ac_add_options --enable-strip
+ac_add_options --with-pthreads
+
+ac_add_options --disable-tests
+ac_add_options --disable-debug
+ac_add_options --disable-crashreporter
+ac_add_options --disable-eme
+ac_add_options --disable-parental-controls
+ac_add_options --disable-accessibility
+ac_add_options --disable-webrtc
+ac_add_options --disable-gamepad
+ac_add_options --disable-necko-wifi
+ac_add_options --disable-updater
+# debian-style prefix
+ac_add_options --prefix=/usr
+# devuan options
+ac_add_options --disable-dbus
+ac_add_options --disable-pulseaudio
+# even though this is redundant
+ac_add_options --enable-alsa
+
+# Disable telemetry reporting
+export MOZ_TELEMETRY_REPORTING=
+
+ac_add_options --x-libraries=/usr/lib
bgstack15