mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 10:20:24 -05:00
OpenSSL 3 supports a modular architecture, allowing different providers to bring specific implementations of cryptographical algorithms. This change adds mandatory source files to every provider. Sponsored by: The FreeBSD Foundation Pull Request: https://github.com/freebsd/freebsd-src/pull/787
19 lines
407 B
Makefile
19 lines
407 B
Makefile
# $FreeBSD$
|
|
|
|
SHLIBDIR= ${LIBDIR}/ossl-modules
|
|
|
|
LCRYPTO_SRC= ${SRCTOP}/crypto/openssl
|
|
|
|
CFLAGS+= -I${LCRYPTO_SRC}
|
|
CFLAGS+= -I${LCRYPTO_SRC}/include
|
|
CFLAGS+= -I${LCRYPTO_SRC}/providers/common/include
|
|
CFLAGS+= -I${LCRYPTO_SRC}/providers/implementations/include
|
|
|
|
# common
|
|
SRCS+= provider_err.c provider_ctx.c
|
|
SRCS+= provider_util.c
|
|
|
|
.PATH: ${LCRYPTO_SRC}/providers \
|
|
${LCRYPTO_SRC}/providers/common
|
|
|
|
WARNS?= 0
|