diff options
author | B Stack <bgstack15@gmail.com> | 2020-08-04 00:22:50 +0000 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-08-04 00:22:50 +0000 |
commit | bff2b4d05d6367f0eda905a5cbe7aabf9b75a2d6 (patch) | |
tree | 416ae51d3dfefe386ad2b4d961b13f23eff68168 /palemoon/debian/mozconfig-unstable | |
parent | Merge branch 'lo-tango-bump' into 'master' (diff) | |
parent | use dh_auto_configure for MCFILE (diff) | |
download | stackrpms-bff2b4d05d6367f0eda905a5cbe7aabf9b75a2d6.tar.gz stackrpms-bff2b4d05d6367f0eda905a5cbe7aabf9b75a2d6.tar.bz2 stackrpms-bff2b4d05d6367f0eda905a5cbe7aabf9b75a2d6.zip |
Merge branch 'palemoon-bump' into 'master'
Palemoon 28.11.0
See merge request bgstack15/stackrpms!175
Diffstat (limited to 'palemoon/debian/mozconfig-unstable')
-rw-r--r-- | palemoon/debian/mozconfig-unstable | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/palemoon/debian/mozconfig-unstable b/palemoon/debian/mozconfig-unstable new file mode 100644 index 0000000..aa04e06 --- /dev/null +++ b/palemoon/debian/mozconfig-unstable @@ -0,0 +1,55 @@ +mk_add_options AUTOCLOBBER=1 +export BUILDING_RELEASE=1 +export MC_OFFICIAL=1 +export MOZILLA_OFFICIAL=1 +export MC_PALEMOON=1 + +#mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/pmbuild + +ac_add_options --enable-application=palemoon +ac_add_options --enable-official-branding +ac_add_options --enable-official-vendor + +# 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= + +# Standard +# Enables +ac_add_options --enable-av1 +ac_add_options --enable-optimize="-O2 -Wl,--no-keep-memory -Wl,--reduce-memory-overhead" +ac_add_options --enable-default-toolkit=cairo-gtk2 +ac_add_options --enable-devtools +ac_add_options --enable-jemalloc +ac_add_options --with-pthreads +ac_add_options --enable-strip +# Disables +ac_add_options --disable-debug +ac_add_options --disable-eme +ac_add_options --disable-gamepad +ac_add_options --disable-necko-wifi +ac_add_options --disable-tests +ac_add_options --disable-updater +ac_add_options --disable-webrtc +# Disable temeletry +export MOZ_TELEMETRY_REPORTING= +ac_add_options --disable-crashreporter +ac_add_options --disable-parental-controls +ac_add_options --disable-accessibility + +# Debian style +ac_add_options --prefix=/usr +# Devuan style +ac_add_options --disable-dbus +ac_add_options --disable-pulseaudio +# even though this is redundant +ac_add_options --enable-alsa + +# primarily for 32-bit but tolerated for 64-bit +ac_add_options --x-libraries=/usr/lib + +# limit to 4 cpus to limit memory usage (approximately 0.75 GiB RAM/thread) +# single-threaded for Devuan unstable +mk_add_options MOZ_MAKE_FLAGS="-j1" |