summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-09-05 15:46:18 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-09-05 15:46:18 +0200
commita2bb90bcfbe48f46d8f3f14317f5dbfa2173c546 (patch)
tree6b23fa401590e635ff5d4749fa0ed098e842ede7
parent6fe2ed3975c26fa7ebacbe2d185b3e9aa135fd49 (diff)
parent55859eec403f7921419bb870cfe004b83ae376ee (diff)
downloadexchange-a2bb90bcfbe48f46d8f3f14317f5dbfa2173c546.tar.gz
exchange-a2bb90bcfbe48f46d8f3f14317f5dbfa2173c546.tar.bz2
exchange-a2bb90bcfbe48f46d8f3f14317f5dbfa2173c546.zip
Merge branch 'master' of git+ssh://git.taler.net/exchange
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 793e31bed..e9a9cf8e3 100644
--- 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: