diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2024-08-11 13:05:44 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2024-08-11 13:05:44 +0000 |
commit | 47ae1e7bb0aab55d429ff5b6cc2442521544ea33 (patch) | |
tree | dfc7cfa1dc832ad52fc949d7596199d5eb6da5cf /lib | |
parent | f347e0394ef9e6153f92127138420f724e2676e3 (diff) |
Add include path for crypto_arch.h.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/Makefile b/lib/libssl/Makefile index 1100b99ce28..652ad4238f9 100644 --- a/lib/libssl/Makefile +++ b/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.84 2024/07/13 18:33:18 tb Exp $ +# $OpenBSD: Makefile,v 1.85 2024/08/11 13:04:46 jsing Exp $ .include <bsd.own.mk> .ifndef NOMAN @@ -24,6 +24,7 @@ CFLAGS+= -DTLS13_DEBUG .endif CFLAGS+= -I${.CURDIR} CFLAGS+= -I${.CURDIR}/../libcrypto +CFLAGS+= -I${.CURDIR}/../libcrypto/arch/${MACHINE_CPU} CFLAGS+= -I${.CURDIR}/../libcrypto/hidden CFLAGS+= -I${.CURDIR}/../libcrypto/bio CFLAGS+= -I${.CURDIR}/hidden |