From patchwork Tue Nov 28 15:23:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 842193 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ymS9l4yLVz9t16 for ; Wed, 29 Nov 2017 02:23:38 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DF86E883D1; Tue, 28 Nov 2017 15:23:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Z66lQRk9keEt; Tue, 28 Nov 2017 15:23:34 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id C15F98816A; Tue, 28 Nov 2017 15:23:33 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 990761C0485 for ; Tue, 28 Nov 2017 15:23:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 7BB968816A for ; Tue, 28 Nov 2017 15:23:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DIiFQcS5TJK9 for ; Tue, 28 Nov 2017 15:23:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by whitealder.osuosl.org (Postfix) with ESMTPS id EAEE287D6A for ; Tue, 28 Nov 2017 15:23:29 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id E99B44402AF; Tue, 28 Nov 2017 17:23:26 +0200 (IST) From: Baruch Siach To: buildroot@busybox.net Date: Tue, 28 Nov 2017 17:23:21 +0200 Message-Id: X-Mailer: git-send-email 2.15.0 Subject: [Buildroot] [PATCH] libevent: disable openssl for host X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" As host-libevent does not depend on host-openssl, it might attempt to build against the host installed openssl. This does not work very well on various hosts. Since we don't really need encryption support in host-libevent just disable openssl support. Disable build of example code as we already do for the target libevent. Should fix: http://autobuild.buildroot.net/results/403/403886e3afc6d5d18a138f4b0651f3c5a50ed064/ http://autobuild.buildroot.net/results/a2a/a2a84692049b0fb8038f1ad4b06554ecdac32e3c/ http://autobuild.buildroot.net/results/a36/a36abb1ac556a8b50e140ea1851955744b152608/ Signed-off-by: Baruch Siach --- package/libevent/libevent.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/libevent/libevent.mk b/package/libevent/libevent.mk index fc4108f6fd08..65bf1c2b7b9f 100644 --- a/package/libevent/libevent.mk +++ b/package/libevent/libevent.mk @@ -12,6 +12,7 @@ LIBEVENT_LICENSE_FILES = LICENSE # For 0001-Disable-building-test-programs.patch LIBEVENT_AUTORECONF = YES LIBEVENT_CONF_OPTS = --disable-samples +HOST_LIBEVENT_CONF_OPTS = --disable-samples --disable-openssl define LIBEVENT_REMOVE_PYSCRIPT rm $(TARGET_DIR)/usr/bin/event_rpcgen.py