mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
WebRTC should be an enable bool in ac configure but enabled in Basilisk
This commit is contained in:
parent
b6d9890c74
commit
aeabb4f02b
2 changed files with 6 additions and 5 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -2883,12 +2883,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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue