summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbrowser/confvars.sh1
-rw-r--r--old-configure.in10
2 files changed, 6 insertions, 5 deletions
diff --git a/browser/confvars.sh b/browser/confvars.sh
index 288b842a6..503e940b3 100755
--- a/browser/confvars.sh
+++ b/browser/confvars.sh
@@ -55,6 +55,7 @@ MOZ_WEBGL_CONFORMANT=1
MOZ_JSDOWNLOADS=1
MOZ_RUST_MP4PARSE=1
MOZ_RUST_URLPARSE=1
+MOZ_WEBRTC=1
MOZ_WEBEXTENSIONS=1
MOZ_DEVTOOLS=1
diff --git a/old-configure.in b/old-configure.in
index 203a12bea..f01f8fcb0 100644
--- a/old-configure.in
+++ b/old-configure.in
@@ -2878,12 +2878,12 @@ x86_64 | arm | aarch64 | x86 | ppc* | ia64)
esac
dnl ========================================================
-dnl = Disable WebRTC code
+dnl = Enable WebRTC code
dnl ========================================================
-MOZ_ARG_DISABLE_BOOL(webrtc,
-[ --disable-webrtc Disable support for WebRTC],
- MOZ_WEBRTC=,
- MOZ_WEBRTC=1)
+MOZ_ARG_ENABLE_BOOL(webrtc,
+[ --enable-webrtc Enable support for WebRTC],
+ MOZ_WEBRTC=1,
+ MOZ_WEBRTC=)
if test -n "$MOZ_WEBRTC"; then
AC_DEFINE(MOZ_WEBRTC)