From eb399fb438a57901f8523dd0415c7dfcffd944b1 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Fri, 29 Jan 2021 16:45:02 +0100 Subject: [PATCH] botan: Look for Botan 3 in configure script --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ea7fd00b9..520775c1c 100644 --- a/configure.ac +++ b/configure.ac @@ -1173,7 +1173,8 @@ if test x$gcrypt = xtrue; then fi if test x$botan = xtrue; then - PKG_CHECK_MODULES(botan, [botan-2]) + PKG_CHECK_MODULES(botan, [botan-3], [], + [PKG_CHECK_MODULES(botan, [botan-2])]) AC_SUBST(botan_CFLAGS) AC_SUBST(botan_LIBS) fi