commit a2bb90bcfbe48f46d8f3f14317f5dbfa2173c546
parent 6fe2ed3975c26fa7ebacbe2d185b3e9aa135fd49
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Tue, 5 Sep 2023 15:46:18 +0200
Merge branch 'master' of git+ssh://git.taler.net/exchange
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -397,6 +397,11 @@ AS_IF([test "x$enableval" = "xno"], [enable_dev=0])
AC_CHECK_DECL([MHD_OPTION_NOTIFY_CONNECTION],,[enable_dev=0],[[#include <microhttpd.h>]])
AC_DEFINE_UNQUOTED([HAVE_DEVELOPER],[$enable_dev],[1 if developer logic is enabled, 0 otherwise])
+AC_PATH_PROG([JQ], [jq], [no])
+if test "$JQ" = "no"; then
+ AC_MSG_ERROR([jq is required but not found. Please install jq.])
+fi
+
# Adam shostack suggests the following for Windows: