summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@gnu.org>2021-05-27 09:34:50 +0200
committerDaiki Ueno <ueno@gnu.org>2021-05-28 18:32:10 +0200
commit58dcc6ce49aed6c41601c6df14d544b189c42f43 (patch)
treebb987d11a6353a9c1cf54d9c3c04a92b12e04e77
parentd2c249054f9abc17352c7a8807de2d7ed847c212 (diff)
downloadgnutls-58dcc6ce49aed6c41601c6df14d544b189c42f43.tar.gz
build: require libkcapi 1.3.0 or later if --enable-afalg
The libkcapi 1.3.0 brings a couple of changes needed for GnuTLS: * fix: remove prctl PR_SET_DUMPABLE to allow library to be debugged * fix: ensure that sendmsg is always used as fallback when vmsplice cannot be used Signed-off-by: Daiki Ueno <ueno@gnu.org>
-rw-r--r--m4/hooks.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/hooks.m4 b/m4/hooks.m4
index 5377a9d33b..f0de73d8e4 100644
--- a/m4/hooks.m4
+++ b/m4/hooks.m4
@@ -352,7 +352,7 @@ LIBTASN1_MINIMUM=4.9
AC_MSG_RESULT($enable_afalg)
if test "$enable_afalg" = "yes"; then
- PKG_CHECK_MODULES(LIBKCAPI, [libkcapi >= 1.2.1], [], [enable_afalg=no])
+ PKG_CHECK_MODULES(LIBKCAPI, [libkcapi >= 1.3.0], [], [enable_afalg=no])
fi
if test "$enable_afalg" = "yes"; then
AC_DEFINE([ENABLE_AFALG], 1, [Enable AF_ALG support])