summaryrefslogtreecommitdiff
path: root/indra/media_plugins/webkit
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-09-09 14:27:48 -0700
committerMerov Linden <merov@lindenlab.com>2013-09-09 14:27:48 -0700
commit094a226fd8027405dd220dbc25951a3b70c9fa67 (patch)
treefe782e520a8a40c531080281b509b28cf8feec68 /indra/media_plugins/webkit
parenteaf287cc20efbad97fba17a65efd57eeba0f7278 (diff)
parent55ae6a7962cdc9a9d7d087fbc529d30db9c37013 (diff)
Pull from lindenlab/viewer-release
Diffstat (limited to 'indra/media_plugins/webkit')
-rwxr-xr-xindra/media_plugins/webkit/mac_volume_catcher.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/media_plugins/webkit/mac_volume_catcher.cpp b/indra/media_plugins/webkit/mac_volume_catcher.cpp
index 8a06bb8487..cc94556413 100755
--- a/indra/media_plugins/webkit/mac_volume_catcher.cpp
+++ b/indra/media_plugins/webkit/mac_volume_catcher.cpp
@@ -35,10 +35,13 @@
#include "volume_catcher.h"
-#include <Carbon/Carbon.h>
#include <QuickTime/QuickTime.h>
#include <AudioUnit/AudioUnit.h>
+#if LL_DARWIN
+#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#endif
+
struct VolumeCatcherStorage;
class VolumeCatcherImpl
@@ -266,3 +269,6 @@ void VolumeCatcher::pump()
// No periodic tasks are necessary for this implementation.
}
+#if LL_DARWIN
+#pragma GCC diagnostic warning "-Wdeprecated-declarations"
+#endif