From patchwork Sun Oct 5 17:38:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 396678 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 0A59B140170 for ; Mon, 6 Oct 2014 04:39:23 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 41635A1E0D; Sun, 5 Oct 2014 17:39:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id yn52UTMYne1e; Sun, 5 Oct 2014 17:39:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 03295A1E4B; Sun, 5 Oct 2014 17:39:21 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 9B1271C25C3 for ; Sun, 5 Oct 2014 17:39:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 96DF791F5C for ; Sun, 5 Oct 2014 17:39:16 +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 83n2yEUMB-IO for ; Sun, 5 Oct 2014 17:39:15 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout07.t-online.de (mailout07.t-online.de [194.25.134.83]) by whitealder.osuosl.org (Postfix) with ESMTPS id 5335391F56 for ; Sun, 5 Oct 2014 17:39:15 +0000 (UTC) Received: from fwd37.aul.t-online.de (fwd37.aul.t-online.de [172.20.27.137]) by mailout07.t-online.de (Postfix) with SMTP id B9786560E7B for ; Sun, 5 Oct 2014 19:39:13 +0200 (CEST) Received: from fli4l.lan.fli4l (ZGuskgZBQh7Rltaa0I8+NTakRAQpj-k71LMZt5lfLFD0W5nYczPI86XEMRbbYe6QCf@[79.247.128.146]) by fwd37.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1Xapm5-1sPjii0; Sun, 5 Oct 2014 19:39:13 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:45630) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.84) (envelope-from ) id 1Xapm4-0005qG-E6; Sun, 05 Oct 2014 19:39:12 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 5 Oct 2014 19:38:56 +0200 Message-Id: <1412530744-20649-9-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1412530744-20649-1-git-send-email-bernd.kuhls@t-online.de> References: <1412530744-20649-1-git-send-email-bernd.kuhls@t-online.de> X-ID: ZGuskgZBQh7Rltaa0I8+NTakRAQpj-k71LMZt5lfLFD0W5nYczPI86XEMRbbYe6QCf X-TOI-MSGID: 6e85ee5e-16d3-4382-b118-19ef5a52cdab Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v2 08/16] package/apr-util: add optional dependency to openssl X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Signed-off-by: Bernd Kuhls --- package/apr-util/apr-util.mk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/apr-util/apr-util.mk b/package/apr-util/apr-util.mk index 42506bb..ed8eb28 100644 --- a/package/apr-util/apr-util.mk +++ b/package/apr-util/apr-util.mk @@ -46,4 +46,11 @@ else APR_UTIL_CONF_OPTS += --without-sqlite3 endif +ifeq ($(BR2_PACKAGE_OPENSSL),y) +APR_UTIL_CONF_OPTS += --with-crypto --with-openssl="$(STAGING_DIR)/usr" +APR_UTIL_DEPENDENCIES += openssl +else +APR_UTIL_CONF_OPTS += --without-ssl +endif + $(eval $(autotools-package))