mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-30 18:57:27 +02:00
Add option to enable DPP support in wpa_supplicant (note DPP not yet supported as of this commit)
This commit is contained in:
14
configure.ac
14
configure.ac
@ -491,6 +491,18 @@ AC_ARG_ENABLE([wpas],
|
|||||||
[ ENABLED_WPAS=no ]
|
[ ENABLED_WPAS=no ]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# wpa_supplicant support
|
||||||
|
AC_ARG_ENABLE([wpas-dpp],
|
||||||
|
[AS_HELP_STRING([--enable-wpas-dpp],[Enable wpa_supplicant support with dpp (default: disabled)])],
|
||||||
|
[ ENABLED_WPAS_DPP=$enableval ],
|
||||||
|
[ ENABLED_WPAS_DPP=no ]
|
||||||
|
)
|
||||||
|
|
||||||
|
if test "$ENABLED_WPAS_DPP" = "yes"
|
||||||
|
then
|
||||||
|
ENABLED_WPAS="yes"
|
||||||
|
fi
|
||||||
|
|
||||||
# Fortress build
|
# Fortress build
|
||||||
AC_ARG_ENABLE([fortress],
|
AC_ARG_ENABLE([fortress],
|
||||||
[AS_HELP_STRING([--enable-fortress],[Enable SSL fortress build (default: disabled)])],
|
[AS_HELP_STRING([--enable-fortress],[Enable SSL fortress build (default: disabled)])],
|
||||||
@ -565,7 +577,7 @@ AC_ARG_ENABLE([opensslall],
|
|||||||
[ ENABLED_OPENSSLALL=$enableval ],
|
[ ENABLED_OPENSSLALL=$enableval ],
|
||||||
[ ENABLED_OPENSSLALL=no ]
|
[ ENABLED_OPENSSLALL=no ]
|
||||||
)
|
)
|
||||||
if test "$ENABLED_LIBWEBSOCKETS" = "yes" || test "$ENABLED_OPENVPN" = "yes"
|
if test "$ENABLED_LIBWEBSOCKETS" = "yes" || test "$ENABLED_OPENVPN" = "yes" || test "$ENABLED_WPAS_DPP" = "yes"
|
||||||
then
|
then
|
||||||
ENABLED_OPENSSLALL="yes"
|
ENABLED_OPENSSLALL="yes"
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user