diff options
author | Koen Kooi <koen@openembedded.org> | 2007-06-01 09:09:14 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-06-01 09:09:14 +0000 |
commit | 9b6d9e3e09a4eaadd082f30b8bca4f74aad7f82e (patch) | |
tree | 21bc28ac048f32976b6224bcacd7f81e2a0cc49c | |
parent | 504a189843f1bee91d919630e672affd03f049ec (diff) |
curl: turn on tls support
-rw-r--r-- | packages/curl/curl_7.15.1.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/curl/curl_7.15.1.bb b/packages/curl/curl_7.15.1.bb index 38050a71f1..5af2dfa7e1 100644 --- a/packages/curl/curl_7.15.1.bb +++ b/packages/curl/curl_7.15.1.bb @@ -1,8 +1,8 @@ DESCRIPTION = "Command line tool and library for client-side URL transfers." LICENSE = "MIT" -DEPENDS = "zlib" +DEPENDS = "zlib gnutls" SECTION = "console/network" -PR = "r3" +PR = "r4" SRC_URI = "http://curl.haxx.se/download/curl-${PV}.tar.bz2" S = "${WORKDIR}/curl-${PV}" @@ -12,7 +12,9 @@ inherit autotools pkgconfig binconfig EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \ --without-ssl \ --with-random=/dev/urandom \ - --without-idn" + --without-idn \ + --enable-crypto-auth \ + " do_stage () { install -d ${STAGING_INCDIR}/curl |