mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 07:57:43 +00:00
package/uacme: add openssl optional dependency
Select openssl if mbedtls or gnutls are not enabled Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
0a919e7c84
commit
9a978d4239
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_UACME
|
config BR2_PACKAGE_UACME
|
||||||
bool "uacme"
|
bool "uacme"
|
||||||
depends on BR2_USE_MMU # fork()
|
depends on BR2_USE_MMU # fork()
|
||||||
select BR2_PACKAGE_MBEDTLS if !BR2_PACKAGE_GNUTLS
|
select BR2_PACKAGE_OPENSSL if !(BR2_PACKAGE_GNUTLS || BR2_PACKAGE_MBEDTLS)
|
||||||
select BR2_PACKAGE_LIBCURL
|
select BR2_PACKAGE_LIBCURL
|
||||||
help
|
help
|
||||||
uacme is a client for the ACMEv2 protocol described in
|
uacme is a client for the ACMEv2 protocol described in
|
||||||
|
@ -21,6 +21,9 @@ UACME_DEPENDENCIES += gnutls
|
|||||||
else ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
else ifeq ($(BR2_PACKAGE_MBEDTLS),y)
|
||||||
UACME_CONF_OPTS += --with-mbedtls
|
UACME_CONF_OPTS += --with-mbedtls
|
||||||
UACME_DEPENDENCIES += mbedtls
|
UACME_DEPENDENCIES += mbedtls
|
||||||
|
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||||
|
UACME_CONF_OPTS += --with-openssl
|
||||||
|
UACME_DEPENDENCIES += openssl
|
||||||
endif
|
endif
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
$(eval $(autotools-package))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user