diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2025-07-04 15:13:45 +0200 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2025-07-04 23:58:53 +0200 |
commit | a68b41f3a80ff4a809ce07c585e09830079fbb78 (patch) | |
tree | a5f370b8d7925e8f1fd7c23e2868cc7cdabedad1 /security | |
parent | net/ntpd-rs: fix build on powerpc64le (diff) |
security/liboqs: enable BIKE on powerpc64le
Diffstat (limited to 'security')
-rw-r--r-- | security/liboqs/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/liboqs/Makefile b/security/liboqs/Makefile index dd3ff28871c0..2a53bfa1bb1b 100644 --- a/security/liboqs/Makefile +++ b/security/liboqs/Makefile @@ -1,5 +1,6 @@ PORTNAME= liboqs DISTVERSION= 0.13.0 +PORTREVISION= 1 CATEGORIES= security MAINTAINER= yuri@FreeBSD.org @@ -31,7 +32,7 @@ BINARY_ALIAS= python3=${PYTHON_CMD} .include <bsd.port.options.mk> -.if ${ARCH} == amd64 || ${ARCH} == aarch64 || ${ARCH} == risc64 +.if ${ARCH} == amd64 || ${ARCH} == aarch64 || ${ARCH} == risc64 || ${ARCH} == powerpc64le PLIST_SUB+= KEM_BIKE="" # BIKE algorithm is limited by architecture in .CMake/alg_support.cmake .else PLIST_SUB+= KEM_BIKE="@comment " |