[X2Go-Commits] [x2goclient] 193/219: src/pulsemanager.cpp: fix startup sound playback when using the system-PA version.

git-admin at x2go.org git-admin at x2go.org
Thu Sep 22 04:37:31 CEST 2016


This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch bugfix/osx
in repository x2goclient.

commit f5b4e0244375b8892abcddad463892e36bea65e4
Author: Mihai Moldovan <ionic at ionic.de>
Date:   Wed Jun 22 04:15:03 2016 +0200

    src/pulsemanager.cpp: fix startup sound playback when using the system-PA version.
---
 debian/changelog     |    2 ++
 src/pulsemanager.cpp |   14 ++++++++++----
 2 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 5e66368..6439c2e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -325,6 +325,8 @@ x2goclient (4.0.5.3-0x2go1) UNRELEASED; urgency=medium
     - src/x2goutils.h: fix compile error due to typo.
     - src/pulsemanager.cpp: fix compile error on Windows.
     - src/pulsemanager.cpp: fix startup when using the system-PA version.
+    - src/pulsemanager.cpp: fix startup sound playback when using the
+      system-PA version.
 
  -- X2Go Release Manager <git-admin at x2go.org>  Mon, 19 Sep 2016 09:07:07 +0200
 
diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp
index 9582027..e837a97 100644
--- a/src/pulsemanager.cpp
+++ b/src/pulsemanager.cpp
@@ -702,14 +702,20 @@ void PulseManager::create_client_dir () {
 void PulseManager::slot_play_startup_sound () {
   if (debug_) {
     QProcess play_file (0);
-    QString play_file_binary (app_dir_);
-    QString play_file_file (play_file_binary);
+
+    /*
+     * Assume paplay is located at the same place as
+     * the pulseaudio binary.
+     */
+    QString play_file_binary (server_working_dir_);
+
+    QString play_file_file (app_dir_);
 
 #ifdef Q_OS_DARWIN
-    play_file_binary += "/../exe/paplay";
+    play_file_binary += "/paplay";
     play_file_file += "/../Resources/startup.wav";
 #elif defined (Q_OS_WIN)
-    play_file_binary += "/pulse/paplay.exe";
+    play_file_binary += "/paplay.exe";
     play_file_file += "/startup.wav";
 #else
     /* FIXME: implement Linux section. */

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git


More information about the x2go-commits mailing list