1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-10 21:48:10 -05:00

configure: avoid unportable `==' test(1) operator

Closes #3709
This commit is contained in:
Leonardo Taccari 2019-03-27 13:56:59 +01:00 committed by Daniel Stenberg
parent 521bbbe299
commit 8759e335ab
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -1569,7 +1569,7 @@ AC_HELP_STRING([--without-amissl], [disable Amiga native SSL/TLS (AmiSSL)]),
OPT_AMISSL=$withval) OPT_AMISSL=$withval)
AC_MSG_CHECKING([whether to enable Amiga native SSL/TLS (AmiSSL)]) AC_MSG_CHECKING([whether to enable Amiga native SSL/TLS (AmiSSL)])
if test "$HAVE_PROTO_BSDSOCKET_H" == "1"; then if test "$HAVE_PROTO_BSDSOCKET_H" = "1"; then
if test -z "$ssl_backends" -o "x$OPT_AMISSL" != xno; then if test -z "$ssl_backends" -o "x$OPT_AMISSL" != xno; then
ssl_msg= ssl_msg=
if test "x$OPT_AMISSL" != "xno"; then if test "x$OPT_AMISSL" != "xno"; then