aboutsummaryrefslogtreecommitdiff
path: root/common/source_files/mozconfig
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-08-16 20:00:38 -0500
committerBeatLink <beatlink@protonmail.com>2019-08-16 20:00:38 -0500
commitd16a5b29e81bb6e0e58af2a97484defccacf355c (patch)
tree4ef06da3e1d9548a99fc4ce8adf4587d7bd14621 /common/source_files/mozconfig
parentmove toggle settings folder to linux script (diff)
downloadlibrewolf-linux-d16a5b29e81bb6e0e58af2a97484defccacf355c.tar.gz
librewolf-linux-d16a5b29e81bb6e0e58af2a97484defccacf355c.tar.bz2
librewolf-linux-d16a5b29e81bb6e0e58af2a97484defccacf355c.zip
Move branding and settings to seperate repos and move browser to top level
Diffstat (limited to 'common/source_files/mozconfig')
-rw-r--r--common/source_files/mozconfig29
1 files changed, 29 insertions, 0 deletions
diff --git a/common/source_files/mozconfig b/common/source_files/mozconfig
new file mode 100644
index 0000000..4d5eb63
--- /dev/null
+++ b/common/source_files/mozconfig
@@ -0,0 +1,29 @@
+# COMPILE OPTIONS #######################################################################
+# This is for the desktop version of librewolf
+ac_add_options --enable-application=browser
+
+# This supposedly speeds up compilation (We test through dogfooding anyway)
+ac_add_options --disable-tests
+ac_add_options --disable-debug
+
+# 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
+
+
+
+
bgstack15