FreeBSD-specific improvements: - working WiFi geolocation [1] (can be turned off in preferences) - fix build with clang (use external libvpx) - use SysV SHM model and where possible OS_BSD, which saves some patches - no need to use ZygoteProcess switch HTML5 audio is currently broken. PR: ports/174402 [1] Submitted by: J.R. Oldroyd <fbsd@opal.com> [1] Security: http://www.vuxml.org/freebsd/46bd747b-5b84-11e2-b06d-00262d5ed8ee.html
11 lines
488 B
C++
11 lines
488 B
C++
--- content/browser/geolocation/location_provider.cc.orig 2012-07-18 10:01:25.000000000 +0300
|
|
+++ content/browser/geolocation/location_provider.cc 2012-07-25 21:04:42.000000000 +0300
|
|
@@ -56,7 +56,7 @@
|
|
}
|
|
}
|
|
|
|
-#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_WIN) && !defined OS_ANDROID
|
|
+#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_WIN) && !defined(OS_ANDROID) && !defined(OS_FREEBSD)
|
|
LocationProviderBase* NewSystemLocationProvider() {
|
|
return NULL;
|
|
}
|