[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: added test for jq to configure.a
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: added test for jq to configure.ac |
Date: |
Tue, 05 Sep 2023 08:18:08 +0200 |
This is an automated email from the git hooks/post-receive script.
oec pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 55859eec added test for jq to configure.ac
55859eec is described below
commit 55859eec403f7921419bb870cfe004b83ae376ee
Author: Özgür Kesim <oec-taler@kesim.org>
AuthorDate: Tue Sep 5 08:18:03 2023 +0200
added test for jq to configure.ac
---
configure.ac | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/configure.ac b/configure.ac
index 793e31be..e9a9cf8e 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:
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: added test for jq to configure.ac,
gnunet <=