diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-09-30 11:11:33 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-09-30 11:11:33 (GMT) |
commit | 01a7a2c41528a019358226ef516af5469438fad2 (patch) | |
tree | e28b76092a6d2660ef324d8acb725d2b71b5a253 | |
parent | f7aa4f989380e9cbbd9515737ae3b6b1cebf5af5 (diff) | |
download | tcl-01a7a2c41528a019358226ef516af5469438fad2.zip tcl-01a7a2c41528a019358226ef516af5469438fad2.tar.gz tcl-01a7a2c41528a019358226ef516af5469438fad2.tar.bz2 |
Don't limit Universal runtime support VisualStudio version 14 only, future versions will probably have it as well.
-rwxr-xr-x | win/configure | 4 | ||||
-rw-r--r-- | win/tcl.m4 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/win/configure b/win/configure index f417981..1dcc9d2 100755 --- a/win/configure +++ b/win/configure @@ -3691,7 +3691,7 @@ echo "${ECHO_T}using shared flags" >&6 LIBRARIES="\${SHARED_LIBRARIES}" SHLIB_LD_LIBS='${LIBS}' case "x`echo \${VisualStudioVersion}`" in - x14*) + x1[4-9]*) lflags="${lflags} -nodefaultlib:libucrt.lib" ;; *) @@ -3736,7 +3736,7 @@ echo "${ECHO_T} Using 64-bit $MACHINE mode" >&6 LIBS="user32.lib advapi32.lib ws2_32.lib" case "x`echo \${VisualStudioVersion}`" in - x14*) + x1[4-9]*) LIBS="$LIBS ucrt.lib" ;; *) @@ -784,7 +784,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ LIBRARIES="\${SHARED_LIBRARIES}" SHLIB_LD_LIBS='${LIBS}' case "x`echo \${VisualStudioVersion}`" in - x14*) + 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 - x14*) + x1[4-9]*) LIBS="$LIBS ucrt.lib" ;; *) |