diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-07 05:00:00 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-15 15:12:44 +0100 |
commit | 83fe2bb31363a1c169ab82f999a82f528fd4432e (patch) | |
tree | dc4d07155193103c3737438dfc5432a4a1c6ca95 /meta/recipes-support/curl | |
parent | e90cfbdc959f4dd8ff422dcd4254b63dcd1e605c (diff) | |
download | poky-83fe2bb31363a1c169ab82f999a82f528fd4432e.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: 653786096cb13560537905410e737e0dd9a9cf57)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/curl')
-rw-r--r-- | meta/recipes-support/curl/curl_7.24.0.bb | 10 |
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" | |||
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | LIC_FILES_CHKSUM = "file://COPYING;beginline=7;md5=3a34942f4ae3fbf1a303160714e664ac" | 6 | LIC_FILES_CHKSUM = "file://COPYING;beginline=7;md5=3a34942f4ae3fbf1a303160714e664ac" |
7 | 7 | ||
8 | DEPENDS = "zlib gnutls" | 8 | DEPENDS = "zlib gnutls openssl" |
9 | DEPENDS_virtclass-native = "zlib-native" | 9 | DEPENDS_virtclass-native = "zlib-native openssl-native" |
10 | DEPENDS_virtclass-nativesdk = "zlib-nativesdk" | 10 | DEPENDS_virtclass-nativesdk = "zlib-nativesdk openssl-nativesdk" |
11 | PR = "r0" | 11 | PR = "r1" |
12 | 12 | ||
13 | SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2 \ | 13 | SRC_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 | |||
20 | inherit autotools pkgconfig binconfig | 20 | inherit autotools pkgconfig binconfig |
21 | 21 | ||
22 | EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \ | 22 | EXTRA_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 \ |