From 03225be04a0c271ffa680f286e69bec5e1831a07 Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 20 Jan 2023 20:59:16 +0000 Subject: [PATCH] sslscan: stop using USE_NOEXECONLY on amd64, bump after openssl 1.1 changes (static linking) --- security/sslscan/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security/sslscan/Makefile b/security/sslscan/Makefile index 2afc2e3e093..7f94ad55a6e 100755 --- a/security/sslscan/Makefile +++ b/security/sslscan/Makefile @@ -1,13 +1,13 @@ COMMENT= SSL/TLS scanner (identify version, ciphers, etc) -.if ${MACHINE_ARCH} != aarch64 && ${MACHINE_ARCH} != riscv64 +.if ${MACHINE_ARCH} != aarch64 && ${MACHINE_ARCH} != amd64 && ${MACHINE_ARCH} != riscv64 USE_NOEXECONLY= Yes .endif GH_ACCOUNT= rbsec GH_PROJECT= sslscan GH_TAGNAME= 2.0.15 -REVISION= 6 +REVISION= 7 CATEGORIES= security net