borgbackup: USE_NOEXECONLY is needed due to static linking with OpenSSL.

Move it to the top and annotate it.
This commit is contained in:
tb 2023-01-29 07:41:20 +00:00
parent 622b4fb175
commit b6f5fce745
1 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,8 @@
# Static linking with OpenSSL 1.1
.if ${MACHINE_ARCH} != aarch64 && ${MACHINE_ARCH} != amd64 && ${MACHINE_ARCH} != riscv64
USE_NOEXECONLY= Yes
.endif
MODPY_EGG_VERSION = 2.0.0b4
COMPILER_LANGS = c
@ -11,8 +16,4 @@ RUN_DEPENDS = net/py-msgpack${MODPY_FLAVOR} \
security/py-argon2-cffi${MODPY_FLAVOR}
TEST_DEPENDS = devel/py-dateutil${MODPY_FLAVOR}
.if ${MACHINE_ARCH} != aarch64 && ${MACHINE_ARCH} != amd64 && ${MACHINE_ARCH} != riscv64
USE_NOEXECONLY= Yes
.endif
.include <bsd.port.mk>