diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-04-28 22:34:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-28 09:44:06 +0100 |
commit | 6182fc36aebdf4f418e00126f684aa563334f5f3 (patch) | |
tree | 30781450a217a221597b240e0bf1509d80d5ccf9 | |
parent | 1901d6b02c38f0f54fe78111fb1b1110e586dd06 (diff) | |
download | poky-6182fc36aebdf4f418e00126f684aa563334f5f3.tar.gz |
curl: Fix wrong assumption about sizeof off_t on largefile systems
This issue was reported on poky ml as well see
https://lists.yoctoproject.org/pipermail/poky/2013-December/009435.html
Change-Id: Iedf22467889893111fde0433e411fd0546a38546
(From OE-Core rev: 3c58712465494e441c4036a7cf21d2e6d343efab)
(From OE-Core rev: 49c848018484827c433e1bcf9c63416640456f3e)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/curl/curl_7.40.0.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-support/curl/curl_7.40.0.bb b/meta/recipes-support/curl/curl_7.40.0.bb index 2b39d11411..e6a6a42ea1 100644 --- a/meta/recipes-support/curl/curl_7.40.0.bb +++ b/meta/recipes-support/curl/curl_7.40.0.bb | |||
@@ -41,6 +41,9 @@ EXTRA_OECONF = "--without-libidn \ | |||
41 | --disable-ldaps \ | 41 | --disable-ldaps \ |
42 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ | 42 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ |
43 | " | 43 | " |
44 | # see https://lists.yoctoproject.org/pipermail/poky/2013-December/009435.html | ||
45 | # We should ideally drop ac_cv_sizeof_off_t from site files but until then | ||
46 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'ac_cv_sizeof_off_t=8', '', d)}" | ||
44 | 47 | ||
45 | do_install_append() { | 48 | do_install_append() { |
46 | oe_multilib_header curl/curlbuild.h | 49 | oe_multilib_header curl/curlbuild.h |