mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: cl-prevalence: Fix build with cl-usocket-0.8.8.
* gnu/packages/lisp-xyz.scm (sbcl-cl-prevalence)[arguments]: Add 'fix-build-with-usocket-bt2' phase. Change-Id: I7becd7ee92795f2aebc7d9caaf603ccb7f5f9dff
This commit is contained in:
parent
c0a223c7c2
commit
38094ff166
1 changed files with 9 additions and 0 deletions
|
@ -8223,6 +8223,15 @@ (define-public sbcl-cl-prevalence
|
|||
(list sbcl-moptilities sbcl-s-sysdeps sbcl-s-xml))
|
||||
(native-inputs
|
||||
(list sbcl-fiveam sbcl-find-port))
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-build-with-usocket-bt2
|
||||
(lambda _
|
||||
;; See https://github.com/40ants/cl-prevalence/pull/27
|
||||
(substitute* "src/master-slave.lisp"
|
||||
(("stop-process \\(bt:thread-name server-thread\\)")
|
||||
"stop-process (bt2:thread-name server-thread)")))))))
|
||||
(synopsis "Implementation of object prevalence for Common Lisp")
|
||||
(description "This Common Lisp library implements object prevalence (see
|
||||
@url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
|
||||
|
|
Loading…
Reference in a new issue