mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: libevent: Fix build failure.
* gnu/packages/libevent.scm (libevent)[arguments]<#:configure-flags>: Add --disable-openssl.
This commit is contained in:
parent
0585a0d0d1
commit
0be0f249eb
1 changed files with 2 additions and 1 deletions
|
@ -54,7 +54,8 @@ (define-public libevent
|
||||||
(outputs '("out" "bin"))
|
(outputs '("out" "bin"))
|
||||||
(arguments
|
(arguments
|
||||||
;; This skips some of the tests which fail on armhf and aarch64.
|
;; This skips some of the tests which fail on armhf and aarch64.
|
||||||
'(#:configure-flags '("--disable-libevent-regress")))
|
'(#:configure-flags '("--disable-libevent-regress"
|
||||||
|
"--disable-openssl")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python" ,python-wrapper))) ;for 'event_rpcgen.py'
|
`(("python" ,python-wrapper))) ;for 'event_rpcgen.py'
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue