Changeset 8f000b7 in mod_gnutls
- Timestamp:
- Jun 12, 2020, 5:14:00 PM (2 years ago)
- Branches:
- asyncio, master
- Children:
- 8d0efdc
- Parents:
- 2c94b65
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r2c94b65 r8f000b7 59 59 60 60 AC_ARG_ENABLE(srp, 61 AS_HELP_STRING([-- disable-srp],62 [ unconditionally disable the SRP functionality]),63 use_srp=$enableval, use_srp= yes)61 AS_HELP_STRING([--enable-srp], 62 [enable SRP functionality if supported by libgnutls]), 63 use_srp=$enableval, use_srp=no) 64 64 65 65 # check if the available GnuTLS library supports SRP 66 66 AC_SEARCH_LIBS([gnutls_srp_server_get_username], [gnutls], [], [use_srp="no"]) 67 67 68 AC_MSG_CHECKING([whether to enable SRP functionality]) 69 AC_MSG_RESULT($use_srp) 70 68 71 GNUTLS_FEAT_CFLAGS="" 69 if test "$use_srp" != "no"; then 72 AS_IF([test "${use_srp}" != "no"], [ 70 73 GNUTLS_FEAT_CFLAGS="-DENABLE_SRP=1" 71 fi 74 AC_MSG_WARN([You have enabled SRP support. This feature is deprecated and will be removed in a future release.]) 75 ]) 72 76 73 77 AC_ARG_ENABLE(strict, … … 80 84 STRICT_CFLAGS="-Wall -Werror -Wextra -Wno-error=deprecated-declarations" 81 85 fi 82 83 AC_MSG_CHECKING([whether to enable SRP functionality])84 AC_MSG_RESULT($use_srp)85 86 86 87 MOD_GNUTLS_DEBUG=0
Note: See TracChangeset
for help on using the changeset viewer.