foxgirl-linux/common/source_files/mozconfig

30 lines
1,004 B
Plaintext
Raw Normal View History

# COMPILE OPTIONS #######################################################################
2019-07-01 01:52:46 +02:00
# This is for the desktop version of librewolf
ac_add_options --enable-application=browser
2019-07-04 12:39:11 +02:00
# This supposedly speeds up compilation (We test through dogfooding anyway)
2019-07-20 00:26:38 +02:00
ac_add_options --disable-tests
ac_add_options --disable-debug
2019-07-04 12:39:11 +02:00
2019-07-01 01:52:46 +02:00
# Folder to output the build files:
mk_add_options MOZ_OBJDIR=./obj_BUILD_OUTPUT
# BRANDING OPTIONS ######################################################################
2019-07-01 01:52:46 +02:00
# Setting the branding options
ac_add_options --with-branding=browser/branding/librewolf
ac_add_options --with-distribution-id=io.gitlab.librewolf
# LIBREWOLF SPECIFIC OPTIONS ############################################################
2019-07-01 01:52:46 +02:00
# enables ALSA
ac_add_options --enable-alsa
# Disables crash reporting, telemetry and other data gathering tools
2019-07-01 01:52:46 +02:00
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