diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2018-02-15 22:35:36 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-02-15 22:35:36 +0100 |
commit | 5e66d15646f886fed08c2bd59b06bc55bdecd38d (patch) | |
tree | 4e5db8b9078d878600584ccae7f2fa78f4841312 /package/libcpprestsdk | |
parent | cbd12ed37ea2d84a21cef8a9ec55889b287ceab4 (diff) | |
download | buildroot-5e66d15646f886fed08c2bd59b06bc55bdecd38d.tar.gz buildroot-5e66d15646f886fed08c2bd59b06bc55bdecd38d.zip |
libcpprestsdk: needs host-pkgconf
Commit d2f0a9bba400 (libcpprestsdk: fix building as a static library)
changed libcpprestsdk to use pkg-config to find the linker flags for
openssl, so ensure it is available.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libcpprestsdk')
-rw-r--r-- | package/libcpprestsdk/libcpprestsdk.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libcpprestsdk/libcpprestsdk.mk b/package/libcpprestsdk/libcpprestsdk.mk index 4aafa6e593..4d30f07c39 100644 --- a/package/libcpprestsdk/libcpprestsdk.mk +++ b/package/libcpprestsdk/libcpprestsdk.mk @@ -9,7 +9,7 @@ LIBCPPRESTSDK_SITE = $(call github,Microsoft,cpprestsdk,$(LIBCPPRESTSDK_VERSION) LIBCPPRESTSDK_LICENSE = MIT LIBCPPRESTSDK_LICENSE_FILES = license.txt LIBCPPRESTSDK_SUBDIR = Release -LIBCPPRESTSDK_DEPENDENCIES += boost openssl zlib +LIBCPPRESTSDK_DEPENDENCIES += host-pkgconf boost openssl zlib LIBCPPRESTSDK_CONF_OPTS = -DWERROR=OFF $(eval $(cmake-package)) |