This is an automated email from the ASF dual-hosted git repository.
dmeden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new bf86aa83ad Build tools. Fix missing include. We found out that on
Fedora40 the build script was failing building one of the tools because of a
missing include. This adds the missing include line. (#11306)
bf86aa83ad is described below
commit bf86aa83ad138d47b902cd5e263434539eb4624e
Author: Damian Meden <[email protected]>
AuthorDate: Wed May 1 17:29:55 2024 +0200
Build tools. Fix missing include. We found out that on Fedora40 the build
script was failing building one of the tools because of a missing include. This
adds the missing include line. (#11306)
---
tools/build_boringssl_h3_tools.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/build_boringssl_h3_tools.sh
b/tools/build_boringssl_h3_tools.sh
index 78b03b5b8e..b4dced9657 100755
--- a/tools/build_boringssl_h3_tools.sh
+++ b/tools/build_boringssl_h3_tools.sh
@@ -237,7 +237,7 @@ fi
./configure \
--prefix=${BASE} \
PKG_CONFIG_PATH=${BASE}/lib/pkgconfig \
- CFLAGS="${CFLAGS}" \
+ CFLAGS="${CFLAGS} -I${BORINGSSL_PATH}/include" \
CXXFLAGS="${CXXFLAGS} -I${BORINGSSL_PATH}/include" \
LDFLAGS="${LDFLAGS}" \
OPENSSL_LIBS="-lcrypto -lssl -L${BORINGSSL_LIB_PATH}" \