Discussions about the development and maturation of the platform code (UXP).
Warning: may contain highly-technical topics.
Moderators: trava90, athenian200
-
Walter Dnes
- Astronaut

- Posts: 714
- Joined: 2015-07-30, 20:29
- Location: Vaughan, ON, Canada
Post
by Walter Dnes » 2019-01-30, 02:00
Stuff changes over time, including Pale Moon compile options. Here's most of my mozconfig, customized for my home desktop PC. How much of it is already the default or inapplicable, that I can safely delete?
Code: Select all
ac_add_options --disable-official-branding
export MOZILLA_OFFICIAL=0
mk_add_options MOZ_CO_PROJECT=browser
ac_add_options --enable-application=palemoon
ac_add_options --enable-default-toolkit=cairo-gtk2
ac_add_options --enable-install-strip
ac_add_options --enable-jemalloc
ac_add_options --enable-strip
ac_add_options --disable-accessibility
ac_add_options --disable-crashreporter
ac_add_options --disable-debug
ac_add_options --disable-necko-wifi
ac_add_options --disable-parental-controls
ac_add_options --disable-tests
ac_add_options --disable-updater
ac_add_options --disable-webrtc
ac_add_options --with-branding=application/palemoon/branding/unofficial
ac_add_options --with-pthreads
ac_add_options --x-libraries=/usr/lib64
There are 2 kinds of people in this world...
1) Those who can extrapolate from incomplete data
-
New Tobin Paradigm
Post
by New Tobin Paradigm » 2019-01-30, 06:12
MOZ_CO_PROJECT hasn't been a ting since Mozilla used CVS.
WebRTC is default not built.. MOZILLA_OFFICIAL should be set or not exist but it should be set.. 0 is different than unset sometimes..
--enable-install-strip likely shouldn't be used.. The rest looks fine to me.
-
Walter Dnes
- Astronaut

- Posts: 714
- Joined: 2015-07-30, 20:29
- Location: Vaughan, ON, Canada
Post
by Walter Dnes » 2019-01-30, 19:06
Thanks. I'll update the mozconfigs for my notebook and desktop.
There are 2 kinds of people in this world...
1) Those who can extrapolate from incomplete data