mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +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
|
||||||
ENABLED_CERTS="no"
|
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
|
# Support for forcing 32-bit mode
|
||||||
# To force 32-bit instructions use:
|
# To force 32-bit instructions use:
|
||||||
|
Reference in New Issue
Block a user