04889d6418
* On NetBSD WebRTC support is disabled, because libxul.so has some errors in link stage. WebRTC support should be tested on non-NetBSD platforms. * It seems that OSS sound support is not working properly on NetBSD. Changelog: NEW WebRTC is now enabled by default! NEW Windows: Firefox now follows display scaling options to render text larger on high-res displays NEW Mac OS X: Download progress in Dock application icon NEW HTML5 audio/video playback rate can now be changed NEW Social services management implemented in Add-ons Manager NEW asm.js optimizations (OdinMonkey) enabled for major performance improvements CHANGED Improved WebGL rendering performance through asynchronous canvas updates CHANGED Plain text files displayed within Firefox will now word-wrap CHANGED For user security, the |Components| object is no longer accessible from web content CHANGED Pointer Lock API can now be used outside of fullscreen DEVELOPER CSS3 Flexbox implemented and enabled by default DEVELOPER New Web Notifications API implemented DEVELOPER Added clipboardData API for JavaScript access to a user's clipboard DEVELOPER New built-in font inspector HTML5 New HTML5 <data> and <time> elements FIXED Various security fixes FIXED Scrolling using some high-resolution-scroll aware touchpads feels slow (829952) Fixed in Firefox 22 MFSA 2013-62 Inaccessible updater can lead to local privilege escalation MFSA 2013-61 Homograph domain spoofing in .com, .net and .name MFSA 2013-60 getUserMedia permission dialog incorrectly displays location MFSA 2013-59 XrayWrappers can be bypassed to run user defined methods in a privileged context MFSA 2013-58 X-Frame-Options ignored when using server push with multi-part responses MFSA 2013-57 Sandbox restrictions not applied to nested frame elements MFSA 2013-56 PreserveWrapper has inconsistent behavior MFSA 2013-55 SVG filters can lead to information disclosure MFSA 2013-54 Data in the body of XHR HEAD requests leads to CSRF attacks MFSA 2013-53 Execution of unmapped memory through onreadystatechange event MFSA 2013-52 Arbitrary code execution within Profiler MFSA 2013-51 Privileged content access and execution via XBL MFSA 2013-50 Memory corruption found using Address Sanitizer MFSA 2013-49 Miscellaneous memory safety hazards (rv:22.0 / rv:17.0.7)
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
$NetBSD: patch-media_webrtc_trunk_webrtc_build_common.gypi,v 1.2 2013/06/26 11:32:12 ryoon Exp $
|
|
|
|
--- media/webrtc/trunk/webrtc/build/common.gypi.orig 2013-06-17 22:13:20.000000000 +0000
|
|
+++ media/webrtc/trunk/webrtc/build/common.gypi
|
|
@@ -71,9 +71,9 @@
|
|
'enable_data_logging%': 0,
|
|
|
|
# Disable these to not build components which can be externally provided.
|
|
- 'build_libjpeg%': 1,
|
|
+ 'build_libjpeg%': 0,
|
|
'build_libyuv%': 1,
|
|
- 'build_libvpx%': 1,
|
|
+ 'build_libvpx%': 0,
|
|
|
|
# Enable to use the Mozilla internal settings.
|
|
'build_with_mozilla%': 0,
|
|
@@ -124,6 +124,11 @@
|
|
# and Java Implementation
|
|
'enable_android_opensl%': 0,
|
|
}],
|
|
+ ['OS=="linux" or OS=="solaris" or os_bsd==1', {
|
|
+ 'include_v4l2_video_capture%': 1,
|
|
+ }, {
|
|
+ 'include_v4l2_video_capture%': 0,
|
|
+ }],
|
|
['OS=="ios"', {
|
|
'enable_video%': 0,
|
|
'enable_protobuf%': 0,
|
|
@@ -215,6 +220,18 @@
|
|
}],
|
|
],
|
|
}],
|
|
+ ['os_bsd==1', {
|
|
+ 'defines': [
|
|
+ 'WEBRTC_BSD',
|
|
+ 'WEBRTC_THREAD_RR',
|
|
+ ],
|
|
+ }],
|
|
+ ['OS=="dragonfly" or OS=="netbsd"', {
|
|
+ 'defines': [
|
|
+ # doesn't support pthread_condattr_setclock
|
|
+ 'WEBRTC_CLOCK_TYPE_REALTIME',
|
|
+ ],
|
|
+ }],
|
|
['OS=="ios"', {
|
|
'defines': [
|
|
'WEBRTC_MAC',
|