blob: 63f3d39b4db2d4a9147e2ee4bdf692c435b51bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# $NetBSD: bio.inc,v 1.3 2023/05/06 17:07:22 christos Exp $
.PATH: ${OPENSSLSRC}/crypto/bio
BIO_SRCS += \
bf_buff.c \
bf_lbuf.c \
bf_nbio.c \
bf_null.c \
bf_prefix.c \
bf_readbuff.c \
bio_addr.c \
bio_cb.c \
bio_dump.c \
bio_err.c \
bio_lib.c \
bio_meth.c \
bio_print.c \
bio_sock.c \
bio_sock2.c \
bss_acpt.c \
bss_bio.c \
bss_conn.c \
bss_core.c \
bss_dgram.c \
bss_fd.c \
bss_file.c \
bss_log.c \
bss_mem.c \
bss_null.c \
bss_sock.c \
ossl_core_bio.c \
SRCS += ${BIO_SRCS}
.for cryptosrc in ${BIO_SRCS}
CPPFLAGS.${cryptosrc} += -I${OPENSSLSRC}/crypto/bio ${BIOCPPFLAGS}
.endfor
|