summaryrefslogtreecommitdiff
path: root/www/firefox/patches/patch-media_webrtc_trunk_webrtc_system__wrappers_source_clock.cc
diff options
context:
space:
mode:
Diffstat (limited to 'www/firefox/patches/patch-media_webrtc_trunk_webrtc_system__wrappers_source_clock.cc')
-rw-r--r--www/firefox/patches/patch-media_webrtc_trunk_webrtc_system__wrappers_source_clock.cc31
1 files changed, 0 insertions, 31 deletions
diff --git a/www/firefox/patches/patch-media_webrtc_trunk_webrtc_system__wrappers_source_clock.cc b/www/firefox/patches/patch-media_webrtc_trunk_webrtc_system__wrappers_source_clock.cc
deleted file mode 100644
index dc80266fd9a..00000000000
--- a/www/firefox/patches/patch-media_webrtc_trunk_webrtc_system__wrappers_source_clock.cc
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-media_webrtc_trunk_webrtc_system__wrappers_source_clock.cc,v 1.1 2013/12/15 13:54:37 ryoon Exp $
-
---- media/webrtc/trunk/webrtc/system_wrappers/source/clock.cc.orig 2013-12-05 16:07:50.000000000 +0000
-+++ media/webrtc/trunk/webrtc/system_wrappers/source/clock.cc
-@@ -15,7 +15,7 @@
- #include <Windows.h>
- #include <WinSock.h>
- #include <MMSystem.h>
--#elif ((defined WEBRTC_LINUX) || (defined WEBRTC_MAC))
-+#elif ((defined WEBRTC_LINUX) || (defined WEBRTC_BSD) || (defined WEBRTC_MAC))
- #include <sys/time.h>
- #include <time.h>
- #endif
-@@ -209,7 +209,7 @@ class WindowsRealTimeClock : public Real
- WindowsHelpTimer* _helpTimer;
- };
-
--#elif ((defined WEBRTC_LINUX) || (defined WEBRTC_MAC))
-+#elif ((defined WEBRTC_LINUX) || (defined WEBRTC_BSD) || (defined WEBRTC_MAC))
- class UnixRealTimeClock : public RealTimeClock {
- public:
- UnixRealTimeClock() {}
-@@ -240,7 +240,7 @@ Clock* Clock::GetRealTimeClock() {
- #if defined(_WIN32)
- static WindowsRealTimeClock clock(&global_help_timer);
- return &clock;
--#elif defined(WEBRTC_LINUX) || defined(WEBRTC_MAC)
-+#elif ((defined WEBRTC_LINUX) || (defined WEBRTC_BSD) || (defined WEBRTC_MAC))
- static UnixRealTimeClock clock;
- return &clock;
- #else