diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-07-30 23:31:02 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-07-30 23:31:02 +0200 |
commit | 01fa3466e15d70cbd1e4719843ae39eff07eb229 (patch) | |
tree | 77f02e07d1eda741cd593fe1af597769b8ef1eac /configure.ac | |
parent | 195971f7dac9820a8fdd68ec574d1a99d6f7343b (diff) |
fix FTBFS when compiling against exchange v0.13 API
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 25ddf142..f999a7ec 100644 --- a/configure.ac +++ b/configure.ac @@ -253,12 +253,12 @@ AS_CASE([$with_exchange], CPPFLAGS="-I$with_exchange/include $CPPFLAGS $POSTGRESQL_CPPFLAGS"]) AC_CHECK_HEADERS([taler/taler_util.h], - [AC_CHECK_LIB([talerutil], [TALER_payto_normalize], libtalerutil=1)]) + [AC_CHECK_LIB([talerutil], [TALER_kyc_measure_authorization_hash], libtalerutil=1)]) AM_CONDITIONAL(HAVE_TALERUTIL, test x$libtalerutil = x1) AS_IF([test $libtalerutil != 1], [AC_MSG_ERROR([[ *** -*** You need libtalerutil >= 0.9.4 to build this program. +*** You need libtalerutil >= 0.13.0 to build this program. *** This library is part of the GNU Taler exchange, available at *** https://taler.net *** ]])]) |