diff options
Diffstat (limited to 'www/seamonkey/files/patch-bug947862')
-rw-r--r-- | www/seamonkey/files/patch-bug947862 | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/www/seamonkey/files/patch-bug947862 b/www/seamonkey/files/patch-bug947862 deleted file mode 100644 index 3dcb47036a2f..000000000000 --- a/www/seamonkey/files/patch-bug947862 +++ /dev/null @@ -1,31 +0,0 @@ -diff --git media/webrtc/trunk/webrtc/system_wrappers/source/clock.cc media/webrtc/trunk/webrtc/system_wrappers/source/clock.cc -index 7ef6c66..6ae1e97 100644 ---- mozilla/media/webrtc/trunk/webrtc/system_wrappers/source/clock.cc -+++ mozilla/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 RealTimeClock { - 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 |