guix_mirror_bot pushed a commit to branch mesa-updates
in repository guix.

commit 3b90bf9938011eaa22d8186b8ec3a637e3440196
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Mon Sep 29 20:40:53 2025 +0900

    gnu: bctoolbox: Update to 5.3.112 and disable mbedtls support.
    
    * gnu/packages/linphone.scm (bctoolbox): Update to 5.3.112.
    
    Change-Id: I87eceb689aeea03236ed64de7aa7f5594c57e1f0
---
 gnu/packages/linphone.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index 34693de60a..ed632fb581 100644
--- a/gnu/packages/linphone.scm
+++ b/gnu/packages/linphone.scm
@@ -125,24 +125,26 @@ writing, administering, and running unit tests in C.")
 (define-public bctoolbox
   (package
     (name "bctoolbox")
-    (version "5.3.57")
+    (version "5.3.112")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://gitlab.linphone.org/BC/public/bctoolbox.git";)
-             (commit version)))
+              (url "https://gitlab.linphone.org/BC/public/bctoolbox.git";)
+              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "178axy7gmmi6fzjbz7aaawcx0qg50i4hnn7ab6w642b02vxfr386"))))
+        (base32 "1bmn3q318wfwnpv017sa1qgffb4bm8lfhm9xaa345fpp5ws2h4an"))))
     (build-system cmake-build-system)
     (outputs '("out" "debug"))
     (arguments
      (list
-      #:configure-flags #~(list "-DBUILD_SHARED_LIBS=ON"
-                                ;; Do not use -Werror, because due to skipping
-                                ;; a test there are unused procedures.
-                                "-DENABLE_STRICT=OFF")
+      #:configure-flags
+      #~(list
+         "-DBUILD_SHARED_LIBS=ON"
+         ;; Do not use -Werror, because due to skipping
+         ;; a test there are unused procedures.
+         "-DENABLE_STRICT=OFF")
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'patch-cmake

Reply via email to