Make our configure.ac script use the portable = comparison

Back in 0.4.5.1-alpha we added an `==` comparison, which isn't
portable.

Fixes bug #40298; bugfix on 0.4.5.1-alpha.
This commit is contained in:
Nick Mathewson 2021-02-17 12:36:23 -05:00
parent 336c45f1a5
commit aebd0a4080
2 changed files with 4 additions and 1 deletions

3
changes/bug40298 Normal file
View File

@ -0,0 +1,3 @@
o Minor bugfixes (portability):
- Fix a non-portable usage of "==" with "test" in the configure script.
Fixes bug 40298; bugfix on 0.4.5.1-alpha.

View File

@ -1144,7 +1144,7 @@ AC_RUN_IFELSE([AC_LANG_SOURCE([AC_LANG_PROGRAM([[
]])])], [openssl_ver_mismatch=no], [
# This is a kludge to figure out whether compilation failed, or whether
# running the program failed.
if test "$ac_retval" == "1"; then
if test "$ac_retval" = "1"; then
openssl_ver_mismatch=inconclusive
else
openssl_ver_mismatch=yes