diff options
-rw-r--r-- | meta/recipes-support/curl/curl_7.47.1.bb | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/meta/recipes-support/curl/curl_7.47.1.bb b/meta/recipes-support/curl/curl_7.47.1.bb index 210147c4c8..0872dbee55 100644 --- a/meta/recipes-support/curl/curl_7.47.1.bb +++ b/meta/recipes-support/curl/curl_7.47.1.bb | |||
@@ -21,20 +21,34 @@ PACKAGECONFIG ??= "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d | |||
21 | PACKAGECONFIG_class-native = "ipv6 ssl zlib" | 21 | PACKAGECONFIG_class-native = "ipv6 ssl zlib" |
22 | PACKAGECONFIG_class-nativesdk = "ipv6 ssl zlib" | 22 | PACKAGECONFIG_class-nativesdk = "ipv6 ssl zlib" |
23 | 23 | ||
24 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | 24 | PACKAGECONFIG[dict] = "--enable-dict,--disable-dict," |
25 | PACKAGECONFIG[ssl] = "--with-ssl --with-random=/dev/urandom,--without-ssl,openssl" | ||
26 | PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls" | 25 | PACKAGECONFIG[gnutls] = "--with-gnutls,--without-gnutls,gnutls" |
27 | PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_LIBDIR}/../,--without-zlib,zlib" | 26 | PACKAGECONFIG[gopher] = "--enable-gopher,--disable-gopher," |
28 | PACKAGECONFIG[rtmpdump] = "--with-librtmp,--without-librtmp,rtmpdump" | 27 | PACKAGECONFIG[imap] = "--enable-imap,--disable-imap," |
28 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | ||
29 | PACKAGECONFIG[ldap] = "--enable-ldap,--disable-ldap," | ||
30 | PACKAGECONFIG[ldaps] = "--enable-ldaps,--disable-ldaps," | ||
31 | PACKAGECONFIG[libidn] = "--with-libidn,--without-libidn,libidn" | ||
29 | PACKAGECONFIG[libssh2] = "--with-libssh2,--without-libssh2,libssh2" | 32 | PACKAGECONFIG[libssh2] = "--with-libssh2,--without-libssh2,libssh2" |
33 | PACKAGECONFIG[pop3] = "--enable-pop3,--disable-pop3," | ||
34 | PACKAGECONFIG[proxy] = "--enable-proxy,--disable-proxy," | ||
35 | PACKAGECONFIG[rtmpdump] = "--with-librtmp,--without-librtmp,rtmpdump" | ||
36 | PACKAGECONFIG[rtsp] = "--enable-rtsp,--disable-rtsp," | ||
30 | PACKAGECONFIG[smb] = "--enable-smb,--disable-smb," | 37 | PACKAGECONFIG[smb] = "--enable-smb,--disable-smb," |
38 | PACKAGECONFIG[smtp] = "--enable-smtp,--disable-smtp," | ||
39 | PACKAGECONFIG[ssl] = "--with-ssl --with-random=/dev/urandom,--without-ssl,openssl" | ||
40 | PACKAGECONFIG[telnet] = "--enable-telnet,--disable-telnet," | ||
41 | PACKAGECONFIG[tftp] = "--enable-tftp,--disable-tftp," | ||
42 | PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_LIBDIR}/../,--without-zlib,zlib" | ||
31 | 43 | ||
32 | EXTRA_OECONF = "--without-libidn \ | 44 | EXTRA_OECONF = " \ |
33 | --enable-crypto-auth \ | 45 | --enable-crypto-auth \ |
34 | --disable-ldap \ | 46 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ |
35 | --disable-ldaps \ | 47 | --without-libmetalink \ |
36 | --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ | 48 | --without-libpsl \ |
49 | --without-nghttp2 \ | ||
37 | " | 50 | " |
51 | |||
38 | # see https://lists.yoctoproject.org/pipermail/poky/2013-December/009435.html | 52 | # see https://lists.yoctoproject.org/pipermail/poky/2013-December/009435.html |
39 | # We should ideally drop ac_cv_sizeof_off_t from site files but until then | 53 | # We should ideally drop ac_cv_sizeof_off_t from site files but until then |
40 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'ac_cv_sizeof_off_t=8', '', d)}" | 54 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'ac_cv_sizeof_off_t=8', '', d)}" |