Merge pull request #97 from night1rider/dnf_bug_curl
Add newer syntax version of curl append and fix host tool DNF dependanciespull/100/head
commit
ae1c1cf1aa
|
@ -78,8 +78,14 @@ BBFILES += "${@bb.utils.contains('IMAGE_INSTALL', \
|
|||
# Uncomment if building bind with wolfSSL.
|
||||
#BBFILES += "${LAYERDIR}/recipes-connectivity/bind/*.bbappend"
|
||||
|
||||
# Uncomment if building curl with wolfSSL.
|
||||
#BBFILES += "${LAYERDIR}/recipes-support/curl/*.bbappend"
|
||||
# Uncomment if building any curl with wolfSSL.
|
||||
#BBFILES += "${LAYERDIR}/recipes-support/curl/wolfssl_%.bbappend"
|
||||
# Uncomment if building curl 7.82.0 with wolfSSL (Kirkstone or Newer Syntax).
|
||||
#BBFILES += "${LAYERDIR}/recipes-support/curl/kirkstone/curl_7.82.0.bbappend"
|
||||
# Uncomment if building curl 7.82.0 with wolfSSL (Legacy Syntax).
|
||||
#BBFILES += "${LAYERDIR}/recipes-support/curl/curl_7.82.0.bbappend"
|
||||
# Uncomment if building any other version of curl with wolfSSL.
|
||||
#BBFILES += "${LAYERDIR}/recipes-support/curl/curl_%.bbappend"
|
||||
|
||||
# Uncomment if building libssh2 with wolfSSL.
|
||||
#BBFILES += "${LAYERDIR}/recipes-support/libssh2/*.bbappend"
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
PACKAGECONFIG:remove:class-target = "openssl"
|
||||
DEPENDS:class-target += "wolfssl"
|
||||
EXTRA_OECONF:class-target += "--with-wolfssl=${STAGING_DIR_HOST}${prefix} \
|
||||
--with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \
|
||||
"
|
||||
CPPFLAGS:class-target += "-I${STAGING_DIR_HOST}${prefix}/include/wolfssl"
|
||||
|
||||
# Uncomment the line below if you're targeting FIPS compliance. NTLM uses MD5,
|
||||
# which isn't a FIPS-approved algorithm.
|
||||
# EXTRA_OECONF:class-target += "--disable-ntlm"
|
Loading…
Reference in New Issue