summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-06-07 05:00:00 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-21 11:16:41 +0100
commite20af93811a0258bb9d0eb2cf75047ab2b7dc9f6 (patch)
tree1c084529e8b1e61aa13ec5904d6e6867326a26a6 /meta
parent235667966c1dd81136c7c3a56ead94be9628005b (diff)
downloadpoky-e20af93811a0258bb9d0eb2cf75047ab2b7dc9f6.tar.gz
curl: enable ssl support
This patch enables ssl support for curl to allow git to clone from https / ssl sites. We do not want to enable gnutls for native or nativesdk, as it adds additional dependency and increase build time [YOCTO #2532] (From OE-Core rev: 9f7e9fb6cd08b3048e97dd1011f0510416beb103) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-support/curl/curl_7.24.0.bb10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-support/curl/curl_7.24.0.bb b/meta/recipes-support/curl/curl_7.24.0.bb
index 12e95c9bc0..f9dce7de12 100644
--- a/meta/recipes-support/curl/curl_7.24.0.bb
+++ b/meta/recipes-support/curl/curl_7.24.0.bb
@@ -5,10 +5,10 @@ SECTION = "console/network"
5LICENSE = "MIT" 5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://COPYING;beginline=7;md5=3a34942f4ae3fbf1a303160714e664ac" 6LIC_FILES_CHKSUM = "file://COPYING;beginline=7;md5=3a34942f4ae3fbf1a303160714e664ac"
7 7
8DEPENDS = "zlib gnutls" 8DEPENDS = "zlib gnutls openssl"
9DEPENDS_virtclass-native = "zlib-native" 9DEPENDS_virtclass-native = "zlib-native openssl-native"
10DEPENDS_virtclass-nativesdk = "zlib-nativesdk" 10DEPENDS_virtclass-nativesdk = "zlib-nativesdk openssl-nativesdk"
11PR = "r0" 11PR = "r1"
12 12
13SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2 \ 13SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2 \
14 file://noldlibpath.patch \ 14 file://noldlibpath.patch \
@@ -20,7 +20,7 @@ SRC_URI[sha256sum] = "ebdb111088ff8b0e05b1d1b075e9f1608285e8105cc51e21caacf33d01
20inherit autotools pkgconfig binconfig 20inherit autotools pkgconfig binconfig
21 21
22EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \ 22EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \
23 --without-ssl \ 23 --with-ssl \
24 --without-libssh2 \ 24 --without-libssh2 \
25 --with-random=/dev/urandom \ 25 --with-random=/dev/urandom \
26 --without-libidn \ 26 --without-libidn \