diff options
author | jsing <> | 2024-08-11 13:05:43 +0000 |
---|---|---|
committer | jsing <> | 2024-08-11 13:05:43 +0000 |
commit | be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4 (patch) | |
tree | 29cae43f8430ebdd9bee07cc48823f7d855d4495 | |
parent | b0dd926baf4bcb43c9b178d7c252489f4434c5a8 (diff) | |
download | openbsd-be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4.tar.gz openbsd-be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4.tar.bz2 openbsd-be33cdebddbcda7d12a3d88ea90f6fa1ce95bdc4.zip |
Add include path for crypto_arch.h.
-rw-r--r-- | src/lib/libssl/Makefile | 3 | ||||
-rw-r--r-- | src/regress/lib/libcrypto/crypto/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 1100b99ce2..652ad4238f 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.84 2024/07/13 18:33:18 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.85 2024/08/11 13:04:46 jsing Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
@@ -24,6 +24,7 @@ CFLAGS+= -DTLS13_DEBUG | |||
24 | .endif | 24 | .endif |
25 | CFLAGS+= -I${.CURDIR} | 25 | CFLAGS+= -I${.CURDIR} |
26 | CFLAGS+= -I${.CURDIR}/../libcrypto | 26 | CFLAGS+= -I${.CURDIR}/../libcrypto |
27 | CFLAGS+= -I${.CURDIR}/../libcrypto/arch/${MACHINE_CPU} | ||
27 | CFLAGS+= -I${.CURDIR}/../libcrypto/hidden | 28 | CFLAGS+= -I${.CURDIR}/../libcrypto/hidden |
28 | CFLAGS+= -I${.CURDIR}/../libcrypto/bio | 29 | CFLAGS+= -I${.CURDIR}/../libcrypto/bio |
29 | CFLAGS+= -I${.CURDIR}/hidden | 30 | CFLAGS+= -I${.CURDIR}/hidden |
diff --git a/src/regress/lib/libcrypto/crypto/Makefile b/src/regress/lib/libcrypto/crypto/Makefile index 34a4e7050b..c766cd8f4a 100644 --- a/src/regress/lib/libcrypto/crypto/Makefile +++ b/src/regress/lib/libcrypto/crypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2024/04/25 14:27:29 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.2 2024/08/11 13:05:43 jsing Exp $ |
2 | 2 | ||
3 | PROG = crypto_test | 3 | PROG = crypto_test |
4 | 4 | ||
@@ -8,5 +8,6 @@ LDFLAGS+= -lcrypto | |||
8 | CFLAGS+= -DLIBRESSL_INTERNAL | 8 | CFLAGS+= -DLIBRESSL_INTERNAL |
9 | CFLAGS+= -Wall -Wundef -Werror | 9 | CFLAGS+= -Wall -Wundef -Werror |
10 | CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto | 10 | CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto |
11 | CFLAGS+= -I${.CURDIR}/../../../../lib/libcrypto/arch/${MACHINE_CPU} | ||
11 | 12 | ||
12 | .include <bsd.regress.mk> | 13 | .include <bsd.regress.mk> |