diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-21 08:38:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-21 08:38:02 (GMT) |
commit | 1d41830b5d97905b3d6c209efc0914b7b1df384b (patch) | |
tree | f6f3c5907f28fd0a7120ae3bdbf10d50bb348c81 /win | |
parent | 7b50a2c52876bc227e8b7c1fc5309bd1037809e0 (diff) | |
parent | 0f2ef2980adfb8d573660fc6b5e5c832638b524b (diff) | |
download | tcl-1d41830b5d97905b3d6c209efc0914b7b1df384b.zip tcl-1d41830b5d97905b3d6c209efc0914b7b1df384b.tar.gz tcl-1d41830b5d97905b3d6c209efc0914b7b1df384b.tar.bz2 |
Fix [https://core.tcl-lang.org/tclconfig/info/14f0d2c9558caf67|14f0d2c9558caf67] (same mistake in Tcl as well)
Diffstat (limited to 'win')
-rwxr-xr-x | win/configure | 6 | ||||
-rw-r--r-- | win/configure.ac | 4 | ||||
-rw-r--r-- | win/tcl.m4 | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/win/configure b/win/configure index dac3cab..e1f2328 100755 --- a/win/configure +++ b/win/configure @@ -4462,7 +4462,7 @@ fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_enable_auto_image_base" >&5 printf "%s\n" "$ac_cv_enable_auto_image_base" >&6; } CFLAGS=$hold_cflags - if test "$ac_cv_enable_auto_image_base" == "yes" ; then + if test "$ac_cv_enable_auto_image_base" = "yes" ; then extra_ldflags="$extra_ldflags -Wl,--enable-auto-image-base" fi @@ -4987,7 +4987,7 @@ printf "%s\n" "#define MP_64BIT 1" >>confdefs.h if test "$do64bit" = "arm64" then : - if test "$GCC" == "yes" + if test "$GCC" = "yes" then : ZLIB_LIBS=\${ZLIB_DIR_NATIVE}/win64-arm/libz.dll.a @@ -5009,7 +5009,7 @@ fi else case e in #( e) - if test "$GCC" == "yes" + if test "$GCC" = "yes" then : ZLIB_LIBS=\${ZLIB_DIR_NATIVE}/win64/libz.dll.a diff --git a/win/configure.ac b/win/configure.ac index f0288c7..5cc52aa 100644 --- a/win/configure.ac +++ b/win/configure.ac @@ -144,7 +144,7 @@ AS_IF([test "$tcl_ok" = "yes"], [ AS_IF([test "$do64bit" != "no"], [ AC_DEFINE(MP_64BIT, 1, [Using libtommath.dll in 64-bit mode]) AS_IF([test "$do64bit" = "arm64"], [ - AS_IF([test "$GCC" == "yes"],[ + AS_IF([test "$GCC" = "yes"],[ AC_SUBST(ZLIB_LIBS,[\${ZLIB_DIR_NATIVE}/win64-arm/libz.dll.a]) AC_SUBST(TOMMATH_LIBS,[\${TOMMATH_DIR_NATIVE}/win64-arm/libtommath.dll.a]) zlib_lib_name=libz.dll.a @@ -154,7 +154,7 @@ AS_IF([test "$tcl_ok" = "yes"], [ AC_SUBST(TOMMATH_LIBS,[\${TOMMATH_DIR_NATIVE}/win64-arm/tommath.lib]) ]) ], [ - AS_IF([test "$GCC" == "yes"],[ + AS_IF([test "$GCC" = "yes"],[ AC_SUBST(ZLIB_LIBS,[\${ZLIB_DIR_NATIVE}/win64/libz.dll.a]) AC_SUBST(TOMMATH_LIBS,[\${TOMMATH_DIR_NATIVE}/win64/libtommath.dll.a]) zlib_lib_name=libz.dll.a @@ -644,7 +644,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ [ac_cv_enable_auto_image_base=no]) ) CFLAGS=$hold_cflags - if test "$ac_cv_enable_auto_image_base" == "yes" ; then + if test "$ac_cv_enable_auto_image_base" = "yes" ; then extra_ldflags="$extra_ldflags -Wl,--enable-auto-image-base" fi |