563f586e9a
flickcurl does not specifically need openssl: it needs libcurl to have crypto support to access https:// URLs. So, instead of depending on openssl in FLICKCURL_DEPENDENCIES, this commit simply leaves it to the Config.in file to select either OpenSSL, gnutls or libnss to make sure libcurl will use one of these libraries. Reported-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
718 B
Plaintext
22 lines
718 B
Plaintext
config BR2_PACKAGE_FLICKCURL
|
|
bool "flickcurl"
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBXML2
|
|
# Ensure that libcurl is built with crypto support, since
|
|
# flickcurl must access https:// URLs.
|
|
select BR2_PACKAGE_OPENSSL if !(BR2_PACKAGE_GNUTLS || BR2_PACKAGE_LIBNSS)
|
|
select BR2_PACKAGE_CA_CERTIFICATES # runtime
|
|
help
|
|
Flickcurl is a C library for the Flickr API, handling
|
|
creating the requests, signing, token management, calling
|
|
the API, marshalling request parameters and decoding
|
|
responses.
|
|
|
|
http://librdf.org/flickcurl/
|
|
|
|
config BR2_PACKAGE_FLICKCURL_UTILS
|
|
bool "flickcurl utilities"
|
|
depends on BR2_PACKAGE_FLICKCURL
|
|
help
|
|
Install flickcurl utilites (flickcurl + flickrdf) to target.
|