mirror of https://github.com/wolfSSL/wolfssl.git
Add config option
parent
e0e590f126
commit
7791b8ff4d
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:
|
||||||
|
|
Loading…
Reference in New Issue