Mirror of https://github.com/reyk/cloud-agent
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
417 B
17 lines
417 B
# |
|
# The Azure agents needs CMS to obtain the SSH public keys. |
|
# LibreSSL has removed CMS, so either use OpenSSL to decrypt CMS |
|
# messages or compile the old CMS code for LibreSSL. Or use |
|
# CMS that has returned to newer versions of LibreSSL. |
|
# |
|
.ifdef USE_OPENSSL |
|
MAKE_FLAGS+= USE_OPENSSL=1 |
|
.elifdef USE_LIBRESSL_CMS |
|
MAKE_FLAGS+= USE_LIBRESSL_CMS=1 |
|
.else |
|
SUBDIR= cms |
|
.endif |
|
|
|
SUBDIR+= agent |
|
|
|
.include <bsd.subdir.mk>
|
|
|