aboutsummaryrefslogtreecommitdiff
path: root/browser/common/source_files/mozconfig
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-06-30 18:52:46 -0500
committerBeatLink <beatlink@protonmail.com>2019-06-30 18:52:46 -0500
commit140d51b378fa6c68a67f396344c54cda230175ca (patch)
treeb3fbce0fcd93cef28b613e501736810e717be542 /browser/common/source_files/mozconfig
parentmove build scripts to linux specific folder (diff)
downloadlibrewolf-linux-140d51b378fa6c68a67f396344c54cda230175ca.tar.gz
librewolf-linux-140d51b378fa6c68a67f396344c54cda230175ca.tar.bz2
librewolf-linux-140d51b378fa6c68a67f396344c54cda230175ca.zip
further source file relocation
Diffstat (limited to 'browser/common/source_files/mozconfig')
-rw-r--r--browser/common/source_files/mozconfig25
1 files changed, 25 insertions, 0 deletions
diff --git a/browser/common/source_files/mozconfig b/browser/common/source_files/mozconfig
new file mode 100644
index 0000000..99b0103
--- /dev/null
+++ b/browser/common/source_files/mozconfig
@@ -0,0 +1,25 @@
+# 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
+
+# Setting the branding options
+ac_add_options --with-branding=browser/branding/librewolf
+ac_add_options --with-distribution-id=io.gitlab.librewolf
+
+# enables ALSA
+ac_add_options --enable-alsa
+
+
+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
+
+mk_add_options MOZ_REQUIRE_SIGNING=0
+
+mk_add_options MOZ_ADOBE_EME=0
+
+
+
bgstack15