mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: libstrophe: Disable static libraries.
* gnu/packages/messaging.scm (libstrope)[arguments]: Add --disable-static configure flag. Patch Makefile.am to make tests link correctly. Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at> libstrophe oneline
This commit is contained in:
parent
22f303d70b
commit
1be08b1e01
1 changed files with 9 additions and 0 deletions
|
@ -2054,6 +2054,15 @@ (define-public libstrophe
|
|||
(sha256
|
||||
(base32 "11d341avsfr0z4lq15cy5dkmff6qpy91wkgzdpfdy31l27pa1g79"))))
|
||||
(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