diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-01-06 11:02:12 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-01-06 11:02:12 (GMT) |
| commit | 4c14bc7964b4ea5ebf0a7b1ea3a09b447344430c (patch) | |
| tree | 5aa3a98c479553a81198d06e61f3e3b07616ec9d | |
| parent | 4bea35325500a43a8acb896e6b3607034b36a3a8 (diff) | |
| download | tcl-4c14bc7964b4ea5ebf0a7b1ea3a09b447344430c.zip tcl-4c14bc7964b4ea5ebf0a7b1ea3a09b447344430c.tar.gz tcl-4c14bc7964b4ea5ebf0a7b1ea3a09b447344430c.tar.bz2 | |
Fix typo: "==" -> "="
| -rwxr-xr-x | unix/configure | 2 | ||||
| -rw-r--r-- | unix/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure b/unix/configure index c6058fd..04f1dbc 100755 --- a/unix/configure +++ b/unix/configure @@ -4661,7 +4661,7 @@ if test "${with_system_libtommath+set}" = set; then : withval=$with_system_libtommath; libtommath_ok=${withval} fi -if test x"${libtommath_ok}" == x -o x"${libtommath_ok}" != xno; then +if test x"${libtommath_ok}" = x -o x"${libtommath_ok}" != xno; then ac_fn_c_check_header_mongrel "$LINENO" "tommath.h" "ac_cv_header_tommath_h" "$ac_includes_default" if test "x$ac_cv_header_tommath_h" = xyes; then : diff --git a/unix/configure.ac b/unix/configure.ac index a5cb12b..f0ba688 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -175,7 +175,7 @@ AC_ARG_WITH(system-libtommath, AC_HELP_STRING([--with-system-libtommath], [use external libtommath (default: true if available, false otherwise)]), libtommath_ok=${withval}) -if test x"${libtommath_ok}" == x -o x"${libtommath_ok}" != xno; then +if test x"${libtommath_ok}" = x -o x"${libtommath_ok}" != xno; then AC_CHECK_HEADER([tommath.h],[ AC_CHECK_TYPE([mp_int],[],[libtommath_ok=no],[#include <tommath.h>])],[ libtommath_ok=no]) |
