summaryrefslogtreecommitdiff
path: root/newmoon/debian/mozconfig
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-09-05 11:03:15 -0400
committerB Stack <bgstack15@gmail.com>2020-09-05 11:03:15 -0400
commit89deded2e80da6eab4f7c3e7881463d07dcfff72 (patch)
treed7c77a6a70defabb35ed662424ca15d790fe68e7 /newmoon/debian/mozconfig
parentnewmoon 28.13.0 rc1 (diff)
downloadstackrpms-89deded2e80da6eab4f7c3e7881463d07dcfff72.tar.gz
stackrpms-89deded2e80da6eab4f7c3e7881463d07dcfff72.tar.bz2
stackrpms-89deded2e80da6eab4f7c3e7881463d07dcfff72.zip
fix removing old extensions
Diffstat (limited to 'newmoon/debian/mozconfig')
-rw-r--r--newmoon/debian/mozconfig4
1 files changed, 3 insertions, 1 deletions
diff --git a/newmoon/debian/mozconfig b/newmoon/debian/mozconfig
index 7661740..097882d 100644
--- a/newmoon/debian/mozconfig
+++ b/newmoon/debian/mozconfig
@@ -26,6 +26,7 @@ ac_add_options --enable-devtools
ac_add_options --disable-jemalloc
ac_add_options --with-pthreads
ac_add_options --enable-strip
+ac_add_options --enable-phoenix-extensions
# Disables
ac_add_options --disable-debug
ac_add_options --enable-eme
@@ -33,7 +34,8 @@ ac_add_options --disable-gamepad
ac_add_options --disable-necko-wifi
ac_add_options --disable-tests
ac_add_options --disable-updater
-ac_add_options --enable-webrtc
+# unfortunately newmoon does not have the client-side bits for webrtc so enabling it does nothing, per upstream
+#ac_add_options --enable-webrtc
# Disable temeletry
export MOZ_TELEMETRY_REPORTING=
ac_add_options --disable-crashreporter
bgstack15