aboutsummaryrefslogtreecommitdiff
path: root/browser/common/source_files/mozconfig
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-03 18:56:11 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-03 18:56:11 -0500
commit7c1c606ae6f3fbf40cffe87f233d3f6ca5d79bd2 (patch)
treed694dace74cc1b51c09e8d7b1201650afa644d2d /browser/common/source_files/mozconfig
parentRestore Previous settings (diff)
downloadlibrewolf-linux-7c1c606ae6f3fbf40cffe87f233d3f6ca5d79bd2.tar.gz
librewolf-linux-7c1c606ae6f3fbf40cffe87f233d3f6ca5d79bd2.tar.bz2
librewolf-linux-7c1c606ae6f3fbf40cffe87f233d3f6ca5d79bd2.zip
Add headings, remove drm blocking (handled by cfg)
Diffstat (limited to 'browser/common/source_files/mozconfig')
-rw-r--r--browser/common/source_files/mozconfig7
1 files changed, 5 insertions, 2 deletions
diff --git a/browser/common/source_files/mozconfig b/browser/common/source_files/mozconfig
index 99b0103..70ad8b4 100644
--- a/browser/common/source_files/mozconfig
+++ b/browser/common/source_files/mozconfig
@@ -1,25 +1,28 @@
+# COMPILE OPTIONS #######################################################################
# This is for the desktop version of librewolf
ac_add_options --enable-application=browser
# Folder to output the build files:
mk_add_options MOZ_OBJDIR=./obj_BUILD_OUTPUT
+# BRANDING OPTIONS ######################################################################
# Setting the branding options
ac_add_options --with-branding=browser/branding/librewolf
ac_add_options --with-distribution-id=io.gitlab.librewolf
+# LIBREWOLF SPECIFIC OPTIONS ############################################################
# enables ALSA
ac_add_options --enable-alsa
-
+# 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
+# Disable addon signing
mk_add_options MOZ_REQUIRE_SIGNING=0
-mk_add_options MOZ_ADOBE_EME=0
bgstack15