Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mumble/main.cpp')
-rw-r--r--src/mumble/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mumble/main.cpp b/src/mumble/main.cpp
index 109cbc362..0368a1a88 100644
--- a/src/mumble/main.cpp
+++ b/src/mumble/main.cpp
@@ -153,6 +153,15 @@ int main(int argc, char **argv) {
a.setOrganizationDomain(QLatin1String("mumble.sourceforge.net"));
a.setQuitOnLastWindowClosed(false);
+ #ifdef USE_SBCELT
+ {
+ // For now, force Mumble to use sbcelt-helper from the same directory as the 'mumble' executable.
+ QDir d(a.applicationDirPath());
+ QString helper = d.absoluteFilePath(QString::fromLatin1("sbcelt-helper"));
+ setenv("SBCELT_HELPER_BINARY", helper.toUtf8().constData(), 1);
+ }
+#endif
+
Global::g_global_struct = new Global();
qsrand(QDateTime::currentDateTime().toTime_t());