From patchwork Thu Oct 2 12:53:18 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Sean_Nyekj=C3=A6r?= X-Patchwork-Id: 395941 X-Patchwork-Delegate: kiho@prevas.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id 39AB41400AB for ; Thu, 2 Oct 2014 22:53:27 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id BA78B47437 for ; Thu, 2 Oct 2014 14:53:25 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail01.prevas.se (mail01.prevas.se [62.95.78.3]) by hugin.dotsrc.org (Postfix) with ESMTPS id 585DD3FB35 for ; Thu, 2 Oct 2014 14:53:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=993; q=dns/txt; s=ironport1; t=1412254402; x=1443790402; h=from:to:subject:date:message-id:in-reply-to:references: mime-version; bh=Dt5IVYNad/gJ8HajWcjlCXmU04DSpHAZ1n594uEfiYk=; b=Aw1sMVoBAMdjdH9W3io9ewmjsTY4eh5yngc97AkRkpYlqJrMtk7rpk8L zYDPkAGXtD1ss4THhrNkI0Y4JakYYrUL485OVMhqj+YIhlg5rTMGp/hhC vUy1B08s75aXuNYwiJad+IIFUHGO7D9waor78+nqZ3WqPOwXgytEwhuGp k=; X-IronPort-AV: E=Sophos;i="5.04,638,1406584800"; d="scan'208";a="5147329" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport1.prevas.se with ESMTP/TLS/AES128-SHA; 02 Oct 2014 14:53:22 +0200 Received: from skn.prevas.se (172.16.11.28) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server (TLS) id 14.2.347.0; Thu, 2 Oct 2014 14:53:22 +0200 From: Sean Nyekjaer To: Subject: [PATCH 4/4] curl: added support for openssl Date: Thu, 2 Oct 2014 14:53:18 +0200 Message-ID: <9671556013b59ed84f926833a553ac798305449c.1412253708.git.sean.nyekjaer@prevas.dk> X-Mailer: git-send-email 2.1.2 In-Reply-To: References: MIME-Version: 1.0 X-Originating-IP: [172.16.11.28] X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org Signed-off-by: Sean Nyekjaer --- recipes/curl/curl.inc | 7 +++++++ recipes/curl/curl_7.32.0.oe | 2 ++ 2 files changed, 9 insertions(+) diff --git a/recipes/curl/curl.inc b/recipes/curl/curl.inc index 3e34a63..1b3102e 100644 --- a/recipes/curl/curl.inc +++ b/recipes/curl/curl.inc @@ -21,3 +21,10 @@ DEPENDS_${PN} = "libc libgcc" RDEPENDS_${PN} = "libc libgcc" DEPENDS_${PN}-curl = "libc libcurl" RDEPENDS_${PN}-curl = "libc libcurl" + +RECIPE_FLAGS += "curl_ssl" +DEPENDS:>USE_curl_ssl = " libssl libcrypto" +DEPENDS_${PN}:>USE_curl_ssl = " libssl libcrypto" +RDEPENDS_${PN}:>USE_curl_ssl = " libssl libcrypto" + +EXTRA_OECONF:>USE_curl_ssl += " --with-ssl" diff --git a/recipes/curl/curl_7.32.0.oe b/recipes/curl/curl_7.32.0.oe index 6b82e21..8e49e2d 100644 --- a/recipes/curl/curl_7.32.0.oe +++ b/recipes/curl/curl_7.32.0.oe @@ -1,2 +1,4 @@ require ${PN}.inc LICENSE = "MIT-X-style" + +LIBRARY_VERSION = "4"