Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10111,10 +10111,7 @@ fi

if test "x$ENABLED_SYS_CA_CERTS" = "xyes"
then
if test "x$ENABLED_FILESYSTEM" = "xno"
then
ENABLED_SYS_CA_CERTS="no"
elif test "x$ENABLED_CERTS" = "xno"
if test "x$ENABLED_CERTS" = "xno"
Copy link
Contributor

@redbaron redbaron Dec 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does it it need a similar change in the CMake?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes I agree. @kareem-wolfssl will you review ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, see #9583

then
ENABLED_SYS_CA_CERTS="no"
fi
Expand Down Expand Up @@ -10146,6 +10143,16 @@ then
AC_MSG_ERROR([Unable to find Apple Security.framework headers])
])
;;
mingw*)
;;
*)
# Only disable on no filesystem non Mac/Windows, as Mac and Windows
# depend on APIs which don't need filesystem support enabled in wolfSSL.
if test "x$ENABLED_FILESYSTEM" = "xno"
then
ENABLED_SYS_CA_CERTS="no"
fi
;;
esac
fi

Expand Down
Loading