summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwin/configure6
-rw-r--r--win/configure.in4
-rw-r--r--win/tcl.m42
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
], [
diff --git a/win/tcl.m4 b/win/tcl.m4
index a8a96f5..6ddcbf6 100644
--- a/win/tcl.m4
+++ b/win/tcl.m4
@@ -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