guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: libsrtp: Fix building on mips.


From: Efraim Flashner
Subject: 03/03: gnu: libsrtp: Fix building on mips.
Date: Tue, 13 Dec 2016 09:22:53 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit 310248c62118df02b5184d0a63f3186f5b11b482
Author: Efraim Flashner <address@hidden>
Date:   Tue Dec 13 10:36:50 2016 +0200

    gnu: libsrtp: Fix building on mips.
    
    * gnu/packages/telephony.scm (libsrtp)[arguments]: Add substitution
    changing variable name from 'mips' to 'mips_value'. Also substitute
    dictionary location in test suite.
---
 gnu/packages/telephony.scm |   20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm
index 6a68ece..62efcfd 100644
--- a/gnu/packages/telephony.scm
+++ b/gnu/packages/telephony.scm
@@ -218,7 +218,25 @@ internet.")
      `(("procps" ,procps)))
     (build-system gnu-build-system)
     (arguments
-     `(#:test-target "runtest"))
+     '(#:test-target "runtest"
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-mips-variable-in-testsuite
+           ;; This comes from https://github.com/cisco/libsrtp/pull/151
+           (lambda _
+             (substitute* "test/srtp_driver.c"
+               (("mips ") "mips_est ")
+               (("mips\\)") "mips_est)"))
+             #t))
+         (add-after 'unpack 'patch-dictionary-location
+           ;; With the above changes, the rtpw_test.sh test finally runs, and 
fails
+           (lambda _
+             (substitute* "test/rtpw.c"
+               (("/usr/share/dict/words")
+                (string-append (assoc-ref %build-inputs "procps")
+                               "/share/doc/procps-ng"))
+                (("words.txt") "FAQ"))
+             #t)))))
     (synopsis "Secure RTP (SRTP) Reference Implementation")
     (description "This package provides an implementation of the Secure
 Real-time Transport Protocol (SRTP), the Universal Security Transform (UST),



reply via email to

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