diff options
| author | riastradh <riastradh@NetBSD.org> | 2023-05-27 00:08:30 +0000 |
|---|---|---|
| committer | riastradh <riastradh@NetBSD.org> | 2023-05-27 00:08:30 +0000 |
| commit | ca4e7e4cc0edc6754180e6de846ad4595d8ae6af (patch) | |
| tree | f3c8704760cf9c8cae0a4ec051f3f91dd1ad3cb6 /crypto | |
| parent | 6e181133f56a608ca7fcfd71c13838f52c25451b (diff) | |
openssl: padlock.so engine for VIA CPUs makes sense only on x86.
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/external/bsd/openssl/lib/engines/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/crypto/external/bsd/openssl/lib/engines/Makefile b/crypto/external/bsd/openssl/lib/engines/Makefile index 71136b37112..a2decfd2489 100644 --- a/crypto/external/bsd/openssl/lib/engines/Makefile +++ b/crypto/external/bsd/openssl/lib/engines/Makefile @@ -1,8 +1,13 @@ -# $NetBSD: Makefile,v 1.4 2023/05/26 22:26:10 riastradh Exp $ +# $NetBSD: Makefile,v 1.5 2023/05/27 00:08:30 riastradh Exp $ .include "bsd.own.mk" # OpenSSL engines. -SUBDIR= capi dasync devcrypto loader_attic ossltest padlock +SUBDIR= capi dasync devcrypto loader_attic ossltest + +# VIA Padlock -- only makes sense for x86 which might be a VIA CPU +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" +SUBDIR+=padlock +.endif .include <bsd.subdir.mk> |
