From fd25d60a123272e3ad4ea92b402d498dbee9198a Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Fri, 27 Jun 2025 11:56:20 -0600 Subject: Pass -Icrypto/aes to CPP flags --- crypto/CMakeLists.txt | 1 + crypto/Makefile.am | 1 + 2 files changed, 2 insertions(+) diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 277642f..7b788fc 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt @@ -741,6 +741,7 @@ add_library(crypto_obj OBJECT ${CRYPTO_SRC}) target_include_directories(crypto_obj PRIVATE . + aes asn1 bio bn diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 0e5a916..91da021 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am @@ -16,6 +16,7 @@ include $(top_srcdir)/Makefile.am.common AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL +AM_CPPFLAGS += -I$(top_srcdir)/crypto/aes AM_CPPFLAGS += -I$(top_srcdir)/crypto/asn1 AM_CPPFLAGS += -I$(top_srcdir)/crypto/bio AM_CPPFLAGS += -I$(top_srcdir)/crypto/bn -- cgit v1.2.3-55-g6feb