mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 10:47:28 +02:00
Add config option
This commit is contained in:
11
configure.ac
11
configure.ac
@ -177,6 +177,17 @@ AS_IF([test "$ax_enable_debug" = "yes"],
|
||||
# enabled
|
||||
ENABLED_CERTS="no"
|
||||
|
||||
# Implements requirements from RFC9325
|
||||
AC_ARG_ENABLE([harden-tls],
|
||||
[AS_HELP_STRING([--enable-harden-tls],[Enable requirements from RFC9325 (default: disabled)])],
|
||||
[ ENABLED_HARDEN_TLS=$enableval ],
|
||||
[ ENABLED_HARDEN_TLS=no ]
|
||||
)
|
||||
|
||||
if test "x$ENABLED_HARDEN_TLS" != "xno"
|
||||
then
|
||||
AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_HARDEN_TLS"
|
||||
fi
|
||||
|
||||
# Support for forcing 32-bit mode
|
||||
# To force 32-bit instructions use:
|
||||
|
Reference in New Issue
Block a user