guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: linphone-desktop: Fix linphone accounts func


From: guix-commits
Subject: branch master updated: gnu: linphone-desktop: Fix linphone accounts functionality.
Date: Mon, 29 Mar 2021 16:47:54 -0400

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

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6aaa826  gnu: linphone-desktop: Fix linphone accounts functionality.
6aaa826 is described below

commit 6aaa8269b82d50e43405847a479ffaeb0b569fa5
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Mon Mar 29 03:19:09 2021 -0400

    gnu: linphone-desktop: Fix linphone accounts functionality.
    
    The Linphone accounts were not able to do TLS authentication against the
    Linphone servers, and multiple plugins used by the Linphone accounts were 
not
    loaded.  This change should fix this.
    
    * gnu/packages/linphone.scm (linphone-desktop)[phases](post-install): 
Modify phase.
    
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/linphone.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 2107560..deda49a 100644
--- a/gnu/packages/linphone.scm
+++ b/gnu/packages/linphone.scm
@@ -839,10 +839,14 @@ and video calls or instant messaging capabilities to an 
application.")
                ;; Remove unnecessary Qt configuration file.
                (delete-file (string-append out "/bin/qt.conf"))
                ;; Not using the FHS exposes an issue where the client
-               ;; refers to its own "share" directory, which lacks files
+               ;; refers to its own directories, which lacks files
                ;; installed by the dependencies.
+               (symlink (string-append liblinphone "/lib")
+                        (string-append out "/lib"))
                (symlink (string-append liblinphone "/share/sounds")
                         (string-append out "/share/sounds"))
+               (symlink (string-append liblinphone 
"/share/linphone/rootca.pem")
+                        (string-append out "/share/linphone/rootca.pem"))
                (mkdir-p (dirname grammar-dest))
                (symlink (string-append liblinphone "/share/belr/grammars")
                         grammar-dest)))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]