gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet] branch master updated: - fix experimental flag


From: gnunet
Subject: [gnunet] branch master updated: - fix experimental flag
Date: Mon, 13 Dec 2021 17:37:24 +0100

This is an automated email from the git hooks/post-receive script.

martin-schanzenbach pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 7a6ee6fc7 - fix experimental flag
7a6ee6fc7 is described below

commit 7a6ee6fc7c7f7e77f6b9b2612cb96c0ccea0da03
Author: Martin Schanzenbach <schanzen@gnunet.org>
AuthorDate: Mon Dec 13 17:37:16 2021 +0100

    - fix experimental flag
---
 configure.ac   | 12 +++++++-----
 po/POTFILES.in |  1 +
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/configure.ac b/configure.ac
index 1e5ba403f..870518862 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1232,9 +1232,11 @@ AC_SUBST([JAVAPORT])
 AC_ARG_ENABLE([experimental],
   [AS_HELP_STRING([--enable-experimental],
                   [enable experimental code paths (default is no)])],
-  [enable_experimental="${enableval}"]
-  [enable_experimental="no"])
-AM_CONDITIONAL([HAVE_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"])
+  [AS_IF([test "x$enableval" = "xno"],
+         [enable_experimental=0],
+         [enable_experimental=1])],
+  [enable_experimental=0])
+AM_CONDITIONAL([HAVE_EXPERIMENTAL], [test "x$enable_experimental" = "x1"])
 
 # check if malicious code should be compiled (for testing)
 AC_ARG_ENABLE([malicious],
@@ -1489,13 +1491,13 @@ AS_IF([test "x$enable_java_ports" = "xyes"],
   [java_msg="no"])
 
 # experimental code is enabled
-AS_IF([test "x$enable_experimental" = "xyes"],
+AS_IF([test "x$enable_experimental" = "x1"],
   [experimental_msg="yes"],
   [experimental_msg="no"])
 
 # experimental code for transport is enabled
 transport_msg="tcp udp unix http"
-AS_IF([test "x$build_target" = "xlinux" && test "x$enable_experimental" = 
"xyes"],
+AS_IF([test "x$build_target" = "xlinux" && test "x$enable_experimental" = 
"x1"],
   [transport_msg="tcp udp unix http wlan"])
 
 # libidn version
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 60f758590..b456f2ad3 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -523,6 +523,7 @@ src/util/container_multishortmap.c
 src/util/container_multiuuidmap.c
 src/util/crypto_abe.c
 src/util/crypto_crc.c
+src/util/crypto_cs.c
 src/util/crypto_ecc.c
 src/util/crypto_ecc_dlog.c
 src/util/crypto_ecc_gnsrecord.c

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]