gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 01/151: configure: avoid unportable `==' test(1) operator


From: gnunet
Subject: [gnurl] 01/151: configure: avoid unportable `==' test(1) operator
Date: Fri, 20 Dec 2019 14:25:10 +0100

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

ng0 pushed a commit to branch master
in repository gnurl.

commit bc1cd39a1d7fdd505dcfe6a4582e85631417d126
Author: Leonardo Taccari <address@hidden>
AuthorDate: Wed Nov 6 23:53:44 2019 +0100

    configure: avoid unportable `==' test(1) operator
    
    Closes https://github.com/curl/curl/pull/4567
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index cb8f4943e..2139f55a8 100755
--- a/configure.ac
+++ b/configure.ac
@@ -4449,7 +4449,7 @@ if test "x$want_esni" != "xno"; then
 
   dnl OpenSSL with a chosen ESNI function should be enough
   dnl so more exhaustive checking seems unnecessary for now
-  if test "x$OPENSSL_ENABLED" == "x1"; then
+  if test "x$OPENSSL_ENABLED" = "x1"; then
     AC_CHECK_FUNCS(SSL_get_esni_status,
       ESNI_SUPPORT="ESNI support available (OpenSSL with SSL_get_esni_status)"
       ESNI_ENABLED=1)
@@ -4458,7 +4458,7 @@ if test "x$want_esni" != "xno"; then
   fi
 
   dnl now deal with whatever we found
-  if test "x$ESNI_ENABLED" == "x1"; then
+  if test "x$ESNI_ENABLED" = "x1"; then
     AC_DEFINE(USE_ESNI, 1, [if ESNI support is available])
     AC_MSG_RESULT($ESNI_SUPPORT)
     experimental="$experimental ESNI"

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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