mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: libmesode: Disable static libraries.
* gnu/packages/messaging.scm (libmesode)[arguments]: Add --disable-static configure flag. Patch Makefile.am to make tests link correctly.
This commit is contained in:
parent
266a37285c
commit
93dc9dc333
1 changed files with 9 additions and 0 deletions
|
@ -2015,6 +2015,15 @@ (define-public libmesode
|
|||
(base32
|
||||
"1bxnkhrypgv41qyy1n545kcggmlw1hvxnhwihijhhcf2pxd2s654"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags (list "--disable-static")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-make
|
||||
(lambda _
|
||||
(substitute* "Makefile.am"
|
||||
(("'\\^xmpp_'") "'.'"))
|
||||
#t)))))
|
||||
(inputs
|
||||
`(("expat" ,expat)
|
||||
("openssl" ,openssl)))
|
||||
|
|
Loading…
Reference in a new issue