From 0be0f249eb033507d254fb8d2c267f0f1e509b8c Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Tue, 6 Oct 2020 13:49:52 +0200 Subject: [PATCH] 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 00d57f3504..8ae7c4c131 100644 --- a/gnu/packages/libevent.scm +++ b/gnu/packages/libevent.scm @@ -54,7 +54,8 @@ (define-public libevent (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