From: Tobias Brunner Date: Fri, 29 Jan 2021 15:45:02 +0000 (+0100) Subject: botan: Look for Botan 3 in configure script X-Git-Tag: 5.9.2rc1~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb399fb438a57901f8523dd0415c7dfcffd944b1;p=thirdparty%2Fstrongswan.git botan: Look for Botan 3 in configure script --- diff --git a/configure.ac b/configure.ac index ea7fd00b96..520775c1c4 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