mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
Reported by: "Herbert J. Skuhra" <herbert@gojira.at> Fixes: 9eb4e0b42d7c (cherry picked from commit 74fe298c8299fdb8c8f761728ddd245b0c3fe04a)
22 lines
540 B
Makefile
22 lines
540 B
Makefile
|
|
.include <bsd.own.mk>
|
|
|
|
# OpenSSL version used for manual page generation
|
|
OPENSSL_VER= 3.0.13
|
|
OPENSSL_DATE= 2024-02-02
|
|
|
|
LCRYPTO_SRC= ${SRCTOP}/crypto/openssl
|
|
LCRYPTO_DOC= ${LCRYPTO_SRC}/doc
|
|
|
|
CFLAGS+= -I${LCRYPTO_SRC}
|
|
CFLAGS+= -I${LCRYPTO_SRC}/include
|
|
CFLAGS+= -I${LCRYPTO_SRC}/providers/common/include
|
|
CFLAGS+= -I${LCRYPTO_SRC}/providers/implementations/include
|
|
|
|
.include "Makefile.common"
|
|
|
|
.for pcfile in ${PCFILES}
|
|
${pcfile}: ${pcfile}.in
|
|
sed -e 's,@openssl_ver@,${OPENSSL_VER},g' ${.ALLSRC} > ${.TARGET}
|
|
.endfor
|
|
CLEANFILES+= ${PCFILES}
|