diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-21 08:34:37 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-08-21 08:34:37 (GMT) |
| commit | 573804875c740f0d96efbaf97dbcbe606d8139fb (patch) | |
| tree | 92c7cdc0183222364d484be61a8544912052d839 | |
| parent | 0009e78e1575784f367ef17fc6f4558832b855c9 (diff) | |
| download | tcl-573804875c740f0d96efbaf97dbcbe606d8139fb.zip tcl-573804875c740f0d96efbaf97dbcbe606d8139fb.tar.gz tcl-573804875c740f0d96efbaf97dbcbe606d8139fb.tar.bz2 | |
Fix [https://core.tcl-lang.org/tclconfig/info/14f0d2c9558caf67|14f0d2c9558caf67] (same mistake in Tcl as well)
| -rwxr-xr-x | win/configure | 6 | ||||
| -rw-r--r-- | win/configure.in | 4 | ||||
| -rw-r--r-- | win/tcl.m4 | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/win/configure b/win/configure index 1634b3a..4e2469c 100755 --- a/win/configure +++ b/win/configure @@ -3665,7 +3665,7 @@ fi echo "$as_me:$LINENO: result: $ac_cv_enable_auto_image_base" >&5 echo "${ECHO_T}$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 @@ -4398,7 +4398,7 @@ if test "$tcl_ok" = "yes"; then if test "$do64bit" = "arm64"; then - if test "$GCC" == "yes"; then + if test "$GCC" = "yes"; then ZLIB_LIBS=\${ZLIB_DIR_NATIVE}/win64-arm/libz.dll.a @@ -4414,7 +4414,7 @@ fi else - if test "$GCC" == "yes"; then + if test "$GCC" = "yes"; then ZLIB_LIBS=\${ZLIB_DIR_NATIVE}/win64/libz.dll.a diff --git a/win/configure.in b/win/configure.in index ea52025..b2d676f 100644 --- a/win/configure.in +++ b/win/configure.in @@ -146,14 +146,14 @@ AS_IF([test "$tcl_ok" = "yes"], [ AC_SUBST(ZLIB_DLL_FILE,[\${ZLIB_DLL_FILE}]) AS_IF([test "$do64bit" != "no"], [ 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]) zlib_lib_name=libz.dll.a ], [ AC_SUBST(ZLIB_LIBS,[\${ZLIB_DIR_NATIVE}/win64-arm/zdll.lib]) ]) ], [ - AS_IF([test "$GCC" == "yes"],[ + AS_IF([test "$GCC" = "yes"],[ AC_SUBST(ZLIB_LIBS,[\${ZLIB_DIR_NATIVE}/win64/libz.dll.a]) zlib_lib_name=libz.dll.a ], [ @@ -692,7 +692,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 |
