diff options
| author | Robert Clausecker <fuz@FreeBSD.org> | 2026-07-06 12:46:03 +0000 |
|---|---|---|
| committer | Robert Clausecker <fuz@FreeBSD.org> | 2026-07-08 08:49:11 +0000 |
| commit | 8ec8b8f9da420a665638cf3a223994cf19182f78 (patch) | |
| tree | 82c38fa6a78e8b39a72c33312bac3ac83b4a35e2 | |
| parent | 9cf9f6909d2fdecb965fd3119b806879f268dd82 (diff) | |
security/wolfssl: fix plist on armv7 and powerpc*
Same issue as on i386.
Two unit tests fail on armv7:
- scripts/ocsp-stapling.test
- scripts/ocsp-stapling2.test
This should be investigated.
Approved by: portmgr (build fix blanket)
See also: 950f31c9087e918db84b2a97164c12bf7bf0416d
| -rw-r--r-- | security/wolfssl/Makefile | 6 | ||||
| -rw-r--r-- | security/wolfssl/pkg-plist | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/security/wolfssl/Makefile b/security/wolfssl/Makefile index c080a79303a2..ffe9e3227c19 100644 --- a/security/wolfssl/Makefile +++ b/security/wolfssl/Makefile @@ -58,10 +58,10 @@ DEBUG_CONFIGURE_ON= --enable-debug .include <bsd.port.options.mk> -.if "${ARCH}" == "i386" -PLIST_SUB+= NOTI386="@comment " +.if "${ARCH}" == "i386" || ${ARCH:Marmv?} || ${ARCH:Mpowerpc*} +PLIST_SUB+= SP_H="@comment " .else -PLIST_SUB+= NOTI386="" +PLIST_SUB+= SP_H="" .endif post-configure: diff --git a/security/wolfssl/pkg-plist b/security/wolfssl/pkg-plist index 861362166cb3..23fbf47009b8 100644 --- a/security/wolfssl/pkg-plist +++ b/security/wolfssl/pkg-plist @@ -139,7 +139,7 @@ include/wolfssl/wolfcrypt/siphash.h include/wolfssl/wolfcrypt/sm2.h include/wolfssl/wolfcrypt/sm3.h include/wolfssl/wolfcrypt/sm4.h -%%NOTI386%%include/wolfssl/wolfcrypt/sp.h +%%SP_H%%include/wolfssl/wolfcrypt/sp.h include/wolfssl/wolfcrypt/sp_int.h include/wolfssl/wolfcrypt/srp.h include/wolfssl/wolfcrypt/tfm.h |
