diff options
author | Beat Gaetzi <beat@FreeBSD.org> | 2014-02-19 09:25:23 +0000 |
---|---|---|
committer | Beat Gaetzi <beat@FreeBSD.org> | 2014-02-19 09:25:23 +0000 |
commit | 6140644bbaeffbeae5d0a9c59b7fb52f83162359 (patch) | |
tree | 7525a79d607872c0adb1560d9ecdb99a3eed17f3 /www/seamonkey/files/patch-bug947862 | |
parent | c67cb9911d157f56f65c86256ac6bcd67f9ab336 (diff) | |
download | ports-6140644bbaeffbeae5d0a9c59b7fb52f83162359.tar.gz ports-6140644bbaeffbeae5d0a9c59b7fb52f83162359.zip |
Notes
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 |