summaryrefslogtreecommitdiff
path: root/newmoon/debian/mozconfig
diff options
context:
space:
mode:
Diffstat (limited to 'newmoon/debian/mozconfig')
-rw-r--r--newmoon/debian/mozconfig11
1 files changed, 3 insertions, 8 deletions
diff --git a/newmoon/debian/mozconfig b/newmoon/debian/mozconfig
index 4e7c1e5..c5b18d2 100644
--- a/newmoon/debian/mozconfig
+++ b/newmoon/debian/mozconfig
@@ -12,20 +12,15 @@ ac_add_options --enable-application=palemoon
ac_add_options --disable-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-optimize="-O2 -w"
# accepts either gtk2 or gtk3 here, but gtk2 is only officially supported option
ac_add_options --enable-default-toolkit=cairo-gtk2
ac_add_options --enable-devtools
ac_add_options --enable-jemalloc
+ac_add_options --enable-jxl
ac_add_options --with-pthreads
ac_add_options --enable-strip
@@ -74,6 +69,6 @@ ac_add_options --disable-personas
# limit to 4 cpus to limit memory usage (approximately 0.75 GiB RAM/thread)
# Debian Sid/Devuan Ceres; 2020-07 only -j1 works due to a bug.
-mk_add_options MOZ_MAKE_FLAGS="-j1"
+#mk_add_options MOZ_MAKE_FLAGS="-j1"
export MOZ_PKG_SPECIAL=gtk2
bgstack15