-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'cd953cfa483801a6b71bdf920bb534fb297fdfac'
- Loading branch information
Showing
160 changed files
with
8,097 additions
and
3,839 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ dnl Process this file with autoconf to produce a configure script. | |
AC_PREREQ(2.64) | ||
|
||
dnl when updating version also update LT_REVISION in m4/hooks.m4 | ||
AC_INIT([GnuTLS], [3.8.4], [[email protected]]) | ||
AC_INIT([GnuTLS], [3.8.6], [[email protected]]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AC_CONFIG_MACRO_DIRS([m4 src/gl/m4 lib/unistring/m4]) | ||
AC_CANONICAL_HOST | ||
|
@@ -57,6 +57,8 @@ if test "$ac_cv_prog_cc_c99" = "no"; then | |
AC_MSG_WARN([[Compiler does not support C99. It may not be able to compile the project.]]) | ||
fi | ||
|
||
AM_CONDITIONAL(CROSS_COMPILING, test "$cross_compiling" = yes) | ||
|
||
AX_CODE_COVERAGE | ||
|
||
AM_MAINTAINER_MODE([enable]) | ||
|
@@ -269,8 +271,6 @@ AC_ARG_ENABLE(tls13-interop, | |
AS_HELP_STRING([--disable-tls13-interop], [disable TLS1.3 interoperability testing with openssl]), | ||
enable_tls13_interop=$enableval, enable_tls13_interop=yes) | ||
|
||
AM_CONDITIONAL(ENABLE_TLS13_INTEROP, test "$enable_tls13_interop" != "no") | ||
|
||
dnl Check for iovec type | ||
AC_CHECK_MEMBERS([struct iovec.iov_base], | ||
[ | ||
|
@@ -792,6 +792,19 @@ AC_CHECK_FUNCS(nettle_rsa_oaep_sha256_encrypt) | |
LIBS=$save_LIBS | ||
AM_CONDITIONAL([NEED_RSA_OAEP], [test "$ac_cv_func_nettle_rsa_oaep_sha256_encrypt" != yes]) | ||
|
||
# Check for specialized AES-CBC encryption | ||
save_LIBS=$LIBS | ||
LIBS="$LIBS $NETTLE_LIBS" | ||
AC_CHECK_FUNCS(nettle_cbc_aes128_encrypt) | ||
LIBS=$save_LIBS | ||
|
||
# Check for incremental SHAKE | ||
save_LIBS=$LIBS | ||
LIBS="$LIBS $NETTLE_LIBS" | ||
AC_CHECK_FUNCS(nettle_sha3_128_shake_output) | ||
LIBS=$save_LIBS | ||
AM_CONDITIONAL([NEED_SHAKE_OUTPUT], [test "$ac_cv_func_nettle_sha3_128_shake_output" != yes]) | ||
|
||
# Check sonames of the linked libraries needed for FIPS selftests. | ||
save_CFLAGS=$CFLAGS | ||
CFLAGS="$CFLAGS $GMP_CFLAGS" | ||
|
Submodule abi-dump
updated
from 3ffceb to dea49c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.