diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-03-18 23:09:15 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-03-18 23:09:15 +0100 |
commit | 42490d300851bf16e94d9ba19ed230fc41867e38 (patch) | |
tree | 7e2a3ad19af7c13e49408554447d43942f0cfafb /configure.ac | |
parent | 63c171f49aa4b3d6d412bf50d07a0fae4beab211 (diff) |
implement protocol v12, fixes #7948
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 659d7349..8fd422fc 100644 --- a/configure.ac +++ b/configure.ac @@ -268,12 +268,12 @@ AS_CASE([$with_exchange], CPPFLAGS="-I$with_exchange/include $CPPFLAGS $POSTGRESQL_CPPFLAGS"]) AC_CHECK_HEADERS([taler/taler_mhd_lib.h], - [AC_CHECK_LIB([talermhd], [TALER_MHD_parse_request_arg_amount], libtalermhd=1)]) + [AC_CHECK_LIB([talermhd], [TALER_MHD_parse_request_arg_snumber], libtalermhd=1)]) AM_CONDITIONAL(HAVE_TALERMHD, test x$libtalermhd = x1) AS_IF([test $libtalermhd != 1], [AC_MSG_ERROR([[ *** -*** You need libtalermhd >= 0.9.4a to build this program. +*** You need libtalermhd >= 0.10.1 (API v2) to build this program. *** This library is part of the GNU Taler exchange, available at *** https://taler.net *** ]])]) |