diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-04-28 22:34:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-30 23:04:15 +0100 |
commit | 8ca6988e93fb7437a3200523df292eb982513cf9 (patch) | |
tree | 9c26380def19e6f1e3eda77f4b9289bcf8fd3a84 | |
parent | aa389373d8b36bbb8baa82e7c1fce060ac3f00fb (diff) | |
download | poky-8ca6988e93fb7437a3200523df292eb982513cf9.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)
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.42.0.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-support/curl/curl_7.42.0.bb b/meta/recipes-support/curl/curl_7.42.0.bb index d4445ff8d4..228bdb23af 100644 --- a/meta/recipes-support/curl/curl_7.42.0.bb +++ b/meta/recipes-support/curl/curl_7.42.0.bb | |||
@@ -37,6 +37,9 @@ EXTRA_OECONF = "--without-libidn \ | |||
37 | --disable-ldaps \ | 37 | --disable-ldaps \ |
38 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ | 38 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ |
39 | " | 39 | " |
40 | # see https://lists.yoctoproject.org/pipermail/poky/2013-December/009435.html | ||
41 | # We should ideally drop ac_cv_sizeof_off_t from site files but until then | ||
42 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'ac_cv_sizeof_off_t=8', '', d)}" | ||
40 | 43 | ||
41 | do_install_append() { | 44 | do_install_append() { |
42 | oe_multilib_header curl/curlbuild.h | 45 | oe_multilib_header curl/curlbuild.h |