mirror of
https://codeberg.org/librewolf/source.git
synced 2025-01-03 11:20:11 -05:00
new mozconfig
This commit is contained in:
parent
d952c2af5d
commit
27bedd8c9d
3 changed files with 84 additions and 48 deletions
|
@ -1,48 +0,0 @@
|
||||||
ac_add_options --enable-application=browser
|
|
||||||
|
|
||||||
# This supposedly speeds up compilation (We test through dogfooding anyway)
|
|
||||||
ac_add_options --disable-tests
|
|
||||||
ac_add_options --enable-release
|
|
||||||
ac_add_options --enable-hardening
|
|
||||||
|
|
||||||
ac_add_options --disable-debug
|
|
||||||
#ac_add_options --enable-debug
|
|
||||||
|
|
||||||
ac_add_options --enable-rust-simd
|
|
||||||
#ac_add_options --disable-rust-simd
|
|
||||||
|
|
||||||
ac_add_options --enable-optimize
|
|
||||||
#ac_add_options --disable-optimize
|
|
||||||
|
|
||||||
|
|
||||||
# Branding
|
|
||||||
ac_add_options --enable-update-channel=release
|
|
||||||
|
|
||||||
# theming bugs: ac_add_options --with-app-name=librewolf
|
|
||||||
# theming bugs: ac_add_options --with-app-basename=LibreWolf
|
|
||||||
ac_add_options --with-app-name=librewolf
|
|
||||||
ac_add_options --with-app-basename=LibreWolf
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ac_add_options --with-branding=browser/branding/librewolf
|
|
||||||
ac_add_options --with-distribution-id=io.gitlab.librewolf-community
|
|
||||||
ac_add_options --with-unsigned-addon-scopes=app,system
|
|
||||||
ac_add_options --allow-addon-sideload
|
|
||||||
# see issue # https://gitlab.com/librewolf-community/browser/arch/-/issues/49
|
|
||||||
export MOZ_REQUIRE_SIGNING=
|
|
||||||
|
|
||||||
# Features
|
|
||||||
ac_add_options --disable-crashreporter
|
|
||||||
ac_add_options --disable-updater
|
|
||||||
ac_add_options --disable-default-browser-agent
|
|
||||||
|
|
||||||
# Disables crash reporting, telemetry and other data gathering tools
|
|
||||||
mk_add_options MOZ_CRASHREPORTER=0
|
|
||||||
mk_add_options MOZ_DATA_REPORTING=0
|
|
||||||
mk_add_options MOZ_SERVICES_HEALTHREPORT=0
|
|
||||||
mk_add_options MOZ_TELEMETRY_REPORTING=0
|
|
||||||
|
|
||||||
# testing..
|
|
||||||
# MOZ_APP_NAME=librewolf
|
|
||||||
# This gives the same theming issue as --with-app-name=librewolf
|
|
1
assets/mozconfig
Symbolic link
1
assets/mozconfig
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
mozconfig.sample.1
|
38
assets/mozconfig.sample.1
Normal file
38
assets/mozconfig.sample.1
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
# we want a full build of firefox.
|
||||||
|
ac_add_options --enable-application=browser
|
||||||
|
ac_add_options --disable-artifact-builds
|
||||||
|
|
||||||
|
# for crosscompiling...
|
||||||
|
#ac_add_options --target=x86_64-pc-mingw32
|
||||||
|
#ac_add_options --host=x86_64-pc-mingw32
|
||||||
|
#ac_add_options --target=x86_64-apple-darwin
|
||||||
|
#ac_add_options --with-macos-sdk=...
|
||||||
|
|
||||||
|
# optimization and disabling unwanted features.
|
||||||
|
ac_add_options --disable-crashreporter
|
||||||
|
ac_add_options --disable-debug
|
||||||
|
ac_add_options --disable-default-browser-agent
|
||||||
|
ac_add_options --disable-tests
|
||||||
|
ac_add_options --disable-updater
|
||||||
|
ac_add_options --enable-hardening
|
||||||
|
ac_add_options --enable-optimize
|
||||||
|
ac_add_options --enable-release
|
||||||
|
ac_add_options --enable-rust-simd
|
||||||
|
|
||||||
|
# add-ons..
|
||||||
|
ac_add_options --allow-addon-sideload
|
||||||
|
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||||
|
|
||||||
|
|
||||||
|
# disables crash reporting, telemetry and other tools
|
||||||
|
mk_add_options MOZ_CRASHREPORTER=0
|
||||||
|
mk_add_options MOZ_DATA_REPORTING=0
|
||||||
|
mk_add_options MOZ_SERVICES_HEALTHREPORT=0
|
||||||
|
mk_add_options MOZ_TELEMETRY_REPORTING=0
|
||||||
|
|
||||||
|
|
||||||
|
# see issue # https://gitlab.com/librewolf-community/browser/arch/-/issues/49
|
||||||
|
export MOZ_REQUIRE_SIGNING=
|
||||||
|
|
||||||
|
# branding..
|
||||||
|
ac_add_options --with-branding=browser/branding/librewolf
|
45
assets/mozconfig.windows
Normal file
45
assets/mozconfig.windows
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
ac_add_options --enable-application=browser
|
||||||
|
|
||||||
|
# This supposedly speeds up compilation (We test through dogfooding anyway)
|
||||||
|
ac_add_options --disable-tests
|
||||||
|
ac_add_options --enable-release
|
||||||
|
ac_add_options --enable-hardening
|
||||||
|
|
||||||
|
ac_add_options --disable-debug
|
||||||
|
#ac_add_options --enable-debug
|
||||||
|
|
||||||
|
ac_add_options --enable-rust-simd
|
||||||
|
#ac_add_options --disable-rust-simd
|
||||||
|
|
||||||
|
ac_add_options --enable-optimize
|
||||||
|
#ac_add_options --disable-optimize
|
||||||
|
|
||||||
|
|
||||||
|
# Branding
|
||||||
|
ac_add_options --enable-update-channel=release
|
||||||
|
|
||||||
|
# theming bugs: ac_add_options --with-app-name=librewolf
|
||||||
|
# theming bugs: ac_add_options --with-app-basename=LibreWolf
|
||||||
|
ac_add_options --with-app-name=librewolf
|
||||||
|
ac_add_options --with-app-basename=LibreWolf
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ac_add_options --with-branding=browser/branding/librewolf
|
||||||
|
ac_add_options --with-distribution-id=io.gitlab.librewolf-community
|
||||||
|
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||||
|
ac_add_options --allow-addon-sideload
|
||||||
|
# see issue # https://gitlab.com/librewolf-community/browser/arch/-/issues/49
|
||||||
|
export MOZ_REQUIRE_SIGNING=
|
||||||
|
|
||||||
|
# Features
|
||||||
|
ac_add_options --disable-crashreporter
|
||||||
|
ac_add_options --disable-updater
|
||||||
|
ac_add_options --disable-default-browser-agent
|
||||||
|
|
||||||
|
# Disables crash reporting, telemetry and other data gathering tools
|
||||||
|
mk_add_options MOZ_CRASHREPORTER=0
|
||||||
|
mk_add_options MOZ_DATA_REPORTING=0
|
||||||
|
mk_add_options MOZ_SERVICES_HEALTHREPORT=0
|
||||||
|
mk_add_options MOZ_TELEMETRY_REPORTING=0
|
||||||
|
|
Loading…
Reference in a new issue