[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch core-updates updated: gnu: libevent: Fix build failure.
From: |
guix-commits |
Subject: |
branch core-updates updated: gnu: libevent: Fix build failure. |
Date: |
Tue, 06 Oct 2020 07:52:12 -0400 |
This is an automated email from the git hooks/post-receive script.
dannym pushed a commit to branch core-updates
in repository guix.
The following commit(s) were added to refs/heads/core-updates by this push:
new 0be0f24 gnu: libevent: Fix build failure.
0be0f24 is described below
commit 0be0f249eb033507d254fb8d2c267f0f1e509b8c
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Tue Oct 6 13:49:52 2020 +0200
gnu: libevent: Fix build failure.
* gnu/packages/libevent.scm (libevent)[arguments]<#:configure-flags>:
Add --disable-openssl.
---
gnu/packages/libevent.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm
index 00d57f3..8ae7c4c 100644
--- a/gnu/packages/libevent.scm
+++ b/gnu/packages/libevent.scm
@@ -54,7 +54,8 @@
(outputs '("out" "bin"))
(arguments
;; 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
`(("python" ,python-wrapper))) ;for 'event_rpcgen.py'
(native-inputs
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch core-updates updated: gnu: libevent: Fix build failure.,
guix-commits <=