summaryrefslogtreecommitdiffstats
path: root/old-configure.in
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-24 09:56:36 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-24 09:56:36 -0500
commitfd6b1ad6f9768556bb03a0fbdb16587fdfd0a962 (patch)
tree8a0d8b670f803613bc05026a7b8eea52339dd6de /old-configure.in
parent7a6e7ed0f5b0e908d61347ad9fa166ffeea1d349 (diff)
downloadUXP-fd6b1ad6f9768556bb03a0fbdb16587fdfd0a962.tar
UXP-fd6b1ad6f9768556bb03a0fbdb16587fdfd0a962.tar.gz
UXP-fd6b1ad6f9768556bb03a0fbdb16587fdfd0a962.tar.lz
UXP-fd6b1ad6f9768556bb03a0fbdb16587fdfd0a962.tar.xz
UXP-fd6b1ad6f9768556bb03a0fbdb16587fdfd0a962.zip
WebRTC should be an enable bool in ac configure but enabled in Basilisk
Diffstat (limited to 'old-configure.in')
-rw-r--r--old-configure.in10
1 files changed, 5 insertions, 5 deletions
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)