diff options
author | naota <naota@elisp.net> | 2014-02-23 22:32:51 +0900 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-02-25 23:29:13 +0100 |
commit | 4548e0fe710305535e618e06a5dcf11825cdfced (patch) | |
tree | 94fefbfb69ee82651d6aabcf3b85326a6cc0c385 /configure.ac | |
parent | 70052836d14a3662a528b20ac7c85233ef4a31b5 (diff) | |
download | curl-4548e0fe710305535e618e06a5dcf11825cdfced.tar.gz |
configure: Tiny fix to honor POSIX
Change "==" to "=" to honor POSIX test construction.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 9dc68664f..ee207f974 100644 --- a/configure.ac +++ b/configure.ac @@ -2469,19 +2469,19 @@ AC_HELP_STRING([--disable-versioned-symbols], [Disable versioned symbols in shar AC_MSG_RESULT(yes) if test "x$OPENSSL_ENABLED" = "x1"; then versioned_symbols_flavour="OPENSSL_" - elif test "x$GNUTLS_ENABLED" == "x1"; then + elif test "x$GNUTLS_ENABLED" = "x1"; then versioned_symbols_flavour="GNUTLS_" - elif test "x$NSS_ENABLED" == "x1"; then + elif test "x$NSS_ENABLED" = "x1"; then versioned_symbols_flavour="NSS_" - elif test "x$POLARSSL_ENABLED" == "x1"; then + elif test "x$POLARSSL_ENABLED" = "x1"; then versioned_symbols_flavour="POLARSSL_" - elif test "x$CYASSL_ENABLED" == "x1"; then + elif test "x$CYASSL_ENABLED" = "x1"; then versioned_symbols_flavour="CYASSL_" - elif test "x$AXTLS_ENABLED" == "x1"; then + elif test "x$AXTLS_ENABLED" = "x1"; then versioned_symbols_flavour="AXTLS_" - elif test "x$WINSSL_ENABLED" == "x1"; then + elif test "x$WINSSL_ENABLED" = "x1"; then versioned_symbols_flavour="WINSSL_" - elif test "x$DARWINSSL_ENABLED" == "x1"; then + elif test "x$DARWINSSL_ENABLED" = "x1"; then versioned_symbols_flavour="DARWINSSL_" else versioned_symbols_flavour="" |