diff options
| author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2025-07-30 21:05:35 +0000 |
|---|---|---|
| committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2025-07-30 21:05:35 +0000 |
| commit | 1adeafd9815f3e19aa12dc25a3fd48c2c0367aea (patch) | |
| tree | 6910b9384522534c12aa711da8717891d1266b97 | |
| parent | 13f1a03ea1f1d931d3c909c56e6d9a5b82edc1f8 (diff) | |
security/wolfssl: enable SHA224 on powerpc* to fix haproxy@wolfssl
| -rw-r--r-- | security/wolfssl/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/wolfssl/Makefile b/security/wolfssl/Makefile index 153d579d968d..d764d1571851 100644 --- a/security/wolfssl/Makefile +++ b/security/wolfssl/Makefile @@ -1,5 +1,6 @@ PORTNAME= wolfssl PORTVERSION= 5.8.2 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= https://www.wolfssl.com/ \ LOCAL/fox @@ -40,7 +41,10 @@ CONFIGURE_ARGS= --disable-dependency-tracking \ --enable-context-extra-user-data TEST_TARGET= check CFLAGS+= -DWOLFSSL_ALT_NAMES -DWOLFSSL_GETRANDOM=1 -CFLAGS_i386+= -DWOLFSSL_SHA224 +CFLAGS_i386= -DWOLFSSL_SHA224 +CFLAGS_powerpc= -DWOLFSSL_SHA224 +CFLAGS_powerpc64= -DWOLFSSL_SHA224 +CFLAGS_powerpc64le= -DWOLFSSL_SHA224 OPTIONS_DEFINE= DEBUG DOCS |
