diff options
author | Adam Moss <moss@lindenlab.com> | 2009-03-09 23:42:07 +0000 |
---|---|---|
committer | Adam Moss <moss@lindenlab.com> | 2009-03-09 23:42:07 +0000 |
commit | 7573288ab3ede23f97bff2f5caefcb622e7e9842 (patch) | |
tree | 1429e7d758e282e123d31a21246603d0b9814273 /indra/newview/llappviewerlinux.cpp | |
parent | 2d60d45aead0b49787fb8ad8b5a03614fe17c170 (diff) |
svn merge -r113780:113785
svn+ssh://svn.lindenlab.com/svn/linden/branches/moss/gst3-t113732
QAR-1333 linux gstreamer compatibility improvements and ADD_BUILD_TEST
improvements - combo merge
Diffstat (limited to 'indra/newview/llappviewerlinux.cpp')
-rw-r--r-- | indra/newview/llappviewerlinux.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llappviewerlinux.cpp b/indra/newview/llappviewerlinux.cpp index 0778503a92..8b81478eaf 100644 --- a/indra/newview/llappviewerlinux.cpp +++ b/indra/newview/llappviewerlinux.cpp @@ -332,6 +332,12 @@ LLAppViewerLinux::~LLAppViewerLinux() bool LLAppViewerLinux::init() { + // g_thread_init() must be called before *any* use of glib, *and* + // before any mutexes are held, *and* some of our third-party + // libraries likes to use glib functions; in short, do this here + // really early in app startup! + if (!g_thread_supported ()) g_thread_init (NULL); + return LLAppViewer::init(); } |