diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-10-06 08:18:46 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-10-06 08:18:46 (GMT) |
commit | 92b539825b3e9386bc9185ee75809ff049d14ed4 (patch) | |
tree | 9985473e7455ea9e95776d00adcc2e29c94bdd16 | |
parent | d700472a92b5263af967ab49a71f667bac2974b2 (diff) | |
download | tcl-92b539825b3e9386bc9185ee75809ff049d14ed4.zip tcl-92b539825b3e9386bc9185ee75809ff049d14ed4.tar.gz tcl-92b539825b3e9386bc9185ee75809ff049d14ed4.tar.bz2 |
Double '[' and ']', otherwise re-generating "configure" doesn't give the expected result.
-rw-r--r-- | win/tcl.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -784,7 +784,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ LIBRARIES="\${SHARED_LIBRARIES}" SHLIB_LD_LIBS='${LIBS}' case "x`echo \${VisualStudioVersion}`" in - x1[4-9]*) + x1[[4-9]]*) lflags="${lflags} -nodefaultlib:libucrt.lib" ;; *) @@ -826,7 +826,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ LIBS="user32.lib advapi32.lib ws2_32.lib" case "x`echo \${VisualStudioVersion}`" in - x1[4-9]*) + x1[[4-9]]*) LIBS="$LIBS ucrt.lib" ;; *) |